From af3c677f06687e5ad1e33eb24f984c7ac5ff2a33 Mon Sep 17 00:00:00 2001 From: jbj Date: Wed, 3 Jul 2002 14:01:49 +0000 Subject: [PATCH] - use rpmfi in showQueryPackage(), eliminating headerGetEntry(). CVS patchset: 5538 CVS date: 2002/07/03 14:01:49 --- CHANGES | 1 + lib/cpio.c | 7 +- lib/fsm.c | 4 + lib/psm.c | 24 +- lib/query.c | 304 ++++++-------- lib/rpmcli.h | 15 +- lib/rpmfi.c | 44 +- lib/rpmfi.h | 18 + lib/rpmlead.c | 2 + lib/rpmlib.h | 1 + lib/signature.c | 2 + lib/verify.c | 42 +- po/cs.po | 1031 +++++++++++++++++++++++----------------------- po/da.po | 1031 +++++++++++++++++++++++----------------------- po/de.po | 1031 +++++++++++++++++++++++----------------------- po/en_RN.po | 1028 +++++++++++++++++++++++----------------------- po/es.po | 1028 +++++++++++++++++++++++----------------------- po/eu_ES.po | 1028 +++++++++++++++++++++++----------------------- po/fi.po | 1031 +++++++++++++++++++++++----------------------- po/fr.po | 1031 +++++++++++++++++++++++----------------------- po/gl.po | 1028 +++++++++++++++++++++++----------------------- po/hu.po | 1028 +++++++++++++++++++++++----------------------- po/id.po | 1028 +++++++++++++++++++++++----------------------- po/is.po | 1028 +++++++++++++++++++++++----------------------- po/it.po | 1028 +++++++++++++++++++++++----------------------- po/ja.po | 1031 +++++++++++++++++++++++----------------------- po/ko.po | 1031 +++++++++++++++++++++++----------------------- po/no.po | 1031 +++++++++++++++++++++++----------------------- po/pl.po | 1031 +++++++++++++++++++++++----------------------- po/pt.po | 1031 +++++++++++++++++++++++----------------------- po/pt_BR.po | 1031 +++++++++++++++++++++++----------------------- po/ro.po | 1028 +++++++++++++++++++++++----------------------- po/rpm.pot | 1028 +++++++++++++++++++++++----------------------- po/ru.po | 1031 +++++++++++++++++++++++----------------------- po/sk.po | 1031 +++++++++++++++++++++++----------------------- po/sl.po | 1033 ++++++++++++++++++++++++----------------------- po/sr.po | 1031 +++++++++++++++++++++++----------------------- po/sv.po | 1031 +++++++++++++++++++++++----------------------- po/tr.po | 1031 +++++++++++++++++++++++----------------------- po/uk.po | 1028 +++++++++++++++++++++++----------------------- po/wa.po | 1028 +++++++++++++++++++++++----------------------- po/zh.po | 1028 +++++++++++++++++++++++----------------------- po/zh_CN.GB2312.po | 1028 +++++++++++++++++++++++----------------------- popt/po/cs.po | 2 +- popt/po/da.po | 2 +- popt/po/de.po | 2 +- popt/po/es.po | 2 +- popt/po/eu_ES.po | 2 +- popt/po/fi.po | 2 +- popt/po/fr.po | 2 +- popt/po/gl.po | 2 +- popt/po/hu.po | 2 +- popt/po/id.po | 2 +- popt/po/is.po | 2 +- popt/po/it.po | 2 +- popt/po/ja.po | 2 +- popt/po/ko.po | 2 +- popt/po/no.po | 2 +- popt/po/pl.po | 2 +- popt/po/popt.pot | 2 +- popt/po/pt.po | 2 +- popt/po/pt_BR.po | 2 +- popt/po/ro.po | 2 +- popt/po/ru.po | 2 +- popt/po/sk.po | 2 +- popt/po/sl.po | 2 +- popt/po/sr.po | 2 +- popt/po/sv.po | 2 +- popt/po/tr.po | 2 +- popt/po/uk.po | 2 +- popt/po/wa.po | 2 +- popt/po/zh.po | 2 +- popt/po/zh_CN.GB2312.po | 2 +- rpm.spec.in | 5 +- rpmdb/header.c | 3 + rpmio/rpmio.h | 17 +- 76 files changed, 16366 insertions(+), 16104 deletions(-) diff --git a/CHANGES b/CHANGES index 16c911c..60c737b 100644 --- a/CHANGES +++ b/CHANGES @@ -155,6 +155,7 @@ - warn only once for each NOKEY/UNTRUSTED key id. - factor common options into table, add rpmcliInit() and rpmcliFini(). - add preliminary rpmgraph(8) and rpmcache(8) executables to rpm-devel. + - use rpmfi in showQueryPackage(), eliminating headerGetEntry(). 4.0.3 -> 4.0.4: - solaris: translate i86pc to i386 (#57182). diff --git a/lib/cpio.c b/lib/cpio.c index 8585b94..13b34b2 100644 --- a/lib/cpio.c +++ b/lib/cpio.c @@ -30,6 +30,7 @@ */ static int strntoul(const char *str, /*@out@*/char **endptr, int base, int num) /*@modifies *endptr @*/ + /*@requires maxSet(endptr) >= 0 @*/ { char * buf, * end; unsigned long ret; @@ -39,18 +40,20 @@ static int strntoul(const char *str, /*@out@*/char **endptr, int base, int num) buf[num] = '\0'; ret = strtoul(buf, &end, base); -/*@-boundswrite@*/ +/*@-boundsread@*/ /* LCL: strtoul annotations */ if (*end != '\0') *endptr = ((char *)str) + (end - buf); /* XXX discards const */ else *endptr = ((char *)str) + strlen(buf); -/*@=boundswrite@*/ +/*@=boundsread@*/ return ret; } #define GET_NUM_FIELD(phys, log) \ + /*@-boundswrite@*/ \ log = strntoul(phys, &end, 16, sizeof(phys)); \ + /*@=boundswrite@*/ \ if ( (end - phys) != sizeof(phys) ) return CPIOERR_BAD_HEADER; #define SET_NUM_FIELD(phys, val, space) \ sprintf(space, "%8.8lx", (unsigned long) (val)); \ diff --git a/lib/fsm.c b/lib/fsm.c index f4fe24b..db694da 100644 --- a/lib/fsm.c +++ b/lib/fsm.c @@ -2172,7 +2172,9 @@ if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break; rc = cpioHeaderWrite(fsm, st); /* Write next payload header. */ break; case FSM_DREAD: +/*@-boundswrite@*/ fsm->rdnb = Fread(fsm->wrbuf, sizeof(*fsm->wrbuf), fsm->wrlen, fsm->cfd); +/*@=boundswrite@*/ if (_fsm_debug && (stage & FSM_SYSCALL)) rpmMessage(RPMMESS_DEBUG, " %8s (%s, %d, cfd)\trdnb %d\n", cur, (fsm->wrbuf == fsm->wrb ? "wrbuf" : "mmap"), @@ -2207,7 +2209,9 @@ if (!(fsm->mapFlags & CPIO_ALL_HARDLINKS)) break; fsm->path, fsm->rfd, fsm->rdbuf); break; case FSM_READ: +/*@-boundswrite@*/ fsm->rdnb = Fread(fsm->rdbuf, sizeof(*fsm->rdbuf), fsm->rdlen, fsm->rfd); +/*@=boundswrite@*/ if (_fsm_debug && (stage & FSM_SYSCALL)) rpmMessage(RPMMESS_DEBUG, " %8s (rdbuf, %d, rfd)\trdnb %d\n", cur, (int)fsm->rdlen, (int)fsm->rdnb); diff --git a/lib/psm.c b/lib/psm.c index e90beac..76d097b 100644 --- a/lib/psm.c +++ b/lib/psm.c @@ -48,7 +48,6 @@ /*@access rpmte @*/ /* XXX rpmInstallSourcePackage */ /*@access alKey @*/ -/*@access rpmds @*/ int rpmVersionCompare(Header first, Header second) { @@ -1009,18 +1008,16 @@ static int handleOneTrigger(const PSM_t psm, Header sourceH, Header triggeredH, const char * sourceName; rpmRC rc = RPMRC_OK; int xx; + int i; xx = headerNVR(sourceH, &sourceName, NULL, NULL); trigger = rpmdsInit(rpmdsNew(triggeredH, RPMTAG_TRIGGERNAME, scareMem)); if (trigger != NULL) - while (rpmdsNext(trigger) >= 0) { + while ((i = rpmdsNext(trigger)) >= 0) { rpmTagType tit, tst, tpt; const char * Name; int_32 Flags = rpmdsFlags(trigger); -#ifdef LEGACY - int skip; -#endif if ((Name = rpmdsN(trigger)) == NULL) continue; /* XXX can't happen */ @@ -1030,21 +1027,6 @@ static int handleOneTrigger(const PSM_t psm, Header sourceH, Header triggeredH, if (!(Flags & psm->sense)) continue; -#ifdef LEGACY - /* - * For some reason, the TRIGGERVERSION stuff includes the name of - * the package which the trigger is based on. We need to skip - * over that here. I suspect that we'll change our minds on this - * and remove that, so I'm going to just 'do the right thing'. - */ - skip = strlen(Name); - if (!strncmp(trigger->EVR[trigger->i], trigger->N[trigger->i], skip) && - (trigger->EVR[trigger->i][skip] == '-')) - skip++; - else - skip = 0; -#endif - if (!headerMatchesDepFlags(sourceH, trigger)) continue; @@ -1066,7 +1048,7 @@ static int handleOneTrigger(const PSM_t psm, Header sourceH, Header triggeredH, rc = RPMRC_FAIL; } else { arg1 += psm->countCorrection; - index = triggerIndices[trigger->i]; + index = triggerIndices[i]; if (triggersAlreadyRun == NULL || triggersAlreadyRun[index] == 0) { diff --git a/lib/query.c b/lib/query.c index 9fb27f2..37add93 100644 --- a/lib/query.c +++ b/lib/query.c @@ -17,6 +17,7 @@ #include "rpmdb.h" #include "rpmps.h" +#include "rpmfi.h" #include "rpmts.h" #include "manifest.h" @@ -34,11 +35,11 @@ static void printFileInfo(char * te, const char * name, unsigned int mtime, unsigned short rdev, unsigned int nlink, const char * owner, const char * group, - int uid, int gid, const char * linkto) + const char * linkto) /*@modifies *te @*/ { char sizefield[15]; - char ownerfield[9], groupfield[9]; + char ownerfield[8+1], groupfield[8+1]; char timefield[100]; time_t when = mtime; /* important if sizeof(int_32) ! sizeof(time_t) */ struct tm * tm; @@ -56,17 +57,11 @@ static void printFileInfo(char * te, const char * name, /*@=boundsread@*/ } - if (owner) - strncpy(ownerfield, owner, 8); - else - sprintf(ownerfield, "%-8d", uid); - ownerfield[8] = '\0'; + strncpy(ownerfield, owner, sizeof(ownerfield)); + ownerfield[sizeof(ownerfield)-1] = '\0'; - if (group) - strncpy(groupfield, group, 8); - else - sprintf(groupfield, "%-8d", gid); - groupfield[8] = '\0'; + strncpy(groupfield, group, sizeof(groupfield)); + groupfield[sizeof(groupfield)-1] = '\0'; /* this is normally right */ sprintf(sizefield, "%12u", size); @@ -130,74 +125,30 @@ static inline /*@null@*/ const char * queryHeader(Header h, const char * qfmt) return str; } -/** - */ -/*@-boundsread@*/ -static int countLinks(int_16 * fileRdevList, int_32 * fileInodeList, int nfiles, - int xfile) - /*@*/ -{ - int nlink = 0; - - /* XXX rpm-3.3.12 has not RPMTAG_FILEINODES */ - if (!(fileRdevList[xfile] != 0 && fileRdevList && - fileInodeList[xfile] != 0 && fileInodeList && nfiles > 0)) - return 1; - while (nfiles-- > 0) { - if (fileRdevList[nfiles] == 0) - continue; - if (fileRdevList[nfiles] != fileRdevList[xfile]) - continue; - if (fileInodeList[nfiles] == 0) - continue; - if (fileInodeList[nfiles] != fileInodeList[xfile]) - continue; - nlink++; - } - if (nlink == 0) nlink = 1; - return nlink; -} -/*@=boundsread@*/ - -/*@-boundswrite@*/ int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h) { - HGE_t hge = (HGE_t)headerGetEntryMinMemory; - HFD_t hfd = headerFreeData; + int scareMem = 1; + rpmfi fi = NULL; char * t, * te; - rpmTagType type; - int_32 count; char * prefix = NULL; - const char ** dirNames = NULL; - const char ** baseNames = NULL; - rpmTagType bnt, dnt; - const char ** fileMD5List = NULL; - const char ** fileOwnerList = NULL; - const char ** fileGroupList = NULL; - const char ** fileLinktoList = NULL; - rpmTagType m5t, fot, fgt, ltt; - const char * fileStatesList; - int_32 * fileFlagsList, * fileMTimeList, * fileSizeList; - int_32 * fileUIDList = NULL; - int_32 * fileGIDList = NULL; - int_32 * fileInodeList = NULL; - uint_16 * fileModeList; - uint_16 * fileRdevList; - int_32 * dirIndexes; int rc = 0; /* XXX FIXME: need real return code */ int nonewline = 0; int i; te = t = xmalloc(BUFSIZ); +/*@-boundswrite@*/ *te = '\0'; +/*@=boundswrite@*/ if (!(qva->qva_flags & _QUERY_FOR_BITS) && qva->qva_queryFormat == NULL) { const char * name, * version, * release; (void) headerNVR(h, &name, &version, &release); +/*@-boundswrite@*/ te = stpcpy(te, name); te = stpcpy( stpcpy(te, "-"), version); te = stpcpy( stpcpy(te, "-"), release); +/*@=boundswrite@*/ goto exit; } @@ -213,9 +164,11 @@ int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h) t = xrealloc(t, BUFSIZ+sb); te = t + tb; } +/*@-boundswrite@*/ /*@-usereleased@*/ te = stpcpy(te, str); /*@=usereleased@*/ +/*@=boundswrite@*/ str = _free(str); } /*@=branchstate@*/ @@ -224,171 +177,151 @@ int showQueryPackage(QVA_t qva, /*@unused@*/ rpmts ts, Header h) if (!(qva->qva_flags & QUERY_FOR_LIST)) goto exit; - if (!hge(h, RPMTAG_BASENAMES, &bnt, (void **) &baseNames, &count)) { + fi = rpmfiNew(ts, NULL, h, RPMTAG_BASENAMES, scareMem); + if (rpmfiFC(fi) <= 0) { +/*@-boundswrite@*/ te = stpcpy(te, _("(contains no files)")); +/*@=boundswrite@*/ goto exit; } - if (!hge(h, RPMTAG_FILESTATES, &type, (void **) &fileStatesList, NULL)) - fileStatesList = NULL; - if (!hge(h, RPMTAG_DIRNAMES, &dnt, (void **) &dirNames, NULL)) - dirNames = NULL; - if (!hge(h, RPMTAG_DIRINDEXES, NULL, (void **) &dirIndexes, NULL)) - dirIndexes = NULL; - if (!hge(h, RPMTAG_FILEFLAGS, &type, (void **) &fileFlagsList, NULL)) - fileFlagsList = NULL; - if (!hge(h, RPMTAG_FILESIZES, &type, (void **) &fileSizeList, NULL)) - fileSizeList = NULL; - if (!hge(h, RPMTAG_FILEMODES, &type, (void **) &fileModeList, NULL)) - fileModeList = NULL; - if (!hge(h, RPMTAG_FILEMTIMES, &type, (void **) &fileMTimeList, NULL)) - fileMTimeList = NULL; - if (!hge(h, RPMTAG_FILERDEVS, &type, (void **) &fileRdevList, NULL)) - fileRdevList = NULL; - if (!hge(h, RPMTAG_FILEINODES, &type, (void **) &fileInodeList, NULL)) - fileInodeList = NULL; - if (!hge(h, RPMTAG_FILELINKTOS, <t, (void **) &fileLinktoList, NULL)) - fileLinktoList = NULL; - if (!hge(h, RPMTAG_FILEMD5S, &m5t, (void **) &fileMD5List, NULL)) - fileMD5List = NULL; - if (!hge(h, RPMTAG_FILEUIDS, &type, (void **) &fileUIDList, NULL)) - fileUIDList = NULL; - if (!hge(h, RPMTAG_FILEGIDS, &type, (void **) &fileGIDList, NULL)) - fileGIDList = NULL; - if (!hge(h, RPMTAG_FILEUSERNAME, &fot, (void **) &fileOwnerList, NULL)) - fileOwnerList = NULL; - if (!hge(h, RPMTAG_FILEGROUPNAME, &fgt, (void **) &fileGroupList, NULL)) - fileGroupList = NULL; - - for (i = 0; i < count; i++) { + + fi = rpmfiInit(fi, 0); + if (fi != NULL) + while ((i = rpmfiNext(fi)) >= 0) { + rpmfileAttrs fflags; + unsigned short fmode; + unsigned short frdev; + unsigned int fmtime; + rpmfileState fstate; + size_t fsize; + const char * fn; + char fmd5[32+1]; + const char * fuser; + const char * fgroup; + const char * flink; + int_32 fnlink; + + fflags = rpmfiFFlags(fi); + fmode = rpmfiFMode(fi); + frdev = rpmfiFRdev(fi); + fmtime = rpmfiFMtime(fi); + fstate = rpmfiFState(fi); + fsize = rpmfiFSize(fi); + fn = rpmfiFN(fi); +/*@-bounds@*/ + { static char hex[] = "0123456789abcdef"; + const char * s = rpmfiMD5(fi); + char * p = fmd5; + int j; + for (j = 0; j < 16; j++) { + unsigned k = *s++; + *p++ = hex[ (k >> 4) & 0xf ]; + *p++ = hex[ (k ) & 0xf ]; + } + *p = '\0'; + } +/*@=bounds@*/ + fuser = rpmfiFUser(fi); + fgroup = rpmfiFGroup(fi); + flink = rpmfiFLink(fi); + fnlink = rpmfiFNlink(fi); /* If querying only docs, skip non-doc files. */ - if ((qva->qva_flags & QUERY_FOR_DOCS) - && !(fileFlagsList[i] & RPMFILE_DOC)) + if ((qva->qva_flags & QUERY_FOR_DOCS) && !(fflags & RPMFILE_DOC)) continue; /* If querying only configs, skip non-config files. */ - if ((qva->qva_flags & QUERY_FOR_CONFIG) - && !(fileFlagsList[i] & RPMFILE_CONFIG)) + if ((qva->qva_flags & QUERY_FOR_CONFIG) && !(fflags & RPMFILE_CONFIG)) continue; /* If not querying %ghost, skip ghost files. */ - if (!(qva->qva_fflags & RPMFILE_GHOST) - && (fileFlagsList[i] & RPMFILE_GHOST)) + if (!(qva->qva_fflags & RPMFILE_GHOST) && (fflags & RPMFILE_GHOST)) continue; - /*@-internalglobs@*/ /* FIX: shrug */ +/*@-boundswrite@*/ if (!rpmIsVerbose() && prefix) te = stpcpy(te, prefix); - /*@=internalglobs@*/ if (qva->qva_flags & QUERY_FOR_STATE) { - if (fileStatesList) { - rpmfileState fstate = fileStatesList[i]; - switch (fstate) { - case RPMFILE_STATE_NORMAL: - te = stpcpy(te, _("normal ")); - /*@switchbreak@*/ break; - case RPMFILE_STATE_REPLACED: - te = stpcpy(te, _("replaced ")); - /*@switchbreak@*/ break; - case RPMFILE_STATE_NOTINSTALLED: - te = stpcpy(te, _("not installed ")); - /*@switchbreak@*/ break; - case RPMFILE_STATE_NETSHARED: - te = stpcpy(te, _("net shared ")); - /*@switchbreak@*/ break; - default: - sprintf(te, _("(unknown %3d) "), (int)fileStatesList[i]); - te += strlen(te); - /*@switchbreak@*/ break; - } - } else { + switch (fstate) { + case RPMFILE_STATE_NORMAL: + te = stpcpy(te, _("normal ")); + /*@switchbreak@*/ break; + case RPMFILE_STATE_REPLACED: + te = stpcpy(te, _("replaced ")); + /*@switchbreak@*/ break; + case RPMFILE_STATE_NOTINSTALLED: + te = stpcpy(te, _("not installed ")); + /*@switchbreak@*/ break; + case RPMFILE_STATE_NETSHARED: + te = stpcpy(te, _("net shared ")); + /*@switchbreak@*/ break; + case RPMFILE_STATE_MISSING: te = stpcpy(te, _("(no state) ")); + /*@switchbreak@*/ break; + default: + sprintf(te, _("(unknown %3d) "), fstate); + te += strlen(te); + /*@switchbreak@*/ break; } } +/*@=boundswrite@*/ if (qva->qva_flags & QUERY_FOR_DUMPFILES) { - sprintf(te, "%s%s %d %d %s 0%o ", - dirNames[dirIndexes[i]], baseNames[i], - fileSizeList[i], fileMTimeList[i], - fileMD5List[i], (unsigned) fileModeList[i]); + sprintf(te, "%s %d %d %s 0%o ", fn, fsize, fmtime, fmd5, fmode); te += strlen(te); - if (fileOwnerList && fileGroupList) { - sprintf(te, "%s %s", fileOwnerList[i], fileGroupList[i]); - te += strlen(te); - } else if (fileUIDList && fileGIDList) { - sprintf(te, "%d %d", fileUIDList[i], fileGIDList[i]); + if (fuser && fgroup) { +/*@-nullpass@*/ + sprintf(te, "%s %s", fuser, fgroup); +/*@=nullpass@*/ te += strlen(te); } else { rpmError(RPMERR_INTERNAL, - _("package has neither file owner or id lists\n")); + _("package has not file owner/group lists\n")); } sprintf(te, " %s %s %u ", - fileFlagsList[i] & RPMFILE_CONFIG ? "1" : "0", - fileFlagsList[i] & RPMFILE_DOC ? "1" : "0", - (unsigned) fileRdevList[i]); + fflags & RPMFILE_CONFIG ? "1" : "0", + fflags & RPMFILE_DOC ? "1" : "0", + frdev); te += strlen(te); - if (strlen(fileLinktoList[i])) - sprintf(te, "%s", fileLinktoList[i]); - else - sprintf(te, "X"); + sprintf(te, "%s", (flink && *flink ? flink : "X")); te += strlen(te); } else - /*@-internalglobs@*/ /* FIX: shrug */ if (!rpmIsVerbose()) { - te = stpcpy(te, dirNames[dirIndexes[i]]); - te = stpcpy(te, baseNames[i]); +/*@-boundswrite@*/ + te = stpcpy(te, fn); +/*@=boundswrite@*/ } - /*@=internalglobs@*/ else { - char * filespec; - int nlink; - size_t fileSize; - - filespec = xmalloc(strlen(dirNames[dirIndexes[i]]) - + strlen(baseNames[i]) + 1); - strcpy(filespec, dirNames[dirIndexes[i]]); - strcat(filespec, baseNames[i]); - - fileSize = fileSizeList[i]; - nlink = countLinks(fileRdevList, fileInodeList, count, i); - -if (S_ISDIR(fileModeList[i])) { - nlink++; - fileSize = 0; -} - if (fileOwnerList && fileGroupList) { - printFileInfo(te, filespec, fileSize, - fileModeList[i], fileMTimeList[i], - fileRdevList[i], nlink, - fileOwnerList[i], - fileGroupList[i], -1, - -1, fileLinktoList[i]); - te += strlen(te); - } else if (fileUIDList && fileGIDList) { - printFileInfo(te, filespec, fileSize, - fileModeList[i], fileMTimeList[i], - fileRdevList[i], nlink, - NULL, NULL, fileUIDList[i], - fileGIDList[i], - fileLinktoList[i]); + + /* XXX Adjust directory link count and size for display output. */ + if (S_ISDIR(fmode)) { + fnlink++; + fsize = 0; + } + + if (fuser && fgroup) { +/*@-nullpass@*/ + printFileInfo(te, fn, fsize, fmode, fmtime, frdev, fnlink, + fuser, fgroup, flink); +/*@=nullpass@*/ te += strlen(te); } else { rpmError(RPMERR_INTERNAL, _("package has neither file owner or id lists\n")); } - - filespec = _free(filespec); } if (te > t) { +/*@-boundswrite@*/ *te++ = '\n'; *te = '\0'; rpmMessage(RPMMESS_NORMAL, "%s", t); te = t; *t = '\0'; +/*@=boundswrite@*/ } } @@ -397,21 +330,18 @@ if (S_ISDIR(fileModeList[i])) { exit: if (te > t) { if (!nonewline) { +/*@-boundswrite@*/ *te++ = '\n'; *te = '\0'; +/*@=boundswrite@*/ } rpmMessage(RPMMESS_NORMAL, "%s", t); } t = _free(t); - dirNames = hfd(dirNames, dnt); - baseNames = hfd(baseNames, bnt); - fileLinktoList = hfd(fileLinktoList, ltt); - fileMD5List = hfd(fileMD5List, m5t); - fileOwnerList = hfd(fileOwnerList, fot); - fileGroupList = hfd(fileGroupList, fgt); + + fi = rpmfiFree(fi, 1); return rc; } -/*@=boundswrite@*/ /** */ @@ -597,7 +527,7 @@ int (*parseSpecVec) (Spec *specp, const char *specFile, const char *rootdir, /*@null@*/ Spec (*freeSpecVec) (Spec spec) = NULL; /*@=redecl@*/ -/*@-bounds@*/ +/*@-bounds@*/ /* LCL: segfault */ int rpmQueryVerify(QVA_t qva, rpmts ts, const char * arg) { const char ** av = NULL; @@ -1021,11 +951,13 @@ int rpmcliQuery(rpmts ts, QVA_t qva, const char ** argv) ec = rpmQueryVerify(qva, ts, (const char *) argv); /*@=nullpass@*/ } else { +/*@-boundsread@*/ if (argv != NULL) while ((arg = *argv++) != NULL) { ec += rpmQueryVerify(qva, ts, arg); rpmtsClean(ts); } +/*@=boundsread@*/ } (void) rpmtsSetVerifySigFlags(ts, 0); diff --git a/lib/rpmcli.h b/lib/rpmcli.h index ec28bab..d6237e7 100644 --- a/lib/rpmcli.h +++ b/lib/rpmcli.h @@ -343,7 +343,8 @@ int rpmQueryVerify(QVA_t qva, rpmts ts, const char * arg) * @return 0 always */ int showQueryPackage(QVA_t qva, rpmts ts, Header h) - /*@modifies ts @*/; + /*@globals internalState @*/ + /*@modifies ts, h, internalState @*/; /** \ingroup rpmcli * Display package information. @@ -364,14 +365,17 @@ int rpmcliQuery(rpmts ts, QVA_t qva, /*@null@*/ const char ** argv) * @todo gnorpm and python bindings prevent this from being static. * @param ts transaction set * @param fi file info (with linked header and current file index) - * @retval result address of bit(s) returned to indicate failure + * @retval res address of bit(s) returned to indicate failure * @param omitMask bit(s) to disable verify checks * @return 0 on success (or not installed), 1 on error */ +/*@-incondefs@*/ int rpmVerifyFile(const rpmts ts, rpmfi fi, - /*@out@*/ rpmVerifyAttrs * result, rpmVerifyAttrs omitMask) + /*@out@*/ rpmVerifyAttrs * res, rpmVerifyAttrs omitMask) /*@globals fileSystem @*/ - /*@modifies fi, *result, fileSystem @*/; + /*@modifies fi, *res, fileSystem @*/ + /*@requires maxSet(res) >= 0 @*/; +/*@=incondefs@*/ /** \ingroup rpmcli * Display results of package verify. @@ -392,8 +396,7 @@ int showVerifyPackage(QVA_t qva, rpmts ts, Header h) * @param fn package file name * @return 0 on success, 1 on failure */ -int rpmVerifySignatures(QVA_t qva, rpmts ts, FD_t fd, - const char * fn) +int rpmVerifySignatures(QVA_t qva, rpmts ts, FD_t fd, const char * fn) /*@globals fileSystem, internalState @*/ /*@modifies qva, ts, fd, fileSystem, internalState @*/; diff --git a/lib/rpmfi.c b/lib/rpmfi.c index ec81dc4..14847db 100644 --- a/lib/rpmfi.c +++ b/lib/rpmfi.c @@ -189,7 +189,7 @@ int_16 rpmfiFMode(rpmfi fi) rpmfileState rpmfiFState(rpmfi fi) { - char fstate = 0; + rpmfileState fstate = RPMFILE_STATE_MISSING; if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) { /*@-boundsread@*/ @@ -252,6 +252,41 @@ int_16 rpmfiFRdev(rpmfi fi) return frdev; } +int_32 rpmfiFInode(rpmfi fi) +{ + int_32 finode = 0; + + if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) { +/*@-boundsread@*/ + if (fi->finodes != NULL) + finode = fi->finodes[fi->i]; +/*@=boundsread@*/ + } + return finode; +} + +int_32 rpmfiFNlink(rpmfi fi) +{ + int_32 nlink = 0; + + if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) { + /* XXX rpm-2.3.12 has not RPMTAG_FILEINODES */ +/*@-boundsread@*/ + if (fi->finodes && fi->frdevs) { + int_32 finode = fi->finodes[fi->i]; + int_16 frdev = fi->frdevs[fi->i]; + int j; + + for (j = 0; j < fi->fc; j++) { + if (fi->frdevs[j] == frdev && fi->finodes[j] == finode) + nlink++; + } + } +/*@=boundsread@*/ + } + return nlink; +} + int_32 rpmfiFMtime(rpmfi fi) { int_32 fmtime = 0; @@ -269,6 +304,7 @@ const char * rpmfiFUser(rpmfi fi) { const char * fuser = NULL; + /* XXX add support for ancient RPMTAG_FILEUIDS? */ if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) { /*@-boundsread@*/ if (fi->fuser != NULL) @@ -282,6 +318,7 @@ const char * rpmfiFGroup(rpmfi fi) { const char * fgroup = NULL; + /* XXX add support for ancient RPMTAG_FILEGIDS? */ if (fi != NULL && fi->i >= 0 && fi->i < fi->fc) { /*@-boundsread@*/ if (fi->fgroup != NULL) @@ -880,6 +917,7 @@ fprintf(stderr, "*** fi %p\t%s[%d]\n", fi, fi->Type, fi->fc); fi->vflags = _free(fi->vflags); fi->fsizes = _free(fi->fsizes); fi->frdevs = _free(fi->frdevs); + fi->finodes = _free(fi->finodes); fi->dil = _free(fi->dil); } /*@=evalorder@*/ @@ -1047,9 +1085,10 @@ if (fi->actions == NULL) } fi->fmd5s = hfd(fi->fmd5s, -1); - /* XXX TR_REMOVED doesn;t need fmtimes or frdevs */ + /* XXX TR_REMOVED doesn;t need fmtimes, frdevs or finodes */ xx = hge(h, RPMTAG_FILEMTIMES, NULL, (void **) &fi->fmtimes, NULL); xx = hge(h, RPMTAG_FILERDEVS, NULL, (void **) &fi->frdevs, NULL); + xx = hge(h, RPMTAG_FILEINODES, NULL, (void **) &fi->finodes, NULL); fi->replacedSizes = xcalloc(fi->fc, sizeof(*fi->replacedSizes)); @@ -1076,6 +1115,7 @@ if (fi->actions == NULL) if (!scareMem) { _fdupe(fi, fmtimes); _fdupe(fi, frdevs); + _fdupe(fi, finodes); _fdupe(fi, fsizes); _fdupe(fi, fflags); _fdupe(fi, vflags); diff --git a/lib/rpmfi.h b/lib/rpmfi.h index e240c16..a9103fd 100644 --- a/lib/rpmfi.h +++ b/lib/rpmfi.h @@ -63,6 +63,8 @@ struct rpmfi_s { uint_16 * fmodes; /*!< File mode(s) (from header) */ /*@only@*/ /*?null?*/ const uint_16 * frdevs; /*!< File rdev(s) (from header) */ +/*@only@*/ /*?null?*/ + const uint_32 * finodes; /*!< File inodes(s) (from header) */ /*@only@*/ /*@null@*/ const char ** fuser; /*!< File owner(s) (from header) */ @@ -325,6 +327,22 @@ int_16 rpmfiFRdev(/*@null@*/ rpmfi fi) /*@*/; /** + * Return current file inode from file info set. + * @param fi file info set + * @return current file inode, 0 on invalid + */ +int_32 rpmfiFInode(/*@null@*/ rpmfi fi) + /*@*/; + +/** + * Return (calculated) current file nlink count from file info set. + * @param fi file info set + * @return current file nlink count, 0 on invalid + */ +int_32 rpmfiFNlink(/*@null@*/ rpmfi fi) + /*@*/; + +/** * Return current file modify time from file info set. * @param fi file info set * @return current file modify time, 0 on invalid diff --git a/lib/rpmlead.c b/lib/rpmlead.c index 23560ec..6d4efa6 100644 --- a/lib/rpmlead.c +++ b/lib/rpmlead.c @@ -35,8 +35,10 @@ int writeLead(FD_t fd, const struct rpmlead *lead) l.osnum = htons(l.osnum); l.signature_type = htons(l.signature_type); +/*@-boundswrite@*/ if (Fwrite(&l, 1, sizeof(l), fd) != sizeof(l)) return 1; +/*@=boundswrite@*/ return 0; } diff --git a/lib/rpmlib.h b/lib/rpmlib.h index c3b685f..cb59e56 100644 --- a/lib/rpmlib.h +++ b/lib/rpmlib.h @@ -401,6 +401,7 @@ typedef enum rpmfileState_e { RPMFILE_STATE_NOTINSTALLED = 2, RPMFILE_STATE_NETSHARED = 3 } rpmfileState; +#define RPMFILE_STATE_MISSING -1 /* XXX used for unavailable data */ /** * File Attributes. diff --git a/lib/signature.c b/lib/signature.c index 826595c..ce20cd2 100644 --- a/lib/signature.c +++ b/lib/signature.c @@ -242,8 +242,10 @@ int rpmWriteSignature(FD_t fd, Header h) sigSize = headerSizeof(h, HEADER_MAGIC_YES); pad = (8 - (sigSize % 8)) % 8; if (pad) { +/*@-boundswrite@*/ if (Fwrite(buf, sizeof(buf[0]), pad, fd) != pad) rc = 1; +/*@=boundswrite@*/ } rpmMessage(RPMMESS_DEBUG, _("Signature: size(%d)+pad(%d)\n"), sigSize, pad); return rc; diff --git a/lib/verify.c b/lib/verify.c index ea8fb5c..f312715 100644 --- a/lib/verify.c +++ b/lib/verify.c @@ -28,7 +28,7 @@ #define S_ISDEV(m) (S_ISBLK((m)) || S_ISCHR((m))) int rpmVerifyFile(const rpmts ts, const rpmfi fi, - rpmVerifyAttrs * result, rpmVerifyAttrs omitMask) + rpmVerifyAttrs * res, rpmVerifyAttrs omitMask) { unsigned short fmode = rpmfiFMode(fi); rpmfileAttrs fileAttrs = rpmfiFFlags(fi); @@ -59,9 +59,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, } /*@=bounds@*/ -/*@-boundswrite@*/ - *result = RPMVERIFY_NONE; -/*@=boundswrite@*/ + *res = RPMVERIFY_NONE; /* * Check to see if the file was installed - if not pretend all is OK. @@ -77,9 +75,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, } if (fn == NULL || Lstat(fn, &sb) != 0) { -/*@-bounds@*/ - *result |= RPMVERIFY_LSTATFAIL; -/*@=bounds@*/ + *res |= RPMVERIFY_LSTATFAIL; return 1; } @@ -120,7 +116,6 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, */ flags &= ~(omitMask | RPMVERIFY_LSTATFAIL|RPMVERIFY_READFAIL|RPMVERIFY_READLINKFAIL); -/*@-bounds@*/ if (flags & RPMVERIFY_MD5) { unsigned char md5sum[16]; size_t fsize; @@ -129,31 +124,31 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, rc = domd5(fn, md5sum, 0, &fsize); sb.st_size = fsize; if (rc) - *result |= (RPMVERIFY_READFAIL|RPMVERIFY_MD5); + *res |= (RPMVERIFY_READFAIL|RPMVERIFY_MD5); else { const unsigned char * md5 = rpmfiMD5(fi); if (md5 == NULL || memcmp(md5sum, md5, sizeof(md5sum))) - *result |= RPMVERIFY_MD5; + *res |= RPMVERIFY_MD5; } } if (flags & RPMVERIFY_LINKTO) { - char linkto[1024]; + char linkto[1024+1]; int size = 0; if ((size = Readlink(fn, linkto, sizeof(linkto)-1)) == -1) - *result |= (RPMVERIFY_READLINKFAIL|RPMVERIFY_LINKTO); + *res |= (RPMVERIFY_READLINKFAIL|RPMVERIFY_LINKTO); else { const char * flink = rpmfiFLink(fi); linkto[size] = '\0'; if (flink == NULL || strcmp(linkto, flink)) - *result |= RPMVERIFY_LINKTO; + *res |= RPMVERIFY_LINKTO; } } if (flags & RPMVERIFY_FILESIZE) { if (sb.st_size != rpmfiFSize(fi)) - *result |= RPMVERIFY_FILESIZE; + *res |= RPMVERIFY_FILESIZE; } if (flags & RPMVERIFY_MODE) { @@ -175,41 +170,40 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, } if (metamode != filemode) - *result |= RPMVERIFY_MODE; + *res |= RPMVERIFY_MODE; } if (flags & RPMVERIFY_RDEV) { if (S_ISCHR(fmode) != S_ISCHR(sb.st_mode) || S_ISBLK(fmode) != S_ISBLK(sb.st_mode)) { - *result |= RPMVERIFY_RDEV; + *res |= RPMVERIFY_RDEV; } else if (S_ISDEV(fmode) && S_ISDEV(sb.st_mode)) { uint_16 st_rdev = (sb.st_rdev & 0xffff); uint_16 frdev = (rpmfiFRdev(fi) & 0xffff); if (st_rdev != frdev) - *result |= RPMVERIFY_RDEV; + *res |= RPMVERIFY_RDEV; } } if (flags & RPMVERIFY_MTIME) { if (sb.st_mtime != rpmfiFMtime(fi)) - *result |= RPMVERIFY_MTIME; + *res |= RPMVERIFY_MTIME; } if (flags & RPMVERIFY_USER) { const char * name = uidToUname(sb.st_uid); const char * fuser = rpmfiFUser(fi); if (name == NULL || fuser == NULL || strcmp(name, fuser)) - *result |= RPMVERIFY_USER; + *res |= RPMVERIFY_USER; } if (flags & RPMVERIFY_GROUP) { const char * name = gidToGname(sb.st_gid); const char * fgroup = rpmfiFGroup(fi); if (name == NULL || fgroup == NULL || strcmp(name, fgroup)) - *result |= RPMVERIFY_GROUP; + *res |= RPMVERIFY_GROUP; } -/*@=bounds@*/ return 0; } @@ -273,7 +267,6 @@ static int verifyHeader(QVA_t qva, const rpmts ts, rpmfi fi) int ec = 0; /* assume no problems */ int i; -/*@-boundswrite@*/ te = t = buf; *te = '\0'; @@ -291,7 +284,9 @@ static int verifyHeader(QVA_t qva, const rpmts ts, rpmfi fi) && (fileAttrs & RPMFILE_GHOST)) continue; +/*@-boundswrite@*/ rc = rpmVerifyFile(ts, fi, &verifyResult, omitMask); +/*@=boundswrite@*/ if (rc) { if (!(fileAttrs & RPMFILE_MISSINGOK) || rpmIsVerbose()) { sprintf(te, _("missing %s"), rpmfiFN(fi)); @@ -339,6 +334,7 @@ static int verifyHeader(QVA_t qva, const rpmts ts, rpmfi fi) te += strlen(te); } +/*@-boundswrite@*/ if (te > t) { *te++ = '\n'; *te = '\0'; @@ -346,8 +342,8 @@ static int verifyHeader(QVA_t qva, const rpmts ts, rpmfi fi) te = t = buf; *t = '\0'; } - } /*@=boundswrite@*/ + } fi = rpmfiUnlink(fi, "verifyHeader"); return ec; diff --git a/po/cs.po b/po/cs.po index 22cce5e..4bd43c4 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -19,44 +19,44 @@ msgstr "chybn msgid "Unable to open spec file %s: %s\n" msgstr "Nelze otevøít spec soubor %s: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Nelze otevøít rouru pro tar: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Nelze èíst spec soubor z %s\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Nelze pøejmenovat %s na %s: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "nemohu zjistit stav %s: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "Soubor %s není obyèejný soubor.\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Sestavuji cílové platformy: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Sestavuji pro cíl %s\n" @@ -74,48 +74,48 @@ msgstr "chyba p msgid "cannot re-open payload: %s\n" msgstr "nemohu znovu otevøít payload: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "vypsat pou¾ívanou verzi rpm" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "poskytnout výstu s ménì detaily" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "poskytnout detailnìj¹í výstup" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "vypsat expanzi makra +" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "odeslat stdout do " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "pou¾ít jako adresáø nejvy¹¹í úrovnì" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -131,23 +131,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "èíst místo implicitního rpmrc souboru" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "zobrazit finální konfiguraci rpmrc a maker" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "zakázat pou¾ití libio(3) API" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "ladit protokol datového toku" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "ladit rpmio I/O" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "ladit manipulaci s URL cache" @@ -181,12 +181,12 @@ msgid "Common options for all rpm modes:" msgstr "Spoleèné volby pro v¹echny módy:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM verze %s\n" @@ -205,124 +205,124 @@ msgstr "Tento program lze voln msgid "Usage: %s {--help}\n" msgstr "Pou¾ití: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "Volba --rcfile byla odstranìna.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "Pou¾ijte volbu \"--macros \".\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "specifikovat lze jen jeden hlavní re¾im" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "neoèekávaný pøíznak pro dotaz" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "neoèekávaný formát dotazu" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "neoèekávaný zdroj dotazu" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá" -#: rpmqv.c:742 +#: rpmqv.c:744 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:744 +#: rpmqv.c:746 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:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "pou¾ít lze jen jeden z parametrù --prefix nebo --relocate" -#: rpmqv.c:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 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:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "parametry pro --prefix musejí zaèínat znakem /" -#: rpmqv.c:759 +#: rpmqv.c:761 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:763 +#: rpmqv.c:765 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:768 +#: rpmqv.c:770 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:772 +#: rpmqv.c:774 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:776 +#: rpmqv.c:778 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:780 +#: rpmqv.c:782 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:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "pou¾ít lze jen jeden z parametrù --excludedocs a --includedocs" -#: rpmqv.c:788 +#: rpmqv.c:790 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:792 +#: rpmqv.c:794 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:797 +#: rpmqv.c:799 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:801 +#: rpmqv.c:803 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:805 +#: rpmqv.c:807 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:810 +#: rpmqv.c:812 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:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -330,7 +330,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:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -338,7 +338,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:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -346,13 +346,13 @@ msgstr "" "--nodeps mù¾e být pou¾it jen pøi sestavování, rekompilaci, instalaci, " "odstraòování a kontrole" -#: rpmqv.c:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -360,106 +360,107 @@ msgstr "" "--root (-r) mù¾e být pou¾it jen pøi instalaci, odstraòování, dotazech nebo " "znovuvytvoøení databáze" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "parametry pro --root (-r) musejí zaèínat znakem /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "¾ádné soubory k podepsání\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "pøístup k souboru %s se nezdaøil\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp nenalezeno: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Vlo¾te heslovou frázi: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Chybná heslová fráze\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Heslová fráze je v poøádku.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "©patná %%_signature spec v souboru maker.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 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:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "spu¹tìní selhalo\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "ke znovusestavení nezadány ¾ádné balíèky" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "pro sestavení nezadány ¾ádné spec soubory" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "pro sestavení nezadány ¾ádné tar soubory" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "nezadány ¾ádné balíèky pro instalaci" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "nezadány ¾ádné balíèky pro instalaci" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "k dotazu nezadány ¾ádné parametry" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "pro kontrolu nezadány ¾ádné balíèky" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "neoèekávané parametry pro --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "k dotazu nezadány ¾ádné parametry" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Nelze otevøít doèasný soubor.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "Provádìní(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Spu¹tìní %s selhalo (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "©patný návratový kód z %s (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -514,184 +515,184 @@ msgstr "- nen msgid "&& and || not suported for strings\n" msgstr "&& a || není podporováno pro øetìzce\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "chyba syntaxe ve výrazu\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK selhal: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Chybí '(' v %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Chybí ')' v %s(%s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Neplatný %s token: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "Chybìjící %s v %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Následuje neprázdný znak %s(): %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "©patná syntaxe: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "©patná práva spec: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "©patná práva adresáøe: %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, 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:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Duplicitní locale %.*s v %%lang(%s)\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Dosa¾en limit pro %%docdir\n" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "Dva soubory na jednom øádku: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Soubor musí zaèínat na \"/\": %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Soubor uveden dvakrát: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolická linka ukazuje na BuildRoot: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Soubor nesouhlasí s prefixem (%s): %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Soubor nenalezen: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "©patný vlastník/skupina: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Soubor %4d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Soubor potøebuje úvodní \"/\": %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "Glob není dovolen: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "Soubor nenalezen globem: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Nemohu otevøít %%files soubor %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "øádek: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Nemohu spustit %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Nemohu provést fork %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s selhalo\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "Nemohu zapsat v¹echna data do %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Hledám %s: (pou¾it %s)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "Selhalo vyhledání %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Zpracovávám soubory: %s-%s-%s\n" @@ -720,161 +721,161 @@ msgstr "getGnameS: p msgid "getGidS: too many gid's\n" msgstr "getGidS: pøíli¹ mnoho GID\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Nemohu získat jméno poèítaèe: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, 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:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "vytváøení archívu selhalo: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "zápis cpio_copy selhal: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "ètení cpio_copy selhalo: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Nemohu otevøít PreIn soubor: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Nemohu otevøít PreUn soubor: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Nemohu otevøít PostIn soubor: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Nemohu otevøít PostUn soubor: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Nemohu otevøít VerifyScript soubor: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, 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:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: otevøení %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: ètení %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek selhal: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s není RPM balíèek\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: ètení hlavièky z %s\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nemohu pøeèíst hlavièku z %s: %s\n" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nemohu zapsat hlavièku do %s: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "©patná CSA data\n" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Nemohu zapsat hlavièku do %s: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Generuji podpis: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nemohu pøeèíst hlavièku z %s: %s\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "Nemohu otevøít %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "Nemohu zapsat balíèek: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, 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:656 +#: build/pack.c:658 #, 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:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nemohu zapsat hlavièku do %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nemohu pøeèíst payload z %s: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nemohu zapsat payload do %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Zapsáno: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "nemohu vytvoøit %s: %s\n" @@ -949,123 +950,123 @@ msgstr " msgid "line %d: Second %%files list\n" msgstr "øádek %d: Druhý seznam %%files\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "Architektura je vyøazena: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "Architektura není zahrnuta: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "OS je vyøazen: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "OS není zahrnut: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Duplikovaná polo¾ka %s v balíèku: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "Nemohu otevøít ikonu %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "Nemohu pøeèíst ikonu %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "Neznámý typ ikony: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "øádek %d: Znaèka má jen jeden token: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "øádek %d: Poèkozená znaèka: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "øádek %d: Prázdná znaèka: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "øádek %d: Nepøípustný znak '-' v %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot nemù¾e být \"/\": %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "øádek %d: Prefixy nesmí konèit znakem \"/\": %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "øádek %d: Docdir musí zaèínat na '/': %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "øádek %d: ©patné urèení %s: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "øádek %d: ©patný formát BuildArchitecture: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Interní chyba: ©patná znaèka: %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "©patná specifikace balíèku: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "Balíèek ji¾ existuje: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "øádek %d: Neznámá znaèka: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "Spec soubor nemù¾e pou¾ít BuildRoot\n" @@ -1104,41 +1105,41 @@ msgstr " msgid "line %d: Bad %%setup option %s: %s\n" msgstr "øádek %d: ©patná volba v %%setup %s: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "øádek %d: K %%patch -b potøebuji parametr: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "øádek %d: K %%patch -z potøebuji parametr: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "øádek %d: K %%patch -p potøebuji parametr: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "øádek %d: ©patný parametr pro %%patch -p: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "Pøíli¹ mnoho patchù!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "øádek %d: ©patný parametr pro %%patch: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "øádek %d: druhý %%prep\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1146,17 +1147,17 @@ msgstr "" "øádek %d: Polo¾ky v závislostech musí zaèínat alfanumerickým znakem, '_' " "nebo '/': %s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "øádek %d: Jméno souboru není dovoleno: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "øádek %d: Jméno s verzí není dovoleno: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "øádek %d: Vy¾adována verze: %s\n" @@ -1181,47 +1182,47 @@ msgstr " msgid "line %d: Second %s\n" msgstr "øádek %d: Druhý %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "øádek %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "Nemohu otevøít %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "Neuzavøený %%if\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean vrátil %d\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else bez poèíteèního %%if\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif bez poèáteèního %%if\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "po¹kozený pøíkaz %%include\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "Nenalezeny ¾ádné kompatibilní architektury pro sestavení\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "Balíèek nemá ¾ádné %%description: %s\n" @@ -1379,59 +1380,59 @@ msgstr "c msgid "lookup i18N strings in specfile catalog" msgstr "vyhledat i18N øetìzce ve specfile katalogu" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "øádek %d: ©patné èíslo: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "øádek %d: ©patné èíslo %s: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "øádek %d: ©patné èíslo %s: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(chyba: 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "©patné magické èíslo" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "©patná nebo neèitelná hlavièka" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Velikost hlavièky je pøili¹ velká" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Neznámý typ souboru" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "Chybìjící hardlink(y)" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "MD5 souèet nesouhlasí" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Interní chyba" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "selhal - " @@ -1440,52 +1441,52 @@ msgstr "selhal - " msgid "package %s was already added, replacing with %s\n" msgstr "balíèek %s je ji¾ nainstalován" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s ANO (rpmrc poskytuje)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s ANO (rpmlib poskytuje)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "©patný soubor: %s: %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s ANO (db poskytuje)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "¾ádné balíèky\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "========== ukládání tsort relací\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1493,202 +1494,203 @@ msgid "" msgstr "" "========== tsorting balíèkù (poøadí, #pøedchùdce, #následovník, hloubka)\n" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== pouze úspì¹né (poøadí dle prezentace)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "SMYÈKA:\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== pokraèuje tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(není èíslo)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(není èíslo)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(není èíslo)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() nevrátil velikost: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() nevrátil pøípojné body: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "nemohu zjistit stav %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "nemohu otevøít %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "soubor %s je na neznámém zaøízení\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Adresáøe, které nebyly explicitnì zaøazeny do balíèku:\n" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "vytvoøen adresáø %s s právy %04o.\n" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s ulo¾eno jako %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s selhal: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink %s selhal: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s vytvoøen jako %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead selhalo\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "práce s balíèky verze 1 není podporována touto verzí RPM\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "tato verze RPM podporuje práci s balíèky s verzí <= 4\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, fuzzy, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: readLead selhalo\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead selhalo\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Fread selhalo: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "èíst místo implicitního makro souboru" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "vynechané cesty musí zaèínat znakem /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "pøemístìní musejí zaèínat znakem /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "pøemístìní musejí obsahovat =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "pøemístìní musejí mít za znakem = znak /" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 #, fuzzy msgid "malformed rollback time/date stamp argument" msgstr "poru¹ený rollback èas" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "nainstalovat v¹echny soubory i konfigurace, které by se jinak mohly vynechat" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1696,146 +1698,146 @@ msgstr "" "odstranit v¹echny balíèky odpovídající (obvykle se generuje chyba, " "specifikuje-li více balíèkù)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "pøemístìní souborù v nepøemístitelném balíèku" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "uchovat smazané soubory pøesunem do podadresáøe" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "smazat (deinstalovat) balíèek" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "neinstalovat dokumentaci" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "pøeskoèit soubory s úvodní cestou " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "zkratka pro --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "aktualizace balíèku jestli¾e je ji¾ nainstalován" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "nekontrolovat architekturu balíèku" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "nekontrolovat operaèní systém balíèku" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "nekontrolovat volné místo na disku pøed instalací" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "nainstalovat dokumentaci" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "nainstalovat balíèek" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "upravit databázi, ale neupravovat systém souborovù" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "nekontrolovat závislosti balíèkù" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "nekontrolovat závislosti balíèkù" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "ovìøit podpis v balíèku" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "nespou¹tìt ¾ádné instalaèní skripty" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "nespou¹tìt ¾ádné instalaèní skripty" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "nespou¹tìt ¾ádné instalaèní skripty" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1843,456 +1845,463 @@ msgstr "" "aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích " "automaticky)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "bìhem instalace balíèku zobrazit procenta" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "pøemístit soubory do , jsou-li pøemístitelné" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "pøemístit soubory ze do " -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "uchovat smazané soubory pomocí pøebalení" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen" -#: lib/poptI.c:235 +#: lib/poptI.c:234 #, fuzzy msgid "deinstall new, reinstall old, package(s), back to " msgstr "odinstalovat nové balíèky, reinstalovat staré balíèky zpìt do data" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "aktualizace balíèku" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "dotázat/ovìøit v¹echny balíèky" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "re¾im kontroly" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "dotaz/ovìøení balíèkù vlastnícího soubor" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "dotaz/ovìøení balíèkù vlastnícího soubor" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "dotaz/ovìøení balíèkù ve skupinì" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "dotaz/ovìøení balíèkù vlastnícího soubor" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "dotaz/ovìøení souboru s balíèkem (tj. binárního RPM souboru)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "dotaz/ovìøení balíèkù vlastnícího soubor" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "re¾im dotazù" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "dotaz/ovìøení balíèkù vlastnícího soubor" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "zobrazit známé znaèky pro dotazy" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "dotaz na spec soubor" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "dotaz/ovìøení balíèkù ve skupinì" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "dotaz na balíèky aktivované balíèkem" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "re¾im kontroly" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "dotaz/ovìøení balíèkù vy¾adujících závislost" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "dotaz/ovìøení balíèkù poskytujících závislost" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "vypsat v¹echny konfiguraèní soubory" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "vypsat v¹echny soubory s dokumentací" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "zobrazit základní informace o souborech" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "vypsat soubory v balíèku" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "vynechat %%ghost soubory" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "vynechat %%license soubory" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "vynechat %%readme soubory" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "pou¾ij následující formát dotazù" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "nahradit i18n sekce do spec souboru" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "zobrazit stav vypsaných souborù" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "zobrazit roz¹íøený výpis souborù" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "nekontrolovat MD5 souborù v balíèku" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "nekontrolovat velikost souborù" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "nekontrolovat cesty symbolických linek" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "nekontrolovat vlastníka souborù" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "nekontrolovat skupinu souborù" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "nekontrolovat èas zmìny souboru" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "nekontrolovat mód souborù" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "nekontrolovat soubory v balíèku" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "nekontrolovat závislosti balíèkù" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "nespou¹tìt %verifyscript (pokud existuje)" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "nekontrolovat SHA1 digest v hlavièce" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "nekontrolovat MD5 souborù v balíèku" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "podepsat balíèek (zahodit aktuální podpis)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "ovìøit podpis v balíèku" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "podepsat balíèek (zahodit aktuální podpis)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "generovat PGP/GPG podpis" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Datový typ %d není podporován\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "nemohu vytvoøit %s: %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "nemohu zapsat do %%%s %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 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:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "zdrojový balíèek neobsahuje .spec soubor\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, 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:1519 +#: lib/psm.c:1504 #, 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:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - pou¾ita skupina root\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalování archívu selhalo %s%s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " na souboru " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nemohu otevøít %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s selhalo\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "nesprávný formát: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(neobsahuje ¾ádné soubory)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normální " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "nahrazen " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "neinstalován " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "sdílen v síti " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(chybí stav) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(neznámý %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(chybí stav) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "balíèek nemá vlastníka souboru ani seznamy id\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "balíèek nemá vlastníka souboru ani seznamy id\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "nemohu provést dotaz %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "otevøení %s selhalo: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "dotaz na %s se nezdaøil\n" -#: lib/query.c:653 +#: lib/query.c:583 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:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "¾ádné balíèky\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾ádné balíèky\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "nemohu zjistit stav %s: %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "¾ádný balíèek nevy¾aduje %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "¾ádný balíèek neposkytuje %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "soubor %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "soubor %s nevlastní ¾ádný balíèek\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "záznam balíèku èíslo: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "záznam %d nelze pøeèíst\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "balíèek %s není nainstalován\n" @@ -2420,37 +2429,37 @@ 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/rpmfi.c:561 +#: lib/rpmfi.c:598 #, fuzzy msgid "========== relocations\n" msgstr "========== ukládání tsort relací\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vyøazen: %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s vytvoøen jako %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Provádìní(%s): %s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Provádìní(%s): %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "Provádìní(%s): %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "nemohu provést dotaz %s: %s\n" @@ -2546,7 +2555,7 @@ msgstr " msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "%s: Fread selhalo: %s\n" @@ -2791,122 +2800,122 @@ msgstr "vynechat p msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nemohu spustit %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "%s selhalo\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "generovat PGP/GPG podpis" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "Nemohu pøeèíst hlavièku z %s: %s\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "%s selhalo\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "generovat PGP/GPG podpis" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "©patná %%_signature spec v souboru maker.\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Velikost hlavièky je pøili¹ velká" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "nekontrolovat SHA1 digest v hlavièce" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "vynechat pøípadné MD5 souèty" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "generovat PGP/GPG podpis" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2917,17 +2926,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "chybí { po %" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "chybné závislosti pøi sestavování:\n" @@ -2991,99 +3000,99 @@ msgstr "sd msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "Poèet dataLength() RPM_STRING_TYPE musí být 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "chybí { po %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "po %{ chybí }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "prázdný formát znaèky" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "prázdné jméno znaèky" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "neznámá znaèka" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "na konci pole oèekáváno ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "neoèekávaná ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "neoèekávaná }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "ve výrazu oèekáván ?" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "ve výrazu je po ? oèekávána {" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "ve výrazu je oèekávána }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "v podvýrazu je po ? oèekávána :" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "ve výrazu je po : oèekávána {" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "na konci výrazu je oèekáváno |" @@ -3105,255 +3114,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "generovat hlavièky balíèkù kompatibilní s RPM verze 2 a 3" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nemohu otevøít RPM databázi v %s\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nemohu otevøít RPM databázi v %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu vytvoøit databázi z existující databáze" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "chyba pøi vytváøení doèasného souboru %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "nemohu provést dotaz %s: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Nelze pøejmenovat %s na %s: %m\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Neznámý typ ikony: %s\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "Glob není dovolen: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "soubor %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3413,30 +3422,30 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "neoèekávaný zdroj dotazu" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "(chyba: 0x%x)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 #, fuzzy msgid "fatal error: " msgstr "Interní chyba" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 #, fuzzy msgid "error: " msgstr "(chyba: 0x%x)" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3470,13 +3479,13 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 #, fuzzy msgid "url port must be a number\n" msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "nemohu zjistit stav %s: %s\n" diff --git a/po/da.po b/po/da.po index 0a52802..e7a1c4b 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -20,44 +20,44 @@ msgstr "afh msgid "Unable to open spec file %s: %s\n" msgstr "Kan ikke åbne spec-fil %s: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunne ikke åbne tar-videreførsel: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Kunne ikke læse spec-fil fra %s\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Kunne ikke omdøbe %s til %s: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunne ikke finde %s: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "Filen %s er ikke en regulær fil.\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Opbygger mål-platforme: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Opbygger for mål %s\n" @@ -75,48 +75,48 @@ msgstr "fejl ved l msgid "cannot re-open payload: %s\n" msgstr "kan ikke genåbne pakkeindhold: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "vis versionen af rpm som benyttes" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "medtag mindre detaljerede oplysninger" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "medtag mere detaljerede oplysninger" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "udlæs makroudvidelse af +" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "send standard-ud til " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "brug som topniveau-katalog" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -132,23 +132,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "læs i stedet for standard rpmrc-fil(er)" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "vis den endelige rpmrc og makrokonfiguration" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "undlad at benytte libio(3)-API" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "aflus protokol-datastrøm" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "aflus rpmio I/O" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "aflus URL-bufferhåndtering" @@ -181,12 +181,12 @@ msgid "Common options for all rpm modes:" msgstr "Fælles tilvalg for alle rpm-tilstande:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "fil %s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM version %s\n" @@ -205,135 +205,135 @@ msgstr "Dette program kan frit distribueres under betingelserne i GNU GPL" msgid "Usage: %s {--help}\n" msgstr "Brug: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "Tilvalget --rcfile er fjernet.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "Brug \"--macros \" i stedet..\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "kun ét hovedtilvalg kan angives" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "uventet forespørgselsflag" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "uventet forespørgselsformat" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "uventet forespørgselskilde" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath angivet ved en operation, der ikke benytter en database" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "kun installation, opgradering, rmsource og rmspec kan tvinges igennem" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "filer kan kun omrokeres under installation" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "kun én af --prefix eller --relocate kan bruges" -#: rpmqv.c:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan kun bruges, når nye pakker installeres" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "parametre til --prefix skal starte med et /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan kun angives ved installation" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent kan kun angives ved installation" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan kun angives ved installation" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs kan kun angives ved installation" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs kan kun angives ved installation" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs kan kun angives ved installation" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "kun én af --excludedocs og --includedocs kan angives" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch kan kun angives ved installation" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos kan kun angives ved installation" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize kan kun angives ved installation" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches kan kun angives ved installation" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles kan kun angives ved installation" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb kan kun angives ved installation og sletning" -#: rpmqv.c:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -341,13 +341,13 @@ msgstr "" "--nodeps kan kun angives ved opbygning, genopbygning, genoversættelse, " "installation, sletning og verifikation" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test kan kun angives ved installation, sletning og opbygning" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -355,106 +355,107 @@ msgstr "" "--root (-r) kan kun angives ved installation, sletning, forespørgsel og " "genopbygning af databasen" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "parameteren til --root (-r) skal starte med et /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "ingen filer at underskrive\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "kan ikke tilgå filen %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp ikke fundet: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Indtast adgangskode: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Adgangskode ikke godkendt\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Adgangskode godkendt.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Ugyldig angivelse af %%_signature i makrofil.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign kan kun bruges ved pakkeopbygning" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "eksekvering mislykkedes\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "ingen pakkefiler angivet til genopbygning" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "ingen spec-fil angivet til opbygning" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "ingen tar-arkiver angivet til opbygning" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "ingen pakker angivet ved installation" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "ingen pakker angivet ved installation" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "ingen parametre angivet ved forespørgsel" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "ingen parametre angivet ved verifikation" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "uventede parametre til --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "ingen parametre angivet ved forespørgsel" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Kunne ikke åbne midlertidig fil.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "Udfører(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Udførelse af %s mislykkedes (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "Fejl-afslutningsstatus fra %s (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -509,184 +510,184 @@ msgstr "- underst msgid "&& and || not suported for strings\n" msgstr "&& og || understøttes ikke for strenge\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "syntaksfejl i udtryk\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK-fejl: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Manglende '(' i %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Manglende ')' i %s %s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ugyldigt %s-symbol: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Manglende '(' i %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Ikke-mellemrum efterfølger %s(): %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Ugyldig syntaks: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Ugyldig tilstandsangivelse: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Ugyldig dirmode-spec: %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, 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:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Dobbelt locale %.*s i %%lang(%s)\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Træfningsgrænse for %%docdir\n" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "To filer på én linie: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Fil skal begynde med \"/\": %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Fil angivet to gange: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolsk lænke peger på BuildRoot: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Fil passer ikke til præfiks (%s): %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Fil ikke fundet: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Ugyldig ejer/gruppe: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Fil %4d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Fil kræver foranstillet \"/\": %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "linie %d: Filnavn ikke tilladt: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "Fil ikke fundet med glob: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Kunne ikke åbne '%%files'-fil %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "linie: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Kunne ikke udføre %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Kunne ikke fraspalte ny proces til %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s mislykkedes\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "kunne ikke skrive alle data til %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Finder %s: (benytter %s)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "Kunne ikke finde %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Gennemløber filer: %s-%s-%s\n" @@ -717,161 +718,161 @@ msgstr "getGnameS: for mange gid'er\n" msgid "getGidS: too many gid's\n" msgstr "getGnameS: for mange gid'er\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Kunne ikke kanonisere værtsnavn: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "arkivoprettelse mislykkedes ved fil %s: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy-skrivning mislykkedes: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy-læsning mislykkedes: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Kunne ikke åbne 'PreIn'-fil: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Kunne ikke åbne 'PreUn'-fil: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Kunne ikke åbne 'PostIn'-fil: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Kunne ikke åbne 'PostUn'-fil: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Kunne ikke åbne 'VerifyScript'-fil: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Kunne ikke åbne skriptfilen Trigger: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: åbn %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: læs %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fread mislykkedes: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s er ikke nogen RPM-pakke\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: læser hoved fra %s\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Kunne ikke læse hoved fra %s: %s\n" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Kunne ikke skrive hoved til %s: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "Ugyldige CSA-data\n" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Kunne ikke skrive hoved til %s: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Genererer signatur: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Kunne ikke læse hoved fra %s: %s\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "Kunne ikke åbne %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Kunne ikke åbne sigtarget %s: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Kunne ikke læse hoved fra %s: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Kunne ikke skrive hoved til %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Kunne ikke læse pakkeindhold fra %s: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "kan ikke oprette %s: %s\n" @@ -946,123 +947,123 @@ msgstr "linie %d: Fejl ved tolkning af %%files: %s\n" msgid "line %d: Second %%files list\n" msgstr "linie %d: Anden '%%files'-liste\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "Arkitekturen er ekskluderet: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "Arkitekturen er ikke inkluderet: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "OS er ekskluderet: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "OS is ikke inkluderet: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "'%s'-felt skal være tilstede i pakke : %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Flere '%s'-indgange i pakke: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "Kunne ikke åbne ikon %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "Kunne ikke læse ikon %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "Ukendt ikontype: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "linie %d: Ugyldigt tilvalg %s: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "linie %d: Forkert udformet mærke: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "linie %d: Tomt mærke: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linie %d: Ugyldigt tegn '-' i %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot kan ikke være \"/\": %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "linie %d: Præfikser kan ikke ende på \"/\": %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "linie %d: Docdir skal starte med '/': %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "linie %d: Epoch/Serial-felter skal være et nummer: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "linie %d: Ugyldig %s: angivere: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "linie %d: Ugyldigt 'BuildArchitecture'-format: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Intern fejl: Falsk mærke %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "Ugyldig pakkeangivelse: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "Pakken eksisterer allerede: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "linie %d: Ukendt mærke: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "Spec-fil kan ikke bruge BuildRoot\n" @@ -1101,41 +1102,41 @@ msgstr "linie %d: Ugyldigt parameter til %%setup %c: %s\n" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "linie %d: Ugyldigt '%%setup'-tilvalg %s: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "linie %d: Kræver parameter til %%patch -b: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "linie %d: Kræver parameter til %%patch -z: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "linie %d: Kræver parameter til %%patch -p: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "linie %d: Ugyldigt parameter til %%patch -p: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "For mange lapper (patches)!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "linie %d: Ugyldigt parameter til %%patch: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "linie %d: anden %%prep\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1143,17 +1144,17 @@ msgstr "" "linie %d: Afhængigheds-symbol skal starte med alfanumerisk, '_' eller '/': %" "s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "linie %d: Filnavn ikke tilladt: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "linie %d: Filnavn med version ikke tilladt: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "linie %d: Version kræves %s\n" @@ -1178,50 +1179,50 @@ msgstr "linie %d: skriptprogram skal starte med '/': %s\n" msgid "line %d: Second %s\n" msgstr "linie %d: Anden %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "linie %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" "Kunne ikke åbne %s: %s\n" "\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "Ikke-lukket %%if\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean returnerer %d\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Fik et %%else uden et %%if\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Fik et %%endif uden et %%if\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "forkert udført '%%include'-kommando\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Ingen arkitekturer, der kan opbygges\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "Pakke har ingen %%description: %s\n" @@ -1379,60 +1380,60 @@ msgstr "gennemtving m msgid "lookup i18N strings in specfile catalog" msgstr "slå i18N-strenge op i spec-fil katalog" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linie %d: Ugyldigt tal: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linie %d: Ugyldigt 'no%s'-tal: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linie %d: Ugyldigt %s-tal: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(fejl 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Ugyldigt magisk tal" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Ugyldigt/ulæseligt hoved" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Hovedstørrelse er for stor" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Ukendt filtype" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "Manglende hård lænke" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "MD5-sum stemmer ikke" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Intern fejl" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " mislykkedes - " @@ -1441,253 +1442,254 @@ msgstr " mislykkedes - " msgid "package %s was already added, replacing with %s\n" msgstr "pakken %s er allerede installeret" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s JA (rpmrc tilfører)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s JA (rpmlib tilfører)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "ugyldig db-fil %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s JA (db tilfører)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "ingen pakker\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "========== gemmer tsort-relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== kun efterfølgere (præsentationsrækkefølge)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "LØKKE:\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== fortsætter tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(ikke et tal)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(ikke et tal)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(ikke et tal)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() returnerede ingen størrelse: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() returnerede ingen monteringspunkter: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "kunne ikke finde %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "kunne ikke åbne %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "fil %s er på en ukendt enhed\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linie %d: %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s gemt som %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "fjernelse (rmdir) af %s mislykkedes: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "åbning af %s mislykkedes %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s oprettet som %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "fejl ved oprettelse af midlertidig fil %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead mislykkedes\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "indpakningsversion 1 understøttes ikke af denne udgave af RPM\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" "kun indpakninger med hovedversion <= 4 understøttes af denne udgave af RPM\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature mislykkedes\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ingen tilgængelig signatur\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead mislykkedes\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Fread mislykkedes: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "læs i stedet for standard makrofil(er)" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "udeladte stier skal begynde med et /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "omrokeringer skal starte med et /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "omrokeringer skal indeholde et =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "i omrokeringer skal = efterfølges af /" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "installér alle filer -- også konfigurationsfiler, der ellers skulle " "overspringes" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1695,151 +1697,151 @@ msgstr "" "fjern alle pakker, som passer med (normalt ville det medføre en " "fejl, hvis angav flere pakker)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "udfør ingen pakkespecifikke skripter" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "omdirigér filer i ikke-omdirigérbar pakke" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "slet (afinstallér) pakke" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "installér ikke dokumentation" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "overspring filer med foranstillet komponent " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "forkortelse for --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "opgradér pakke, hvis den allerede er installeret" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "udlæs #'er efterhånden som pakken installeres (virker sammen med -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "tjek ikke pakkens arkitektur" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "tjek ikke pakkens operativsystem" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "tjek ikke om der er diskplads, før der installeres" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "installér dokumentation" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "installér pakke" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "opdatér databasen, men rør ikke filsystemet" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "undlad at tjekke pakkers afhængighedskrav" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" "ændr ikke pakkernes installationsrækkefølge for at opfylde afhængigheder" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "udfør ikke eventuelle skripter" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "udfør ikke eventuelle skripter" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "udfør ikke eventuelle skripter" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "udfør ikke eventuelle skripter" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "undlad at tjekke pakkers afhængighedskrav" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "verificér pakkesignatur" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "udfør ikke småskripter, der måtte udløses af denne pakke" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "udfør ingen pakkespecifikke skripter" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "udfør ingen installations-småskripter" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "udfør ingen installations-småskripter" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "udfør ingen installations-småskripter" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1847,468 +1849,475 @@ msgstr "" "opgradér til en ældre version af pakken (--force gør ikke dette automatisk " "ved opgraderinger)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "vis procenter efterhånden som pakken installeres" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "omdirigér pakken til , hvis omdirigérbar" -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "omdirigér filer fra til " -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "intallér selvom pakken erstatter installerede filer" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "geninstallér hvis pakken allerede er installeret" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "installér ikke, men fortæl om det ville lykkes eller ej" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "opgradér pakke" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "forespørg/verificér alle pakker" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "rpm verifikationstilstand" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "forespørg/verificér pakke(r), der ejer filen" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "forespørg/verificér pakke(r), der ejer filen" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "forespørg/verificér pakke(r) i gruppen" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "forespørg/verificér pakke(r), der ejer filen" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "forespørg/verificér en pakkefil (dvs. en binær *.rpm-fil)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "forespørg/verificér pakke(r), der ejer filen" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "rpm forespørgselstilstand" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "forespørg/verificér pakke(r), der ejer filen" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "vis kendte forespørgselsmærker" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "forespørg en spec-fil" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "forespørg/verificér pakke(r) i gruppen" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "forespørg pakke(r), der udløses af pakken" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "rpm verifikationstilstand" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "forespørg/verificér pakke(r), der stiller et krav" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "forespørg/verificér pakke(r), der tilfredsstiller et krav" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "vis alle konfigurationsfiler" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "vis alle dokumentationsfiler" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "vis grundlæggende filinformation" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "vis liste over filerne i pakken" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: readLead mislykkedes\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "brug følgende forespørgselsformat" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "erstat i18n-sektioner i spec-fil" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "vis filernes status" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "giv en detaljeret filliste" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "undlad at tjekke pakkers afhængighedskrav" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "udfør ikke eventuelt %verifyscript" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "verificér ikke filerne i pakke" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "underskriv en pakke (slet nuværende signatur)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "verificér pakkesignatur" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "underskriv en pakke (slet nuværende signatur)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "generér PGP/GPG-signatur" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Datatype %d understøttes ikke\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "kan ikke oprette %s: %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "kunne ikke skrive til %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "kildepakke forventet, binær fundet\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "kildepakke indeholder ingen .spec-fil\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "kører postinstallations-skript (hvis det findes)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "pakke: %s-%s-%s filer test = %d\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "bruger %s eksisterer ikke - bruger root\n" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "gruppe %s eksisterer ikke - bruger root\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "udpakning af arkiv mislykkedes%s%s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " for fil " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "kunne ikke åbne %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s mislykkedes\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "ugyldigt format: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(indeholder ingen filer)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normal " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "erstattet " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "ej installeret" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "ej delt " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(ingen status)" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(ukendt %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(ingen status)" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "pakke har hverken filejerskabs- eller id-lister\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "pakke har hverken filejerskabs- eller id-lister\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "kunne ikke forespørge %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "åbning af %s mislykkedes %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "forespørgsel af %s mislykkedes\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "pakke med gammelt kildeformat kan ikke forespørges\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "ingen pakker udløser %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "gruppe %s indeholder ingen pakker\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "ingen pakker udløser %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Kunne ikke læse %s: %s.\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ingen pakker udløser %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "ingen pakker kræver %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "ingen pakker tilfører %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tilhører ingen pakke\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldigt pakkenummer: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "pakkens post-nummer: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "post %d kunne ikke læses\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "pakken %s er ikke installeret\n" @@ -2436,36 +2445,36 @@ 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/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "========== gemmer omrokeringer\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ekskluderer %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omrokerer %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ekskluderer multilib-sti %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "ekskluderer %s %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "omrokerer %s til %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "omrokerer kataloget %s til %s\n" @@ -2559,7 +2568,7 @@ msgstr "Installerer %s\n" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "læsning mislykkedes: %s (%d)\n" @@ -2805,117 +2814,117 @@ msgstr "Gammel PGP-signatur\n" 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:248 +#: lib/signature.c:250 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signaturstørrelse: %d\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunne ikke udføre %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "pgp fejlede\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "pgp kunne ikke skrive signatur\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP-signaturstørrelse: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "kunne ikke læse signaturen\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fik %d byte af PGP-signatur\n" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "gpg fejlede\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "gpg kunne ikke skrive signaturen\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstørrelse: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Hovedstørrelse er for stor" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "verificér ikke filerne i pakke" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "overspring eventuelle MD5-signaturer" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Ingen signatur\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Signaturfyld : %d\n" @@ -2926,17 +2935,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s oversprunget grundet manglende ok-flag\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer kataloget %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "manglende %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: " @@ -2999,99 +3008,99 @@ msgstr "delt" msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, fuzzy, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "ukendt db-tilvalg: \"%s\" ignoreret\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s har ugyldig talværdi, overspringes\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s har for stor eller lille 'long'-værdi, overspringes\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s har for stor eller lille heltalsværdi, overspringes\n" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE-antal skal være 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "manglende { efter %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "manglende } efter %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "tomt mærkeformat" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "tomt mærkenavn" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "ukendt mærke" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "] forventet ved slutningen af tabel" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "uventet ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "uventet }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "? forventet i udtryk" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "{ forventet efter ? i udtryk" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "} forventet i udtryk" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr ": forventet efter ?-underudtryk" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "{ forventet efter : i udtryk" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "| forventet ved slutningen af udtryk" @@ -3114,259 +3123,259 @@ msgstr "" "generér hoveder, der er kompatible med (gamle) rpm[23]-indpakningsversioner" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: ukendt mærkenavn: \"%s\" ignoreret\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan ikke åbne '%s'-indeks ved brug af db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "kan ikke åbne '%s'-indeks\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "der er ikke sat nogen dbpath\n" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan ikke læse hoved ved 0x%x\n" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "fjerner \"%s\" fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "fjerne %d indgange fra %s-indekset.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "fejl(%d) ved fjernelse af post %s fra %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fejl(%d) under allokering af ny pakkeinstans\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" "tilføjer \"%s\" til '%s'-indekset.\n" "\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "tilføjer %d indgange til '%s'-indekset.\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fejl(%d) ved gemning af post %s i %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "fjerner %s efter vellykket genopbygning af db3.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "der ikke sat nogen dbpath" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "genopbygger database %s over i %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "den midlertidige database %s eksisterer allerede\n" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" "opretter kataloget %s\n" "\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "opretter kataloget %s: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "åbner gammel database med dbapi %d\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "åbner ny database med dbapi %d\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunne ikke genopbygge database: original-databasen beholdes\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "kunne ikke erstatte gammel database med ny database!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "erstat filer i %s med filer fra %s for at genoprette" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "fjerner kataloget %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunne ikke fjerne katalog %s: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== aktiv %d tom %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(tom)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(tom)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "Makroen %%%s har et uafsluttet indhold (body)\n" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "Makroen %%%s har et ugyldig navn (%%define)\n" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "Makroen %%%s har uafsluttede parametre\n" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "Makroen %%%s har intet indhold\n" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "Makroen %%%s kunne ikke udfoldes\n" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "Makroen %%%s har ugyldigt navn (%%undefine)\n" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "Makro %%%s (%s) blev ikke brugt under niveau %d\n" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Ukendt tilvalg %c i %s(%s)\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Rekursionsdybde(%d) overskrider maks(%d)\n" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "Uafsluttet %c: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Et %% efterfølges af en makro, der ikke kan tolkes\n" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "Makroen %%%.*s blev ikke fundet, overspringer\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "Overløb i målbuffer\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "Fil %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Filen %s er mindre end %u byte\n" @@ -3423,27 +3432,27 @@ msgstr "Afbryder programmet" msgid "Unknown or unexpected error" msgstr "Ukendt eller uventet fejl" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "logger på %s som %s, adgangskode %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(ingen fejl)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "fatal fejl: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "fejl: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "advarsel: " @@ -3477,12 +3486,12 @@ msgstr "Adgangskode for %s@%s: " msgid "error: %sport must be a number\n" msgstr "Fejl: %sport skal være et tal\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "url-port skal være et tal\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "kunne ikke oprette %s: %s\n" diff --git a/po/de.po b/po/de.po index ed8f29e..a258732 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -57,47 +57,47 @@ msgid "Unable to open spec file %s: %s\n" msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." # , c-format -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format #. Give up -#: build.c:171 +#: build.c:173 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build.c:199 +#: build.c:201 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build.c:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s scheint kein RPM-Paket zu sein\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "Fehler beim Suchen nach Paket %s\n" @@ -116,48 +116,48 @@ msgstr "Fehler beim Suchen nach Paket %s\n" msgid "cannot re-open payload: %s\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "Die benutzte RPM-Version anzeigen" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "Die benutzte RPM-Version anzeigen" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "Standard-Ausgabe nach umleiten" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr " als Stammverzeichnis benutzen" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -173,23 +173,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -223,13 +223,13 @@ msgstr "" # , c-format #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM Version %s\n" @@ -249,132 +249,132 @@ msgstr "Dies darf unter den Bedingungen der msgid "Usage: %s {--help}\n" msgstr "Benutzung: rpm {--help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Benutzen Sie stattdessen -e oder --erase\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "Es darf nur ein Hauptmodus angegeben werden" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "Unerwartete Quelle der Anfrage" -#: rpmqv.c:736 +#: rpmqv.c:738 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:742 +#: rpmqv.c:744 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "nur die Installation und Aktualisierung darf erzwungen werden" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "Dateien können nur während der Paketinstallation verschoben werden" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden" -#: rpmqv.c:750 +#: rpmqv.c:752 #, 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "Argumente zu --prefix müssen mit einem / beginnen" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:797 +#: rpmqv.c:799 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles darf nur während der Paketinstallation angegeben werden" -#: rpmqv.c:810 +#: rpmqv.c:812 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:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, 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:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -417,112 +417,113 @@ msgstr "" "--root (-r) darf nur während der Paketinstallation, -deinstallation, -" "anfrage und Datenbankneuerstellungen angegeben werden" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "Argumente zu --root (-r) müssen mit einem / beginnen" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmqv.c:894 +#: rpmqv.c:896 #, fuzzy msgid "pgp not found: " msgstr "Datei auf dem Server nicht gefunden" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Das Passwort ist richtig.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign darf nur während der Paketerstellung benutzt werden" -#: rpmqv.c:934 +#: rpmqv.c:936 #, fuzzy msgid "exec failed\n" msgstr "%s: Öffnen fehlgeschlagen\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "Es wurde kein spec-Datei für die Erstellung angegeben" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "Es wurde keine tar-Datei für die Erstellung angegeben" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "Es wurden keine Pakete für die Installation angegeben" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "Es wurden keine Pakete für die Installation angegeben" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "Es wurden keine Argumente für die Anfrage angegeben" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "Es wurden keine Argumente für die Überprüfung angegeben" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "Unerwartete Argumente zu --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "Es wurden keine Argumente für die Anfrage angegeben" # , c-format -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s." # , c-format -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "Hole %s heraus\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" # , c-format -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -578,197 +579,197 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "? im Ausdruck erwartet" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "fehlende { nach %{" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "fehlender ':' bei %s:%d" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "fehlende { nach %{" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" # , c-format -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Lesen von %s fehlgeschlagen: %s." # , c-format -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" # , c-format #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" # , c-format -#: build/files.c:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" # , c-format -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Datei auf dem Server nicht gefunden" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" # , c-format -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/files.c:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Datei auf dem Server nicht gefunden" -#: build/files.c:1847 +#: build/files.c:1849 #, 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:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Konnte pgp nicht durchführen" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "pgp fehlgeschlagen" # , c-format -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "anlegen von %s fehlgeschlagen\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" # , c-format -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "anlegen von %s fehlgeschlagen\n" # , c-format -#: build/files.c:2726 +#: build/files.c:2728 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -797,176 +798,176 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" # , c-format -#: build/pack.c:88 +#: build/pack.c:90 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "lesen fehlgeschlagen: %s (%d)" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "lesen fehlgeschlagen: %s (%d)" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Fehler: kann Datei %s nicht öffnen\n" -#: build/pack.c:267 +#: build/pack.c:269 #, 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:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/pack.c:306 +#: build/pack.c:308 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: build/pack.c:343 +#: build/pack.c:345 #, 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:352 +#: build/pack.c:354 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "Fehler beim Eintrag %s von %s" # , c-format -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" # , c-format -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:568 +#: build/pack.c:570 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "PGP-Signatur generieren" # , c-format -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -1044,129 +1045,129 @@ msgstr " msgid "line %d: Second %%files list\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" # , c-format -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "Hole %s heraus\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "%s: Öffnen fehlgeschlagen\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "\"%s\" bezeichnet mehrere Pakete\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" # , c-format -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "Nicht möglich %s zu schreiben" # , c-format -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "(unbekannter Typ)" # , c-format -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "ungültige Paket-Nummer: %s\n" # , c-format #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "fehlende Architektur für %s bei %s:%d" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Fataler Fehler: " -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr " Optionen der Paketauswahl:" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "die temporäre Datenbank %s existiert schon" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1210,62 +1211,62 @@ msgid "line %d: Bad %%setup option %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" # , c-format -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" # , c-format -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" @@ -1293,49 +1294,49 @@ msgid "line %d: Second %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Paket-Architektur nicht überprüfen" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" @@ -1508,62 +1509,62 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "ungültige Paket-Nummer: %s\n" -#: build/spec.c:305 +#: build/spec.c:307 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "Fehler: " -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 #, fuzzy msgid "Unknown file type" msgstr "(unbekannter Typ)" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "fehlender ':' bei %s:%d" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 #, fuzzy msgid "Internal error" msgstr "Fataler Fehler: " -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 #, fuzzy msgid " failed - " msgstr "pgp fehlgeschlagen" @@ -1573,260 +1574,261 @@ msgstr "pgp fehlgeschlagen" msgid "package %s was already added, replacing with %s\n" msgstr "Paket %s ist nicht installiert\n" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "die Datei »%s« gehört zu keinem Paket\n" # , c-format -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "Anfrage an alle Pakete" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" # FIXME -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(keine Zahl)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(keine Zahl)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(keine Zahl)" # , c-format -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "anlegen von %s fehlgeschlagen\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" # , c-format -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: »rpmReadSignature« fehlgeschlagen\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Keine Signatur verfügbar\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 #, fuzzy msgid "exclude paths must begin with a /" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "Verschiebungen müssen mit einem »/« beginnen" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "Verschiebungen müssen ein »=« beinhalten" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "bei Verschiebungen muss ein »/« dem »=« folgen" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "alle Dateien installieren, auch die config-Dateien, die sonst übergangen " "würden" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1834,153 +1836,153 @@ msgstr "" "Alle Pakete entfernen, die mit übereinstimmen (normalerweise wird " "ein Fehler angezeigt, wenn mehrere Pakete bezeichnet)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "Keine paketspezifischen Skripte ausführen" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "Paket %s ist nicht installiert\n" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "Paket löschen (deinstallieren)" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "Anfrage an alle Pakete" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "Dokumentation nicht installieren" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "Abkürzung für --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "Paket %s ist nicht installiert\n" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -b " -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "Paket-Architektur nicht überprüfen" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "Paket-Betriebssystem nicht überprüfen" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "Dokumentation installieren" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "Paket installieren" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "Dateiabhängigkeiten nicht überprüfen" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "Keine Stufen ausführen" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "Keine Stufen ausführen" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "Keine Stufen ausführen" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "Keine Stufen ausführen" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "Dateiabhängigkeiten nicht überprüfen" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "Paketsignatur überprüfen" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "Keine paketspezifischen Skripte ausführen" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "Keine Installations-Skripte ausführen" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "Keine Installations-Skripte ausführen" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "Keine Installations-Skripte ausführen" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1988,494 +1990,501 @@ msgstr "" "Aktualisierung auf eine alte Version des Pakets (--force macht das bei " "Aktualisierungen automatisch)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "Prozentangabe bei der Paketinstallation ausgeben" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis " -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "verschiebe Dateien von nach " -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr "verschiebe Dateien von nach " -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "Neuinstallation, wenn das Paket schon vorhanden ist" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "Paket installieren" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "Anfrage an alle Pakete" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "Anfrage-Modus" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "Paket hat keinen Namen" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "Anfrage an alle Pakete" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "Anfrage-Modus" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 #, fuzzy msgid "query a spec file" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "Paket hat keinen Namen" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "Anfrage-Modus" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "Anfrage nach Paketen, die die Fähigkeit benötigen" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "Anfrage nach Paketen, die die Fähigkeit bereitstellen" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 #, fuzzy msgid "list all configuration files" msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "Dokumentation installieren" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 #, fuzzy msgid "dump basic file information" msgstr "Paketinformationen anzeigen" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 #, fuzzy msgid "list files in package" msgstr "Paket installieren" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 #, fuzzy msgid "use the following query format" msgstr "Unerwartete Quelle der Anfrage" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 #, fuzzy msgid "display a verbose file listing" msgstr "Dateiliste des Pakets anzeigen" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "Paket installieren" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "Paket installieren" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "Paket installieren" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "Paket installieren" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "Paket installieren" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "Paket installieren" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 #, fuzzy msgid "don't verify files in package" msgstr "Paket installieren" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "Dateiabhängigkeiten nicht überprüfen" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "Keine Stufen ausführen" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "Paket installieren" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "Paket installieren" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "Paketsignatur überprüfen" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "PGP-Signatur generieren" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "Anfrage nach Paket, das die Datei besitzt" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "Keine Stufen ausführen" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp fehlgeschlagen" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "Fehler beim Format %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(beinhaltet keine Dateien)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 #, fuzzy msgid "not installed " msgstr "Paket %s ist nicht installiert\n" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(unbekannter Typ)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "Paket hat keinen Namen" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "Paket hat keinen Namen" -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "Anfrage an alle Pakete" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "kein Paket triggert %s\n" # , c-format -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Lesen von %s fehlgeschlagen: %s." -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "kein Paket verlangt %s\n" # oder besser: ... listet %s auf? -ke- -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "kein Paket stellt %s bereit\n" # , c-format -#: lib/query.c:927 +#: lib/query.c:857 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/query.c:931 +#: lib/query.c:861 #, 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:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "Eintrag %d konnte nicht gelesen werden\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" @@ -2602,39 +2611,39 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" # , c-format -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Hole %s heraus\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "kann Datei %s nicht öffnen: " # , c-format -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Hole %s heraus\n" # , c-format -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Hole %s heraus\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" @@ -2731,7 +2740,7 @@ msgstr "Installiere %s\n" msgid "rollback %d packages to %s" msgstr "Es wurden keine Pakete für die Deinstallation angegeben" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "lesen fehlgeschlagen: %s (%d)" @@ -2984,121 +2993,121 @@ msgstr "PGP-Signatur generieren" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Alte Signatur (nur intern)! Wie bist du daran gekommen!?" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "pgp fehlgeschlagen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "nicht möglich, die Signatur zu lesen" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "pgp fehlgeschlagen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "Paket installieren" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "alle MD5-Signaturen überspringen" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Keine Signatur verfügbar\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -3109,17 +3118,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "fehlende { nach %{" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: " @@ -3182,102 +3191,102 @@ msgstr "geteilt" msgid "locked db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "fehlende { nach %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "fehlende } nach %{" # »Tag« übersetzen??? -ke- #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "leeres »Tag«-Format" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "leerer »Tag«-Name" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "unbekannter »Tag«" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "] am Ende des Arrays erwartet" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "unerwartete ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "unerwartete }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "? im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 #, fuzzy msgid "{ expected after ? in expression" msgstr "{ nach ? im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "} im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr ": nach ? Unterausdruck erwartet" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 #, fuzzy msgid "{ expected after : in expression" msgstr "{ nach : im Ausdruck erwartet" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "| am Ende des Ausdrucks erwartet" @@ -3300,263 +3309,263 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "Fehler: kann %s nicht öffnen\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "Fehler beim Eintrag %s von %s" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "Fehler beim Eintrag %s von %s" # FIXME -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "Fehler beim Eintrag %s von %s" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" # FIXME -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # FIXME -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "Fehler bei Schreiben des Eintrags %s nach %s" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "die temporäre Datenbank %s existiert schon" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "(unbekannter Typ)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "kann Datei %s nicht öffnen: " -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "Paket %s in %s nicht gefunden" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" # , c-format #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3622,28 +3631,28 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "FTP Unbekannter oder nicht erwarteter Fehler" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "Fehler: " #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "Fataler Fehler: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "Fehler: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "Warnung: " @@ -3677,14 +3686,14 @@ msgstr "Passworf f msgid "error: %sport must be a number\n" msgstr "Fehler: der FTP-Port muss eine Zahl sein\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 #, fuzzy msgid "url port must be a number\n" msgstr "Fehler: der FTP-Port muss eine Zahl sein\n" # , c-format #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "anlegen von %s fehlgeschlagen\n" diff --git a/po/en_RN.po b/po/en_RN.po index 36f6580..afc7fa0 100644 --- a/po/en_RN.po +++ b/po/en_RN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/es.po b/po/es.po index 36f6580..afc7fa0 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/eu_ES.po b/po/eu_ES.po index 36f6580..afc7fa0 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 6b662dc..f2799ad 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -17,44 +17,44 @@ msgstr "puuttuvat riippuvuudet:\n" msgid "Unable to open spec file %s: %s\n" msgstr "En voi avata %s luettavaksi: %s." -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "%s:n avaus epäonnistui\n" #. Give up -#: build.c:171 +#: build.c:173 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "En voi lukea %s: %s." -#: build.c:199 +#: build.c:201 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "En voi lukea %s: %s." -#: build.c:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "en voinut avata %s: %s" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s ei vaikuta RPM-paketilta\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "virhe etsittäessä pakettia %s\n" @@ -73,48 +73,48 @@ msgstr "virhe etsitt msgid "cannot re-open payload: %s\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "tulosta käytetyn rpm:n versio" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "tulosta käytetyn rpm:n versio" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "lähetä vakiotuloste :lle" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "käytä ylimpänä hakemistona" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -130,23 +130,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -179,12 +179,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "en voinut avata %s: %s" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM versio %s\n" @@ -203,128 +203,128 @@ msgstr "T msgid "Usage: %s {--help}\n" msgstr "käyttö: rpm {--help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Käytä sen sijaan -e tai --erase .\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "vain yksi päämoodi voidaan määritellä" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla" -#: rpmqv.c:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "odottamaton kyselyn lähde" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa" -#: rpmqv.c:742 +#: rpmqv.c:744 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "vain asennus tai päivitys voidaan pakottaa" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "vain toinen --prefix tai --relocate voidaan antaa" -#: rpmqv.c:750 +#: rpmqv.c:752 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "--prefix parametrien pitää alkaa /-merkillä" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:797 +#: rpmqv.c:799 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa" -#: rpmqv.c:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, 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:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,109 +365,110 @@ msgstr "" "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, " "kyseltäessä ja tietokannan uudelleenluonnissa" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "parametrit --root (-r):lle alettava /-merkillä" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmqv.c:894 +#: rpmqv.c:896 #, fuzzy msgid "pgp not found: " msgstr "Tiedostoa ei löytynyt palvelimelta" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign: voidaan käyttää vain paketteja käännettäessä" -#: rpmqv.c:934 +#: rpmqv.c:936 #, fuzzy msgid "exec failed\n" msgstr "%s: avaus ei onnistunut\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "uudelleenkäännolle ei määritelty paketteja" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "käännökselle ei annettu määrittelytiedostoja" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "käännökselle ei määritelty tar-tiedostoja" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "asennukselle ei määritelty paketteja" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "asennukselle ei määritelty paketteja" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "kyselylle ei annettu parametrejä" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "tarkistukselle ei annettu parametrejä" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "--querytags: odottamattomia parametrejä" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "kyselylle ei annettu parametrejä" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "En voi avata %s luettavaksi: %s." -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "Haen: %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "en voinut avata %s: %s" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -523,185 +524,185 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "odotin '?'-merkkiä ilmauksessa" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "puuttuva '{' '%':n jälkeen" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "puuttuva ':', %s:%d" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "puuttuva '{' '%':n jälkeen" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "En voi lukea %s: %s." -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "En voi lukea %s: %s." -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "En voi lukea %s: %s." -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "en voinut avata %s: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "En voi lukea %s: %s." -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "En voi lukea %s: %s." -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Tiedostoa ei löytynyt palvelimelta" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "en voinut avata %s: %s" -#: build/files.c:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Tiedostoa ei löytynyt palvelimelta" -#: build/files.c:1847 +#: build/files.c:1849 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "en voinut avata %s: %s" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "pgp epäonnistui" -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "%s:n luonti epäonnistui\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "%s:n luonti epäonnistui\n" -#: build/files.c:2726 +#: build/files.c:2728 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "en voinut avata %s: %s" @@ -730,161 +731,161 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "en voinut avata %s: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "luku epäonnistui: %s (%d)" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "luku epäonnistui: %s (%d)" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:267 +#: build/pack.c:269 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "virhe: tiedostoa %s ei voi avata\n" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/pack.c:306 +#: build/pack.c:308 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "En voi lukea %s: %s." -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: build/pack.c:343 +#: build/pack.c:345 #, fuzzy, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "virhe: %s ei vaikuta RPM paketilta\n" -#: build/pack.c:352 +#: build/pack.c:354 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:568 +#: build/pack.c:570 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "generoi PGP-allekirjoitus" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -959,123 +960,123 @@ msgstr "en voinut avata %s: %s" msgid "line %d: Second %%files list\n" msgstr "virheellinen paketin numero: %s\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "Haen: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "%s: avaus ei onnistunut\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "\"%s\" määrittää useita paketteja\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "(tuntematon tyyppi)" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "virheellinen paketin numero: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "%s:n puuttuva arkkitehtuuri %s:%d" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "vakava virhe: " -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr " Paketin määrittelyparametrit:" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1114,57 +1115,57 @@ msgstr "en voinut avata %s: %s" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "siirtojen pitää alkaa /-merkillä" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "en voinut avata %s: %s" @@ -1189,48 +1190,48 @@ msgstr "siirtojen pit msgid "line %d: Second %s\n" msgstr "en voinut avata %s: %s" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "en voinut avata %s: %s" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "älä tarkista paketin arkkitehtuuria" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "paketti %s ei ole %s:ssä" @@ -1400,62 +1401,62 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "virheellinen paketin numero: %s\n" -#: build/spec.c:305 +#: build/spec.c:307 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "virhe: " -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 #, fuzzy msgid "Unknown file type" msgstr "(tuntematon tyyppi)" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "puuttuva ':', %s:%d" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 #, fuzzy msgid "Internal error" msgstr "vakava virhe: " -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 #, fuzzy msgid " failed - " msgstr "pgp epäonnistui" @@ -1465,253 +1466,254 @@ msgstr "pgp ep msgid "package %s was already added, replacing with %s\n" msgstr "paketti %s ei ole asennettu\n" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "en voinut avata %s: %s" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "kysele kaikki paketit" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(ei ole luku)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(ei ole luku)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(ei ole luku)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "%s:n luonti epäonnistui\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "en voinut avata %s: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead epäonnistui\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature epäonnistui\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead epäonnistui\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 #, fuzzy msgid "exclude paths must begin with a /" msgstr "siirtojen pitää alkaa /-merkillä" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "siirtojen pitää alkaa /-merkillä" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "siirroissa pitää olla =-merkki" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "siirroissa pitää olla / =-merkin jälkeen" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1719,152 +1721,152 @@ msgstr "" "poista kaikki paketit, joiden nimeä vastaa (tavallisesti, jos " " määrittää useita paketteja, tulee virhe)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "älä aja mitään pakettikohtaisia skriptejä" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "paketti %s ei ole asennettu\n" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "poista paketti" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "kysele kaikki paketit" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "älä asenna dokumentointia" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "lyhenne parametreille --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "paketti %s ei ole asennettu\n" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -b " -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "älä tarkista paketin arkkitehtuuria" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "älä tarkista paketin käyttöjärjestelmää" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "asenna dokumentaatio" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "asenna paketti" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "älä tarkista paketin riippuvuuksia" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "älä suorita mitään vaiheita" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "älä suorita mitään vaiheita" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "älä suorita mitään vaiheita" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "älä suorita mitään vaiheita" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "älä tarkista paketin riippuvuuksia" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "tarkista paketin allekirjoitus" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "älä aja mitään pakettikohtaisia skriptejä" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "älä suorita asennusskriptejä" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "älä suorita asennusskriptejä" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "älä suorita asennusskriptejä" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1872,488 +1874,495 @@ msgstr "" "päivitä vanhempaan versioon (--force päivitettäessä tekee tämän " "automaattisesti)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "tulosta asennuksen eteneminen prosentteina" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "siirrä paketti hakemistoon , jos siirrettävissä" -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "siirrä tiedostot hakemistosta hakemistoon " -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr "siirrä tiedostot hakemistosta hakemistoon " -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "asenna uudelleen, jos paketti on jo asennettu" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "älä asenna, mutta kerro onnistuisiko se" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "asenna paketti" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "kysele kaikki paketit" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "kyselymoodi" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "paketilla ei ole nimeä" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "kysele kaikki paketit" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "kyselymoodi" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 #, fuzzy msgid "query a spec file" msgstr "%s:n kysely ei onnistunut\n" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "paketilla ei ole nimeä" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "kyselymoodi" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "kysele paketteja, jotka vaativat ominaisuutta" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "kysele paketteja, jotka tarjoavat ominaisuuden" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 #, fuzzy msgid "list all configuration files" msgstr "listaa vain konfigurointiedostot (josta seuraa -l)" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "asenna dokumentaatio" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 #, fuzzy msgid "dump basic file information" msgstr "näytä paketin tiedot" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 #, fuzzy msgid "list files in package" msgstr "asenna paketti" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: readLead epäonnistui\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 #, fuzzy msgid "use the following query format" msgstr "odottamaton kyselyn lähde" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 #, fuzzy msgid "display a verbose file listing" msgstr "näytä paketin tiedostolistaus" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "asenna paketti" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "asenna paketti" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "asenna paketti" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "asenna paketti" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "asenna paketti" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "asenna paketti" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 #, fuzzy msgid "don't verify files in package" msgstr "asenna paketti" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "älä tarkista paketin riippuvuuksia" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "älä suorita mitään vaiheita" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "asenna paketti" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "asenna paketti" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "tarkista paketin allekirjoitus" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "generoi PGP-allekirjoitus" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "kysy pakettia, jonka omistuksessa on" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "älä suorita mitään vaiheita" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "pgp epäonnistui" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "virhe formaatissa: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(ei tiedostoja)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 #, fuzzy msgid "not installed " msgstr "paketti %s ei ole asennettu\n" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(tuntematon tyyppi)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "paketilla ei ole nimeä" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paketilla ei ole nimeä" -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "virhe: en voi avata %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:723 +#: lib/query.c:653 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "kysele kaikki paketit" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "En voi lukea %s: %s." -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "mikään pakettie ei tarvitse %s:a\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "mikään paketti ei tarjoa %s:a\n" -#: lib/query.c:927 +#: lib/query.c:857 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "tietuetta %d ei voitu lukea\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" @@ -2479,36 +2488,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "paketti %s ei ole %s:ssä" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Haen: %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Haen: %s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Haen: %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" @@ -2604,7 +2613,7 @@ msgstr "Asennan: %s\n" msgid "rollback %d packages to %s" msgstr "poistolle ei määritelty paketteja" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "luku epäonnistui: %s (%d)" @@ -2850,121 +2859,121 @@ msgstr "generoi PGP-allekirjoitus" 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:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "pgp epäonnistui" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "en voinut lukea allekirjoitusta" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "pgp epäonnistui" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "asenna paketti" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ohita MD5-allekirjoitukset" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2975,17 +2984,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "puuttuva '{' '%':n jälkeen" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:" @@ -3048,101 +3057,101 @@ msgstr "jaettua" msgid "locked db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "puuttuva '{' '%':n jälkeen" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "puuttuva '{' '%{':n jälkeen" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "tyhjä nimiön formaatti" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "tyhjä nimiön nimi" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "tuntematon nimiö" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "']' puuttuu taulukkomäärittelyn lopusta" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "odottamaton ']'" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "odottamaton '}'" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "odotin '?'-merkkiä ilmauksessa" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 #, fuzzy msgid "{ expected after ? in expression" msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa " #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "odotin '}'-merkkiä ilmauksessa" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa " #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 #, fuzzy msgid "{ expected after : in expression" msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa " #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "odotin '}'-merkkiä ilmauksen lopussa" @@ -3165,256 +3174,256 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "virhe: en voi avata %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "virhe luettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "virhe etsittäessä pakettia %s\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "virhe talletettaessa tietuetta %s %s:ään" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "en voi lisätä tietuetta %d:stä" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "(tuntematon tyyppi)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "en voinut avata tiedostoa %s: " -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "paketti %s ei ole %s:ssä" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "en voinut avata %s: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3480,28 +3489,28 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "FTP:n tuntematon tai odottamaton virhe" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "virhe: " #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "vakava virhe: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "virhe: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "varoitus: " @@ -3535,13 +3544,13 @@ msgstr "%s@%s:n salasana: " msgid "error: %sport must be a number\n" msgstr "virhe: ftpport pitää olla luku\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 #, fuzzy msgid "url port must be a number\n" msgstr "virhe: ftpport pitää olla luku\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "%s:n luonti epäonnistui\n" diff --git a/po/fr.po b/po/fr.po index 255be8a..1cc1cfa 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,44 +24,44 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Unable to open spec file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "impossible d'ouvrir: %s\n" #. Give up -#: build.c:171 +#: build.c:173 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:199 +#: build.c:201 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "impossible d'ouvrir: %s\n" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -79,50 +79,50 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 #, fuzzy msgid "print the version of rpm being used" msgstr " --version\t\t- affiche la version de rpm utilise" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr " --version\t\t- affiche la version de rpm utilise" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 #, fuzzy msgid "use as the top level directory" msgstr " --root \t- utilise comme rpertoire racine" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -138,23 +138,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -187,12 +187,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -211,146 +211,146 @@ msgstr "Peut tre redistribu librement selon les termes de la GNU GPL" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Utilisez de prfrence -e ou --erase.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "source de requte inattendue" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "source de requte inattendue" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "source de requte inattendue" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "seules l'installation et la mise jour peuvent tre forces" -#: rpmqv.c:744 +#: rpmqv.c:746 #, 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:747 +#: rpmqv.c:749 #, fuzzy msgid "only one of --prefix or --relocate may be used" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:750 +#: rpmqv.c:752 #, 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:753 +#: rpmqv.c:755 #, 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:756 +#: rpmqv.c:758 #, fuzzy msgid "arguments to --prefix must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: rpmqv.c:759 +#: rpmqv.c:761 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:763 +#: rpmqv.c:765 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:768 +#: rpmqv.c:770 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:772 +#: rpmqv.c:774 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:776 +#: rpmqv.c:778 #, 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:780 +#: rpmqv.c:782 #, 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:784 +#: rpmqv.c:786 #, fuzzy msgid "only one of --excludedocs and --includedocs may be specified" msgstr "un seul mode majeur peut tre spcifi" -#: rpmqv.c:788 +#: rpmqv.c:790 #, 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:792 +#: rpmqv.c:794 #, 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:797 +#: rpmqv.c:799 #, 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:801 +#: rpmqv.c:803 #, 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:805 +#: rpmqv.c:807 #, 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:810 +#: rpmqv.c:812 #, 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:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, 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:829 +#: rpmqv.c:831 #, 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:834 +#: rpmqv.c:836 #, fuzzy msgid "" "--root (-r) may only be specified during installation, erasure, querying, " @@ -395,110 +395,111 @@ msgstr "" "--root (-r) ne peut tre spcifi que lors de l'installation, de la " "dsinstallation ou de l'interrogation d'un package" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 #, fuzzy msgid "pgp not found: " msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "La vrification du mot de passe a chou\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Mot de passe correct.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 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:934 +#: rpmqv.c:936 #, fuzzy msgid "exec failed\n" msgstr "La construction a chou.\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "aucun package n'a t spcifi pour la reconstruction" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "aucun package n'a t spcifi pour la construction" -#: rpmqv.c:1037 +#: rpmqv.c:1039 #, fuzzy msgid "no tar files given for build" msgstr "aucun package n'a t spcifi pour la construction" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "aucun argument n'a t fourni pour la requte" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "aucun argument n'a t fourni pour la vrification" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "aucun argument n'a t fourni pour la requte" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "impossible d'ouvrir: %s\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "La construction a chou.\n" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -550,184 +551,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: build/files.c:1847 +#: build/files.c:1849 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "La construction a chou.\n" -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "impossible d'ouvrir: %s\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -756,161 +757,161 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr " --sign - genre une signature PGP" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -985,123 +986,123 @@ msgstr "impossible d'ouvrir: %s\n" msgid "line %d: Second %%files list\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "impossible d'ouvrir: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr " Options de spcification de package:" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1140,57 +1141,57 @@ msgstr "impossible d'ouvrir: %s\n" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -1215,48 +1216,48 @@ msgstr "les arguments de --root (-r) doivent commencer par un /" msgid "line %d: Second %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "impossible d'ouvrir: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "%s ne peut tre construit sur cette architecture\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" @@ -1434,59 +1435,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "impossible d'ouvrir: %s\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 #, fuzzy msgid " failed - " msgstr "La construction a chou.\n" @@ -1496,404 +1497,405 @@ msgstr "La construction a chou.\n" msgid "package %s was already added, replacing with %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "impossible d'ouvrir: %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "impossible d'ouvrir: %s\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 #, fuzzy msgid "exclude paths must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 #, fuzzy msgid "relocations must begin with a /" msgstr "les arguments de --root (-r) doivent commencer par un /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 #, fuzzy msgid "short hand for --replacepkgs --replacefiles" msgstr " --force - raccourci pour --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -i \t- installe le package" -#: lib/poptI.c:147 +#: lib/poptI.c:146 #, fuzzy msgid "print hash marks as package installs (good with -v)" msgstr "" " --hash - affiche des '#' pendant l'installation du package " "(utile avec -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "" " -p + - interroge le package (non install) " -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "impossible d'ouvrir: %s\n" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "impossible d'ouvrir: %s\n" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 #, fuzzy msgid "" "upgrade to an old version of the package (--force on upgrades does this " @@ -1902,503 +1904,510 @@ msgstr "" " --oldpackage - mise jour par une ancienne version du package (--" "force" -#: lib/poptI.c:218 +#: lib/poptI.c:217 #, fuzzy msgid "print percentages as package installs" msgstr "" " --percent - affiche des '%' pendant l'installation du package" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 #, fuzzy msgid "install even if the package replaces installed files" msgstr "" " --replacefiles - installe mme si le package remplace des fichiers " "dj prsents" -#: lib/poptI.c:233 +#: lib/poptI.c:232 #, fuzzy msgid "reinstall if the package is already present" msgstr " --replacepkgs - rinstalle si le package est dj prsent" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 #, fuzzy msgid "don't install, but tell if it would work or not" msgstr "" " --test - n'installe pas, mais indique si ca fonctionnerait " "ou pas" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "" " -p + - interroge le package (non install) " -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 #, fuzzy msgid "query a spec file" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 #, fuzzy msgid "list all configuration files" msgstr "" " -c - donne uniquement la liste des fichiers de " "configuration (implique -l)" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "" " -d - donne uniquement la liste des fichiers de " "documentation (implique -l)" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 #, fuzzy msgid "dump basic file information" msgstr "" " -i - affiche les informations relatives un package" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 #, fuzzy msgid "list files in package" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "impossible d'ouvrir: %s\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 #, fuzzy msgid "use the following query format" msgstr "source de requte inattendue" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 #, fuzzy msgid "display a verbose file listing" msgstr " -l - affiche la liste des packages" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "" " -f + - interroge le package qui appartient " -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "impossible d'ouvrir: %s\n" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr " --sign - genre une signature PGP" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr " --sign - genre une signature PGP" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "" " -f + - interroge le package qui appartient " -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "La construction a chou.\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 #, fuzzy msgid "not installed " msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " -msgstr "" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "La construction a chou.\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "aucun package n'a t spcifi pour l'installation" @@ -2523,36 +2532,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2647,7 +2656,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "impossible d'ouvrir: %s\n" @@ -2891,119 +2900,119 @@ msgstr " --sign - genre une signature PGP" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "La construction a chou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "La construction a chou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr " --sign - genre une signature PGP" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -3014,17 +3023,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "impossible d'ouvrir: %s\n" @@ -3087,101 +3096,101 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 #, fuzzy msgid "unexpected ]" msgstr "source de requte inattendue" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 #, fuzzy msgid "unexpected }" msgstr "source de requte inattendue" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3204,255 +3213,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "aucun package n'a t spcifi pour l'installation" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3509,27 +3518,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3563,12 +3572,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "impossible d'ouvrir: %s\n" diff --git a/po/gl.po b/po/gl.po index d7cd94b..4650d7b 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -18,44 +18,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -73,47 +73,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -129,23 +129,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -178,12 +178,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -201,248 +201,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -494,184 +495,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -700,157 +701,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -925,123 +926,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1080,57 +1081,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1155,47 +1156,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1348,59 +1349,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1409,826 +1410,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2351,36 +2359,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2473,7 +2481,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2715,113 +2723,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2832,17 +2840,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2905,99 +2913,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3018,255 +3026,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3323,27 +3331,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3377,12 +3385,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/hu.po b/po/hu.po index 36f6580..afc7fa0 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/id.po b/po/id.po index 36f6580..afc7fa0 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/is.po b/po/is.po index 65e3593..04bf8e5 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -19,44 +19,44 @@ msgstr "gat ekki msgid "Unable to open spec file %s: %s\n" msgstr "Get ekki opnað spec skrána %s: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Gat ekki opnað pípu í tar: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Gat ekki lesið spec skrá frá %s\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Gat ekki endurnefnt %s sem %s: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "gat ekki skoðað %s: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "Skráin %s er ekki venjuleg skrá.\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Þýði fyrir markkerfi: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Þýði fyrir markkerfi %s\n" @@ -74,48 +74,48 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "prenta útgáfunúmer rpm sem verið er að nota" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "prenta útvíkkun fjölva +" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "senda frálag í " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -131,23 +131,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "sýna endanlega rpmrc og stillingar fjölva" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -180,12 +180,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM útgáfa %s\n" @@ -204,248 +204,249 @@ msgstr " msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Get ekki opnað tempi skrá.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Gat ekki keyrt %s (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -497,184 +498,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "vantar '(' í %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "vantar ')' í %s %s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ógilt %s tákn: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "vantar '(' í %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "Tvær skrár á einni línu: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Skráin er tvítekin: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Skráin fannst ekki: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Skrá %s: %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "Gat ekki opnað PreUn skrá: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "Skráin fannst ekki með 'glob': %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Gat ekki opnað %%files skrána %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "lína: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Gat ekki keyrt %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Gat ekki búið til undirferli (fork) %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s brást\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "gat ekki ritað öll gögn í %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "gat ekki fundið %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -703,161 +704,161 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "safnskráarsmíð brást á skrá %s: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "safnskráarsmíð brást: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Gat ekki opnað PreIn skrá: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Gat ekki opnað PreUn skrá: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Gat ekki opnað PostIn skrá: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Gat ekki opnað PostUn skrá: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Get ekki opnað VerifyScript skrá: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek brást: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Get ekki lesið haus úr %s: %s\n" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Gat ekki ritað haus í %s: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Gat ekki ritað haus í %s: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Get ekki lesið haus úr %s: %s\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "Get ekki ritað í pakka: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Get ekki opnað sigtarget %s: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Get ekki lesið haus úr %s: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Gat ekki ritað haus í %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Get ekki lesið innihald %s: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Get ekki ritað innihald í %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Skrifaði: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -932,123 +933,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "Get ekki opnað táknmynd %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "Gat ekki lesið táknmynd %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "Óþekkt tegund táknmyndar: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "lína %d: Tag tekur einungis eitt tákn: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "lína %d: Skemmt tag: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "lína %d: Tómt tag: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "lína %d: Ólöglegt tákn '-' í %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "lína %d: Epoch/Serial svæðið verður að innihalda tölu: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1087,57 +1088,57 @@ msgstr "l msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1162,47 +1163,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "lína %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "Get ekki opnað %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1356,59 +1357,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "Harðar tengingar vantar" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1417,838 +1418,845 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "uppfæra pakka" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() skilaði ekki stærð: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "gat ekki skoðað %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "gat ekki opnað %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s vistað sem %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir %s brást: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s gat ekki eytt %s: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s búið til sem %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: Fseek brást: %s\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "setja inn pakka" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "ekki skoða pakkaskilyrðin" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "ekki skoða pakkaskilyrðin" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "uppfæra pakka" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "fyrirspurn/yfirferð á pakkann sam á skrá" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "fyrirspurn/yfirferð á pakkann sam á skrá" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "fyrirspurn/yfirferð á pakkann sam á skrá" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "fyrirspurn/yfirferð á pakkann sam á skrá" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "fyrirspurn/yfirferð á pakkann sam á skrá" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "fyrirspurn/yfirferð á pakkann sam á skrá" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "fyrirspurn/yfirferð á pakkana sem hafa pakkaþarfir" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "fyrirspurn/yfirferð á pakkana sem uppfylla þarfir annara pakka" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "ekki yfirfara MD5 undirritun skráa" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "ekki yfirfara stærð skráa" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "ekki yfirfara symlink slóð skráa" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "ekki yfirfara eiganda skráa" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "ekki yfirfara hop skráa" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "ekki yfirfara heimildir skráa" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "ekki yfirfara skrárnar í pakkanum" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "ekki skoða pakkaskilyrðin" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "ekki yfirfara SHA1 undirritunina" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "ekki yfirfara MD5 undirritun skráa" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "búa til undirskrift" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "búa til undirskrift" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "gat ekki búið til %%%s %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "get ekki ritað í %%%s %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "pakkinn inniheldur enga .spec skrá\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "gat ekki opnað %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s brást\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "get ekki opnað pakka gagnagrunn í\n" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Get ekki lesið %s: %s.\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "get ekki opnað pakka gagnagrunn í\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2371,36 +2379,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "get ekki opnað pakka gagnagrunn í\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "lína %d: %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "%5d færa %s -> %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "%5d færa %s -> %s\n" @@ -2494,7 +2502,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2736,114 +2744,114 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Gat ekki keyrt %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "pgp brást\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "pgp gat ekki lesið undirskriftina\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "get ekki lesið undirskriftina\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "ggp brást\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "gpg get ekki lesið undirskriftina\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "ekki yfirfara SHA1 undirritunina" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2854,17 +2862,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "vantar %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: " @@ -2927,99 +2935,99 @@ msgstr "deildann" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3040,255 +3048,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "get ekki opnað %s index með db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "get ekki opnað %s index\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== virkt %d tómt %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(tómt)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(tómt)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Óþekkt viðfang %c í %s(%s)\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "Fjölvi %%%.*s fannst ekki. Sleppi\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "Skrá %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Skráin %s er minni en %u bæti\n" @@ -3345,27 +3353,27 @@ msgstr "Er a msgid "Unknown or unexpected error" msgstr "Óþekkt eða óvænt villa" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "tengist %s sem %s með aðgangsorði %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(engin villa)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "banvæn villa: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "villa: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "aðvörun: " @@ -3399,12 +3407,12 @@ msgstr "Lykilor msgid "error: %sport must be a number\n" msgstr "villa: %sport verður að vera tala\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "gátt slóðar verður að vera tala\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "gat ekki búið til %s: %s\n" diff --git a/po/it.po b/po/it.po index 36f6580..afc7fa0 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index a280b18..7a80160 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -24,44 +24,44 @@ msgstr " msgid "Unable to open spec file %s: %s\n" msgstr "spec ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar ¥Ñ¥¤¥×¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" #. Give up -#: build.c:171 +#: build.c:173 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "%s ¤«¤é spec ¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: build.c:199 +#: build.c:201 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: build.c:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "stat %s ¤Ë¼ºÇÔ: %s" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "ÉáÄ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó: %s\n" -#: build.c:253 +#: build.c:255 #, fuzzy, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï ¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£\n" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "ºîÀ®Ã楿¡¼¥²¥Ã¥È¥×¥é¥Ã¥È¥Õ¥©¡¼¥à: %s\n" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "¥¿¡¼¥²¥Ã¥È %s ÍѤ˺îÀ®Ãæ\n" @@ -81,48 +81,48 @@ msgstr " msgid "cannot re-open payload: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "ɸ½à½ÐÎϤò ¤Ø¥Ñ¥¤¥×¤·¤Þ¤¹" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ ¤ò»ÈÍѤ·¤Þ¤¹" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -138,23 +138,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -188,12 +188,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM ¥Ð¡¼¥¸¥ç¥ó %s\n" @@ -216,62 +216,62 @@ msgstr "GNU msgid "Usage: %s {--help}\n" msgstr "»ÈÍÑË¡: rpm {--help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, fuzzy, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "°ì¤Ä¤Î¥á¥¸¥ã¡¼¥â¡¼¥É¤Î¤ß¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "Ì䤤¹ç¤ï¤»/¸¡¾Ú¤Ï°ìÅ٤˰ì¤Ä¤·¤«¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" -#: rpmqv.c:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥é¥°" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥©¡¼¥Þ¥Ã¥È" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥½¡¼¥¹" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤¹" -#: rpmqv.c:742 +#: rpmqv.c:744 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "¥¤¥ó¥¹¥È¡¼¥ë¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¡¢¥½¡¼¥¹ºï½ü¡¢¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ëºï½ü»þ¤Î¤ß¶¯À©¤Ç¤­" "¤Þ¤¹" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ßºÆÇÛÃ֤Ǥ­¤Þ¤¹" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ¤â¤·¤¯¤Ï --relocate ¤Î¤¤¤º¤ì¤«¤Î¤ß»ÈÍѤǤ­¤Þ¤¹" -#: rpmqv.c:750 +#: rpmqv.c:752 #, fuzzy msgid "" "--relocate and --excludepath may only be used when installing new packages" @@ -279,82 +279,82 @@ msgstr "" "--relocate ¤È --excludepath ¤Ï¿·¤·¤¤¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍÑ" "¤Ç¤­¤Þ¤¹" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix ¤Ï¿·µ¬¤Ë¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍѤǤ­¤Þ¤¹" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ¤Ø¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ¤È --includedocs ¤Ï¤É¤Á¤é¤«°ìÊý¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "-ignoreos ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:797 +#: rpmqv.c:799 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "-ignoresize ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Îºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:815 +#: rpmqv.c:817 #, fuzzy msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:820 +#: rpmqv.c:822 #, fuzzy msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:824 +#: rpmqv.c:826 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -362,13 +362,13 @@ msgid "" msgstr "" "--nodeps ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎºîÀ®¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢ºîÀ®»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -376,108 +376,109 @@ msgstr "" "--root (-r) ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢Ì䤤¹ç¤ï¤»¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹ºÆ¹½ÃÛ»þ¤Î¤ß»ØÄê¤Ç" "¤­¤Þ¤¹" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "½ð̾¤¹¤ë¤¿¤á¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó\n" -#: rpmqv.c:894 +#: rpmqv.c:896 #, fuzzy msgid "pgp not found: " msgstr "pgp ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤ÏÀµ¾ï¤Ç¤¹¡¥\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign ¤Ï¥Ñ¥Ã¥±¡¼¥¸ºîÀ®»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "¼Â¹Ô¼ºÇÔ\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "ºÆºîÀ®¤¹¤ë¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "¸¡¾Ú¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "--querytags ¤Î°ú¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó" -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "¼Â¹ÔÃæ: %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "%s ¤Î¼Â¹Ô¤Ë¼ºÇÔ (%s)" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "%s ¤ÎÉÔÀµ¤Ê½ªÎ»¥¹¥Æ¡¼¥¿¥¹ (%s)" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -540,185 +541,185 @@ msgstr "- msgid "&& and || not suported for strings\n" msgstr "&& ¤È || ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK ¼ºÇÔ: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "')' ¤¬¤¢¤ê¤Þ¤»¤ó %s(%s " -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "̵¸ú¤Ê %s ¤Î¥È¡¼¥¯¥ó: %s" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "%s %s ¤Ç '('¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: build/files.c:560 +#: build/files.c:562 #, fuzzy, c-format msgid "Non-white space follows %s(): %s\n" msgstr "%s() ¤Ë³¤¯¶õÇò¤¬¤¢¤ê¤Þ¤»¤ó: %s" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "ÉÔÀµ¤Êʸˡ: %s(%s)" -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)" -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "ÉÔÀµ¤Ê¥Ç¥£¥ì¥¯¥È¥ê¥â¡¼¥É¥¹¥Ú¥Ã¥¯: %s(%s)" -#: build/files.c:775 +#: build/files.c:777 #, fuzzy, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "°Û¾ï¤Ê¥í¥«¡¼¥ëĹ: \"%.*s\" %%lang(%s)" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Ê£¿ô¤Î¥í¥«¡¼¥ë %.*s %%lang(%s)" -#: build/files.c:949 +#: build/files.c:951 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "%%docdir ¤Î¸Â³¦¤Ë㤷¤Þ¤·¤¿" -#: build/files.c:955 +#: build/files.c:957 #, fuzzy, c-format msgid "Only one arg for %%docdir\n" msgstr "%%docdir ¤Î°ú¿ô¤Ï1¤Ä¤Î¤ß¤Ç¤¹" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "1¹Ô¤Ë2¤Ä¤Î¥Õ¥¡¥¤¥ë: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "¥Õ¥¡¥¤¥ë¤Ï \"/\" ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s" -#: build/files.c:1011 +#: build/files.c:1013 #, fuzzy, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "¾¤Î¥Õ¥©¡¼¥à¤ÇÆÃÊÌ¤Ê %%doc ¤òº®¤¼¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s" -#: build/files.c:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "¥Õ¥¡¥¤¥ë¤¬2²óɽµ­¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "¥Õ¥¡¥¤¥ë¤Ï prefix (%s) ¤È°ìÃפ·¤Þ¤»¤ó: %s" -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: %s" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "ÉÔÀµ¤Ê½êÍ­¼Ô/¥°¥ë¡¼¥×: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "¥Õ¥¡¥¤¥ë %4d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "¥Õ¥¡¥¤¥ë¤ÏÀèƬ¤Ë \"/\" ¤¬É¬ÍפǤ¹: %s" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó(by glob): %s" -#: build/files.c:1847 +#: build/files.c:1849 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "%%files ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "¹ÔÌÜ: %s" -#: build/files.c:2234 +#: build/files.c:2236 #, fuzzy, c-format msgid "Bad file: %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "%s ¤ò fork ¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s ¼ºÇÔ" -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "Á´¤Æ¤Î¥Ç¡¼¥¿¤ò %s ¤Ë½ñ¤¯¤³¤È¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: build/files.c:2560 +#: build/files.c:2562 #, fuzzy, c-format msgid "Finding %s: (using %s)...\n" msgstr "%s ¤òõ¤·¤Æ¤¤¤Þ¤¹: (%s ¤ò»ÈÍѤ·¤Æ¤¤¤Þ¤¹)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "%s ¤ò¸«¤Ä¤±¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿:" -#: build/files.c:2726 +#: build/files.c:2728 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½èÍýÃæ: %s-%s-%s\n" @@ -747,162 +748,162 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "¥Û¥¹¥È̾¤òÀµ¼°¤Ê¤â¤Î¤Ë¤Ç¤­¤Þ¤»¤ó: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s" -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ç¥¢¡¼¥«¥¤¥Ö¤ÎºîÀ®¤Ë¼ºÇÔ: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy ¤Ç½ñ¤­¹þ¤ß¼ºÇÔ: %s" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy ¤ÇÆɤ߹þ¤ß¼ºÇÔ: %s" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "PreIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "PreUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "PostIn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "PostUn ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "VerifyScript ¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:267 +#: build/pack.c:269 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "¥È¥ê¥¬¡¼¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: %s ¤Î¥ª¡¼¥×¥ó: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: %s ¤ÎÆɤ߹þ¤ß: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, fuzzy, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: build/pack.c:352 +#: build/pack.c:354 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: %s ¤«¤é¤Î¥Ø¥Ã¥À¤ÎÆɤ߹þ¤ß\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:512 +#: build/pack.c:514 #, fuzzy msgid "Bad CSA data\n" msgstr "ÉÔÀµ¤Ê CSA ¥Ç¡¼¥¿" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "½ð̾¤ÎÀ¸À®Ãæ: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "sigtarget ¤ÎÆɤ߹þ¤ß¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "½ñ¤­¹þ¤ßÃæ: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Î ½ÐÎÏ¥Õ¥¡¥¤¥ë̾¤òÀ¸À®¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s\n" -#: build/pack.c:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" @@ -977,123 +978,123 @@ msgstr "%d msgid "line %d: Second %%files list\n" msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%files ¥ê¥¹¥È" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, fuzzy, c-format msgid "Architecture is excluded: %s\n" msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, fuzzy, c-format msgid "Architecture is not included: %s\n" msgstr "¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "OS ¤Ï´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "%s ¥Õ¥£¡¼¥ë¥É¤Ï¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ËɬÍפǤ¹: %s" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤ÎÆó½Å¤Î %s ¥¨¥ó¥È¥ê: %s" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "¥¢¥¤¥³¥ó¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "ÉÔÌÀ¤Ê¥¢¥¤¥³¥ó¥¿¥¤¥×: %s" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó %s:%s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔ´°Á´¤Ê·Á¤Î¥¿¥°: %s" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "%d ¹ÔÌÜ: ¶õ¤Î¥¿¥°: %s" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "%d ¹ÔÌÜ: Prefixes ¤Ï \"/\" ¤Ç½ª¤ï¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "%d ¹ÔÌÜ: Docdir ¤Ï '/' ¤Ç»Ï¤Þ¤é¤Ê¤¯¤Æ¤Ï¤¤¤±¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "%d ¹ÔÌÜ: Epoch/Serial ¥Õ¥£¡¼¥ë¥É¤ÏÈÖ¹æ¤Ç¤Ê¤±¤ì¤Ð¤¤¤±¤Þ¤»¤ó: %s" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê BuildArchitecture ¥Õ¥©¡¼¥Þ¥Ã¥È: %s" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "ÆâÉô¥¨¥é¡¼: ¤Ë¤»¤Î¥¿¥° %d" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr "ÉÔÀµ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤Î»ØÄê: %s" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹: %s" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÌÀ¤Ê¥¿¥°: %s" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 #, fuzzy msgid "Spec file can't use BuildRoot\n" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤Ï BuildRoot ¤ò»ÈÍѤǤ­¤Þ¤»¤ó" @@ -1133,59 +1134,59 @@ msgstr "%d msgid "line %d: Bad %%setup option %s: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %%setup ¥ª¥×¥·¥ç¥ó %s: %s" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "%d ¹ÔÌÜ: %%patch -b ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "%d ¹ÔÌÜ: %%patch -z ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "%d ¹ÔÌÜ: %%patch -p ¤Ë¤Ï°ú¿ô¤¬É¬ÍפǤ¹: %s" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %%patch -p ¤Ø¤Î°ú¿ô: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 #, fuzzy msgid "Too many patches!\n" msgstr "¥Ñ¥Ã¥Á¤¬Â¿¤¹¤®¤Þ¤¹" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "%d ¹ÔÌÜ: %%patch ¤Ø¤ÎÉÔÀµ¤Ê°ú¿ô: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, fuzzy, c-format msgid "line %d: second %%prep\n" msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%%prep" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" "%d ¹ÔÌÜ: °Í¸À­¥È¡¼¥¯¥ó¤Ï±Ñ¿ô»ú¡¢'_'¡¢'/' ¤Ç»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó: %s" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "%d ¹ÔÌÜ: ¥Õ¥¡¥¤¥ë̾¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥óÉÕ¤±¤µ¤ì¤¿¥Õ¥¡¥¤¥ë̾¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "%d ¹ÔÌÜ: ¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹: %s" @@ -1210,48 +1211,48 @@ msgstr "%d msgid "line %d: Second %s\n" msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "%d ¹ÔÌÜ: %s" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "%%if ¤¬ÊĤ¸¤Æ¤¤¤Þ¤»¤ó" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, fuzzy, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s%d: parseExpressionBoolean ¤¬ %d ¤òÊÖ¤·¤Þ¤·¤¿" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%else ¤¬¤¢¤ê¤Þ¤¹" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%endif ¤¬¤¢¤ê¤Þ¤¹" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "¤ª¤«¤·¤Ê %%include ¥¹¥Æ¡¼¥È¥á¥ó¥È¤Ç¤¹" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "ºîÀ®(build)²Äǽ¤Ê¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï¤¢¤ê¤Þ¤»¤ó" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s" @@ -1423,62 +1424,62 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¥«¥¿¥í¥°Ãæ¤Î I18N ʸ»úÎó¤òõ¤·¤Æ¤¤¤Þ¤¹" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤ÊÈÖ¹æ: %s" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê no%s ÈÖ¹æ: %d" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "(¥¨¥é¡¼ 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹" -#: lib/cpio.c:229 +#: lib/cpio.c:233 #, fuzzy msgid "Unknown file type" msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 #, fuzzy msgid "Internal error" msgstr "ÆâÉô¥¨¥é¡¼" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 #, fuzzy msgid " failed - " msgstr "¼ºÇÔ - " @@ -1488,254 +1489,255 @@ msgstr " msgid "package %s was already added, replacing with %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() fugger ¥µ¥¤¥º¤òÊÖ¤¹¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: lib/fs.c:93 +#: lib/fs.c:92 #, fuzzy, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() fugger ¥µ¥¤¥º¤òÊÖ¤¹¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "stat %s ¤Ë¼ºÇÔ: %s" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/fs.c:327 +#: lib/fs.c:330 #, fuzzy, c-format msgid "file %s is on an unknown device\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%d ¹ÔÌÜ: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 #, fuzzy msgid "exclude paths must begin with a /" msgstr "½ü³°¤¹¤ë¥Ñ¥¹¤Ï / ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "ºÆÇÛÃÖ¤Ï / ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "ºÆÇÛÃÖ¤Ï = ¤ò´Þ¤ó¤Ç¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "ºÆÇÛÃÖ¤Ï = ¤Î¼¡¤Ë / ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "ÀßÄê¤ò¥¹¥­¥Ã¥×¤·¡¢Á´¥Õ¥¡¥¤¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1743,159 +1745,159 @@ msgstr "" " ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Þ¤¹(°ìÈÌ\n" "\t\t\t Ū¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Þ¤¹" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤»¤ó" -#: lib/poptI.c:137 +#: lib/poptI.c:136 #, fuzzy msgid "skip files with leading component " msgstr "¥Ñ¥¹ Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '#' ¤Çɽ¼¨¤·¤Þ¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоÝOS¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Þ¤»¤ó" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Þ¤¹¤¬¡¢\n" "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Þ¤»¤ó" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" "°Í¸À­¤òËþ¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n" "¥¤¥ó¥¹¥È¡¼¥ë¤òÍ׵ᤷ¤Þ¤»¤ó" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" "¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n" "¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1903,494 +1905,501 @@ msgstr "" "¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹\n" "(¥¢¥Ã¥×¥°¥ì¡¼¥É»þ¤Î --force ¤Ï¤³¤ì¤ò¼«Æ°Åª¤Ë¹Ô¤¤¤Þ¤¹)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '%' ¤Çɽ¼¨¤·¤Þ¤¹" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" "ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n" "ÀÜƬ¼­¤ò ¤ËÀßÄꤷ¤Þ¤¹" -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr " ¤«¤é ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹" -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr " ¤«¤é ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" "¥¤¥ó¥¹¥È¡¼¥ë»þ¤ËÃÖ¤­´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n" "¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Þ¤¹" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "Á´¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr " ¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "¥Õ¥¡¥¤¥ë¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "¥°¥ë¡¼¥×Ãæ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹\n" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "¥Õ¥¡¥¤¥ë¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "¥Õ¥¡¥¤¥ë¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "¥Õ¥¡¥¤¥ë¤ò½êÍ­¤·¤Æ¤¤¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 #, fuzzy msgid "query a spec file" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "¥°¥ë¡¼¥×Ãæ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹\n" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "" " ¤Îµ¡Ç½¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤Æ\n" "Ì䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr " ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 #, fuzzy msgid "list all configuration files" msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "Á´¤Æ¤Î¥É¥­¥å¥á¥ó¥È¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 #, fuzzy msgid "dump basic file information" msgstr "´ðËÜŪ¤Ê¥Õ¥¡¥¤¥ë¾ðÊó¤ò¥À¥ó¥×¤·¤Þ¤¹" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 #, fuzzy msgid "list files in package" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹\n" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "°Ê²¼¤ÎÌ䤤¹ç¤ï¤»¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤­´¹¤¨¤Þ¤¹" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "Îóµó¤·¤¿¥Õ¥¡¥¤¥ë¤Î¾õÂÖ¤òɽ¼¨¤·¤Þ¤¹" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 #, fuzzy msgid "display a verbose file listing" msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 #, fuzzy msgid "don't verify files in package" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó" -#: lib/psm.c:497 +#: lib/psm.c:499 #, fuzzy msgid "source package expected, binary found\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" -#: lib/psm.c:913 +#: lib/psm.c:915 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s" -#: lib/psm.c:1571 +#: lib/psm.c:1556 #, fuzzy msgid " on file " msgstr "¥Õ¥¡¥¤¥ë¾å" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s ¼ºÇÔ" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "Ä̾ï" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "¥Í¥Ã¥È¶¦Í­" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(̤ÃΤΠ%3d)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:723 +#: lib/query.c:653 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s ¤òÆɤà¤Î¤Ë¼ºÇÔ: $s¡£" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" @@ -2519,36 +2528,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" @@ -2643,7 +2652,7 @@ msgstr "%s msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "Æɤ߹þ¤ß¤Î¼ºÇÔ: %s (%d)" @@ -2897,122 +2906,122 @@ msgstr " msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾! ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?" -#: lib/signature.c:248 +#: lib/signature.c:250 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "½ð̾¥µ¥¤¥º: %d\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿: %s" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "pgp ¼ºÇÔ" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "gpg ¼ºÇÔ" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: lib/signature.c:474 +#: lib/signature.c:476 #, fuzzy, c-format msgid "GPG sig size: %d\n" msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/signature.c:812 +#: lib/signature.c:814 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "MD5 ½ð̾¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "½ð̾¥Ñ¥Ã¥É: %d\n" @@ -3023,17 +3032,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:" @@ -3096,100 +3105,100 @@ msgstr " msgid "locked db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 #, fuzzy msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "% ¤Î¸å¤Ë { ¤¬¤¢¤ê¤Þ¤»¤ó" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "%{ ¤Î¸å¤Ë } ¤¬¤¢¤ê¤Þ¤»¤ó" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "¶õ¤Î¥¿¥°¥Õ¥©¡¼¥Þ¥Ã¥È" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "¶õ¤Î¥¿¥°Ì¾" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "ÉÔÌÀ¤Ê¥¿¥°" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "ÇÛÎó¤Î¸å¤Ë ] ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "ͽ´ü¤»¤Ì ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "ͽ´ü¤»¤Ì }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "¼°Ãæ¤Ç ? ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "¼°Ãæ¤Ç ? ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "¼°Ãæ¤Ë } ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "°Ê²¼¤Î ? ¥µ¥Ö¼°¤Î ¤Ë: ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "¼°Ãæ¤Ç : ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "¼°¤Î½ª¤ê¤Ë | ¤¬´üÂÔ¤µ¤ì¤Þ¤¹" @@ -3212,259 +3221,259 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó %s:%d" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ " -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== ¥¢¥¯¥Æ¥£¥Ö %d ¥¨¥ó¥×¥Æ¥£ %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, fuzzy, c-format msgid "Macro %%%s has unterminated body\n" msgstr "¥Þ¥¯¥í %%%s ¤Ï¥Ü¥Ç¥£¤¬½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "¥Þ¥¯¥í %%%s ¤Ï°ãË¡¤Ê̾Á°¤Ç¤¹(%%define)" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, fuzzy, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "¥Þ¥¯¥í %%%s ¤Ï opts ¤¬½ªÃ¼¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, fuzzy, c-format msgid "Macro %%%s has empty body\n" msgstr "¥Þ¥¯¥í %%%s ¤Ï¶õ¤Î¥Ü¥Ç¥£¤Ç¤¹" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, fuzzy, c-format msgid "Macro %%%s failed to expand\n" msgstr "¥Þ¥¯¥í %%%s ¤Ï¿­Ä¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "¥Þ¥¯¥í %%%s ¤Ï°ãË¡¤Ê̾Á°¤Ç¤¹(%%undefine)" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, fuzzy, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "¥Þ¥¯¥í %%%s (%s) ¤Ï¥ì¥Ù¥ë %d °Ê²¼¤Ç»ÈÍѤµ¤ì¤Þ¤»¤ó¤Ç¤·¤¿" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "ÉÔÌÀ¤Ê¥ª¥×¥·¥ç¥ó %c (%s(%s)Ãæ¤Ë)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, fuzzy, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "ºÆµ¢¤Î¿¼¤µ(%d)¤¬ºÇÂçÃÍ(%d)¤è¤ê¤âÂ礭¤¤" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "½ªÃ¼¤µ¤ì¤Æ¤¤¤Ê¤¤ %c: %s" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, fuzzy, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "A %% ¤Ï¹½Ê¸²òÀϤǤ­¤Ê¤¤¥Þ¥¯¥í¤¬Â³¤¤¤Æ¤¤¤Þ¤¹" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "¥Þ¥¯¥í %%%.*s ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¡¢¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 #, fuzzy msgid "Target buffer overflow\n" msgstr "¥¿¡¼¥²¥Ã¥È¥Ð¥Ã¥Õ¥¡¥ª¡¼¥Ð¡¼¥Õ¥í¡¼" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, fuzzy, c-format msgid "File %s is smaller than %u bytes\n" msgstr "¥Õ¥¡¥¤¥ë %s: ¤Ï %d ¥Ð¥¤¥È¤è¤ê¾®¤µ¤¤¤Ç¤¹" @@ -3530,28 +3539,28 @@ msgstr " msgid "Unknown or unexpected error" msgstr "ÉÔÌÀ¤â¤·¤¯¤Ïͽ´ü¤»¤Ì¥¨¥é¡¼" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "%s ¤Ø %s pw %s ¤È¤·¤Æ¥í¥°¥¤¥óÃæ\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "(¥¨¥é¡¼ 0x%x)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "Ã×̿Ū¤Ê¥¨¥é¡¼: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "¥¨¥é¡¼: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "·Ù¹ð: " @@ -3585,13 +3594,13 @@ msgstr "%s@%s msgid "error: %sport must be a number\n" msgstr "¥¨¥é¡¼: %s¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 #, fuzzy msgid "url port must be a number\n" msgstr "url ¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" diff --git a/po/ko.po b/po/ko.po index c791077..72ae25c 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.4\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2002-03-04 17:17+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -19,44 +19,44 @@ msgstr " msgid "Unable to open spec file %s: %s\n" msgstr "%s spec ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar ÆÄÀÌÇÁ¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "%s¿¡¼­ spec ÆÄÀÏÀ» Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%sÀÇ À̸§À» %s(À¸)·Î º¯°æÇϴµ¥ ½ÇÆÐÇÔ: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "%sÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "%s ÆÄÀÏÀº Á¤±Ô(regular) ÆÄÀÏÀÌ ¾Æ´Õ´Ï´Ù.\n" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "%s ÆÄÀÏÀº spec ÆÄÀÏÀÌ ¾Æ´Ñ °Í °°½À´Ï´Ù.\n" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "¸ñÇ¥´ë»ó(target) Ç÷§ÆûÀ¸·Î Á¦ÀÛ Áß: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "%s(À»)¸¦ Á¦ÀÛÇÏ°í ÀÖ½À´Ï´Ù\n" @@ -74,48 +74,48 @@ msgstr " msgid "cannot re-open payload: %s\n" msgstr "payload¸¦ ´Ù½Ã ¿­ ¼ö ¾øÀ½: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "ÇöÀç »ç¿ëµÇ°í ÀÖ´Â rpm ¹öÀüÀ» Ç¥½ÃÇÕ´Ï´Ù" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "ÀÚ¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "¾ÆÁÖ »ó¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "<Ç¥Çö½Ä>+ ÀÇ ¸ÅÅ©·Î È®ÀåÀ» Ãâ·ÂÇÕ´Ï´Ù" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "Ç¥ÁØÃâ·ÂÀ» <¸í·É>À¸·Î º¸³À´Ï´Ù" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "<¸í·É>" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "<µð·ºÅ丮>" @@ -131,23 +131,23 @@ msgstr "< msgid "read instead of default rpmrc file(s)" msgstr "±âº» rpmrc ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "ÇöÀç ¼³Á¤µÇ¾î ÀÖ´Â rpmrcÀÇ ³»¿ë°ú ¸ÅÅ©·Î¸¦ º¸¿©ÁÝ´Ï´Ù" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "libio(3) APIÀÇ »ç¿ëÀ» ÇØÁ¦ÇÕ´Ï´Ù" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "µ¥ÀÌÅÍ ½ºÆ®¸² ÇÁ·ÎÅäÄÝÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "rpmio ÀÔ/Ãâ·ÂÀ» µð¹ö±× ÇÕ´Ï´Ù" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "URL ij½Ã Çڵ鸵À» µð¹ö±× ÇÕ´Ï´Ù" @@ -181,12 +181,12 @@ msgid "Common options for all rpm modes:" msgstr "¸ðµç rpm ¸ðµå¿¡¼­ÀÇ ÀϹÝÀûÀÎ ¿É¼Ç:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM ¹öÀü - %s\n" @@ -205,135 +205,135 @@ msgstr " msgid "Usage: %s {--help}\n" msgstr "* »ç¿ë¹ý: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "--rcfile ¿É¼ÇÀÌ Á¦°ÅµÇ¾ú½À´Ï´Ù.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "´ë½Å \"--macros <ÆÄÀÏ:..>\" À» »ç¿ëÇÕ´Ï´Ù.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Àμö 󸮰úÁ¤ (%d) µµÁß ³»ºÎ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "ÇϳªÀÇ ÁÖ(major) ¸ðµå¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "ÁúÀÇ/°ËÁõ À¯ÇüÀº °¢°¢ ´Ù¸¥ À¯Çü°ú µ¿½Ã¿¡ ¼öÇàÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Ç÷¡±× ÀÔ´Ï´Ù" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Çü½Ä ÀÔ´Ï´Ù" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "ºÎÀûÀýÇÑ ÁúÀÇ ¼Ò½º ÀÔ´Ï´Ù" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath´Â µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÏÁö ¾Ê±â À§ÇÑ ¿É¼ÇÀÔ´Ï´Ù" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "¼³Ä¡, ¾÷±×·¹À̵å, ¼Ò½º »èÁ¦, spec ÆÄÀÏ »èÁ¦½Ã¿¡¸¸ ¼öÇàµË´Ï´Ù" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÆÄÀÏÀ» Àç¹èÄ¡ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ¶Ç´Â --relocate ¿É¼Ç Áß Çϳª¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate ¿Í --excludepath ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ" "½À´Ï´Ù" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ¿Í --includedocs ¿É¼Ç¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ¿É¼ÇÀº ÆÐÅ°Áö »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "½ºÅ©¸³Æ® ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "Æ®¸®°Å ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -341,13 +341,13 @@ msgstr "" "--nodeps ¿É¼ÇÀº ÆÐÅ°Áö Á¦ÀÛ, ÀçÁ¦ÀÛ(rebuild), ÀçÄÄÆÄÀÏ(recompile), ¼³Ä¡, »è" "Á¦, °ËÁõ½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "--test ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, Á¦À۽ÿ¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -355,105 +355,106 @@ msgstr "" "--root (-r) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, ÁúÀÇ, µ¥ÀÌÅͺ£À̽º À籸Ãà½Ã¿¡¸¸ ÁöÁ¤ÇÒ " "¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "¼­¸íÇÒ ÆÄÀÏÀÌ ¾ø½À´Ï´Ù\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "%s ÆÄÀÏ¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp¸¦ ãÀ» ¼ö ¾øÀ½: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Æнº ±¸¹®(pass phrase) ÀÔ·Â: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ÀÏÄ¡ÇÕ´Ï´Ù.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign ¿É¼ÇÀº ÆÐÅ°Áö Á¦À۽ÿ¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "ÀçÁ¦ÀÛ(rebuild)ÇÒ ÆÐÅ°Áö ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ spec ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ tar ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "»èÁ¦ÇÒ ÆÐÅ°Áö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "°ËÁõ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "--querytags ¿É¼Ç¿¡ ºÎÀûÀýÇÑ Àμö°¡ ÁöÁ¤µÇ¾ú½À´Ï´Ù " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Àӽà ÆÄÀÏÀ» ¿­ ¼ö ¾ø½À´Ï´Ù.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "½ÇÇà Áß(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "%sÀÇ ½ÇÇà¿¡ ½ÇÆÐÇÔ (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "%sÀÇ À߸øµÈ Á¾·á »óȲ (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -508,184 +509,184 @@ msgstr "'-' msgid "&& and || not suported for strings\n" msgstr "'&&' ¿Í '||' ´Â ¹®ÀÚ¿­¿¡¼­ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "Ç¥Çö½Ä¿¡¼­ ±¸¹® ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK ½ÇÆÐ: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "%s %s¿¡ '(' °¡ ¾ø½À´Ï´Ù\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "%s(%s¿¡ ')' °¡ ¾ø½À´Ï´Ù\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "ºÎÀûÇÕÇÑ %s ÅäÅ«: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "%2$s %3$s¿¡ %1$s °¡ ¾ø½À´Ï´Ù\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "%s() ´ÙÀ½¿¡ °ø¹éÀÌ ¾øÀ½: %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "À߸øµÈ ±¸¹®: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "À߸øµÈ ¸ðµå spec: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "À߸øµÈ dir¸ðµå spec: %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "ºñÁ¤»óÀûÀÎ ·ÎÄÉÀÏ ±æÀÌ: %%lang(%2$s)¿¡ \"%1$.*s\"\n" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "%%lang(%2$s)¿¡ Áߺ¹µÈ ·ÎÄÉÀÏ %1$.*s°¡ Á¸ÀçÇÕ´Ï´Ù\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "%%docdirÀÇ ÇÑ°è°¡ ÃÊ°úµÇ¾ú½À´Ï´Ù\n" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "%%docdir¿¡ ÇϳªÀÇ Àμö¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù\n" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "ÇϳªÀÇ Çà¿¡ µÎ°³ÀÇ ÆÄÀÏÀÌ Á¸ÀçÇÔ: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "ÆÄÀÏÀº ¹Ýµå½Ã \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "ƯÁ¤ %%docÀ» ´Ù¸¥ Çü½Ä°ú ÇÔ²² »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "ÆÄÀÏ ¸ñ·ÏÀÌ Áߺ¹µÊ: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "BuildRoot¿¡ ½Éº¼¸¯¸µÅ©ÇÔ: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "ÆÄÀÏÀÌ prefix (%s)¿Í ÀÏÄ¡ÇÏÁö ¾ÊÀ½: %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "ÆÄÀÏÀ» ãÀ» ¼ö ¾øÀ½: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "À߸øµÈ ¼ÒÀ¯ÀÚ/±×·ì: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "ÆÄÀÏ%5d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "ÆÄÀÏÀº \"/\" ·Î ½ÃÀÛÇؾßÇÔ: %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "GlobÀ» »ç¿ëÇÒ ¼ö ¾øÀ½: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "globÀ¸·Î ÆÄÀÏÀ» ãÀ» ¼ö ¾øÀ½: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "%s ÆÄÀÏÀÇ %%files¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "Çà: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "À߸øµÈ ÆÄÀÏ: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "%s(À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "%s(À»)¸¦ fork ÇÒ ¼ö ¾øÀ½: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇß½À´Ï´Ù\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "%s¿¡ ¸ðµç ÀڷḦ ±â·ÏÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "%s(À»)¸¦ ã´Â Áß: (%s »ç¿ë)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "%s(À»)¸¦ ã´Âµ¥ ½ÇÆÐÇÔ:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "ÆÄÀÏ Ã³¸® Áß: %s-%s-%s\n" @@ -714,157 +715,157 @@ msgstr " msgid "getGidS: too many gid's\n" msgstr "±×·ì id ¼³Á¤[getGidS]: gid°¡ ³Ê¹« ¸¹½À´Ï´Ù\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "È£½ºÆ®¸íÀ» Á¤±ÔÈ­(canonicalize) ÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "%s ÆÄÀÏÀÇ ¾ÆÄ«À̺긦 »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "¾ÆÄ«ÀÌºê »ý¼º¿¡ ½ÇÆÐÇÔ: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy ÀÛ¼º¿¡ ½ÇÆÐÇÔ: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy Àб⿡ ½ÇÆÐÇÔ: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "PreIn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "PreUn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "PostIn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "PostUn ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "VerifyScript ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Æ®¸®°Å ½ºÅ©¸³Æ® ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "RPM Àбâ(readRPM): %s(À»)¸¦ ¿±´Ï´Ù: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "RPM Àбâ(readRPM): %s(À»)¸¦ ÀнÀ´Ï´Ù: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: FseekÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "RPM Àбâ(readRPM): %s(Àº)´Â RPM ÆÐÅ°Áö°¡ ¾Æ´Õ´Ï´Ù\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "RPM Àбâ(readRPM): %s¿¡¼­ Çì´õ¸¦ Àаí ÀÖ½À´Ï´Ù\n" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "°íÁ¤ Çì´õ ¿µ¿ª(immutable header region)À» »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù.\n" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "ÀÓ½Ã(temp) Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "À߸øµÈ CSA µ¥ÀÌÅÍ\n" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "¸¶Áö¸·(final) Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "¼­¸í »ý¼º Áß: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "¼­¸í(signature) Çì´õ¸¦ ´Ù½Ã Àоî¿Ã ¼ö ¾ø½À´Ï´Ù.\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "¼­¸íÇÒ ´ë»ó %s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "%sÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾øÀ½: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "%s¿¡ Çì´õ¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "%sÀÇ payload¸¦ ÀÐÀ» ¼ö ¾øÀ½: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "ÀÛ¼º: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "%s ÆÐÅ°ÁöÀÇ Ãâ·Â ÆÄÀϸíÀ» »ý¼ºÇÒ ¼ö ¾øÀ½: %s\n" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "%s(À»)¸¦ »ý¼ºÇÒ ¼ö ¾øÀ½: %s\n" @@ -939,123 +940,123 @@ msgstr "%d msgid "line %d: Second %%files list\n" msgstr "%d ¹ø° Çà: µÎ¹ø° %%files ¸ñ·Ï\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "¾ÆÅ°ÅØÃÄ°¡ Á¦¿ÜµÊ: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "¾ÆÅ°ÅØÃÄ°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "¿î¿µÃ¼Á¦°¡ Á¦¿ÜµÊ: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "¿î¿µÃ¼Á¦°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "ÆÐÅ°Áö¿¡ ¹Ýµå½Ã %s Ç׸ñ(field)À» Æ÷ÇÔÇؾßÇÔ: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "ÆÐÅ°Áö¿¡ %s Ç׸ñ(entry)ÀÌ Áߺ¹µÇ¾î ÀÖÀ½: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "%s ¾ÆÀÌÄÜÀ» ¿­ ¼ö ¾øÀ½: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "%s ¾ÆÀÌÄÜÀ» ÀÐÀ» ¼ö ¾øÀ½: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "¾Ë ¼ö ¾ø´Â ¾ÆÀÌÄÜ À¯Çü: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "%d ¹ø° Çà: ű׿¡ ÇϳªÀÇ ÅäÅ«¸¸ ÀÖ½À´Ï´Ù: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "%d ¹ø° Çà: ¿Ã¹Ù¸£Áö ¸øÇÑ Å±×ÀÔ´Ï´Ù: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "%d ¹ø° Çà: űװ¡ ºñ¾îÀÖ½À´Ï´Ù: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "%d ¹ø° Çà: %s¿¡ ºÎÀûÇÕÇÑ ¹®ÀÚ '-' °¡ ÀÖÀ½: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot¸¦ \"/\" ·Î ÁöÁ¤ÇÒ ¼ö ¾øÀ½: %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "%d ¹ø° Çà: Prefixes´Â Àý´ë \"/\" ·Î ³¡³ª¼­´Â ¾ÈµË´Ï´Ù: %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "%d ¹ø° Çà: DocdirÀº ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù: %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "%d ¹ø° Çà: Epoch/Serial Ç׸ñ(field)Àº ¹Ýµå½Ã ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "%d ¹ø° Çà: À߸øµÈ %s: ¼ö½ÄÀÚ(qualifier): %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "%d ¹ø° Çà: À߸øµÈ BuildArchitecture Çü½ÄÀÔ´Ï´Ù: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "³»ºÎ ¿À·ù: º¸°Å½º(Bogus) ÅÂ±× %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "À߸øµÈ ÆÐÅ°Áö ÁöÁ¤: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "ÆÐÅ°Áö°¡ ÀÌ¹Ì Á¸ÀçÇÔ: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "%d ¹ø° Çà: ¾Ë ¼ö ¾ø´Â ű×ÀÔ´Ï´Ù: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "Spec ÆÄÀÏÀº BuildRoot¸¦ »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n" @@ -1094,41 +1095,41 @@ msgstr "%d msgid "line %d: Bad %%setup option %s: %s\n" msgstr "%d ¹ø° Çà: %%setup¿¡ À߸øµÈ %s ¿É¼Ç: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "%d ¹ø° Çà: %%patch -b ¿¡ Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "%d ¹ø° Çà: %%patch -z ¿¡ Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "%d ¹ø° Çà: %%patch -p ¿¡ Àμö°¡ ÇÊ¿äÇÕ´Ï´Ù: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "%d ¹ø° Çà: %%patch -p ¿¡ À߸øµÈ Àμö°¡ ÀÖ½À´Ï´Ù: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "ÆÐÄ¡°¡ ³Ê¹« ¸¹½À´Ï´Ù!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "%d ¹ø° Çà: %%patch¿¡ À߸øµÈ Àμö°¡ ÀÖ½À´Ï´Ù: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "%d ¹ø° Çà: µÎ¹ø° %%prep\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1136,17 +1137,17 @@ msgstr "" "%d ¹ø° Çà: ÀÇÁ¸¼º ÅäÅ«(token)Àº ¹Ýµå½Ã '¹®ÀÚ-¼ýÀÚ Á¶ÇÕ', '_' ¶Ç´Â '/' ·Î ½Ã" "ÀÛÇØ¾ß ÇÕ´Ï´Ù: %s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "%d ¹ø° Çà: ÇØ´ç ÆÄÀϸíÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "%d ¹ø° Çà: ¹öÀüÀÌ ¸í½ÃµÈ ÆÄÀϸíÀ» »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "%d ¹ø° Çà: ¹öÀüÀÌ ÇÊ¿äÇÕ´Ï´Ù: %s\n" @@ -1171,47 +1172,47 @@ msgstr "%d msgid "line %d: Second %s\n" msgstr "%d ¹ø° Çà: µÎ¹ø° %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "%d ¹ø° Çà: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "%%if°¡ ´ÝÈ÷Áö ¾Ê¾Ò½À´Ï´Ù\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean¿¡¼­ %d °ªÀÌ ¹ÝȯµÇ¾ú½À´Ï´Ù\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else°¡ %%if ¾øÀÌ »ç¿ëµÇ¾ú½À´Ï´Ù\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif°¡ %%if ¾øÀÌ »ç¿ëµÇ¾ú½À´Ï´Ù\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "%%include ¹®ÀÌ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ȣȯÇÏ´Â ¾ÆÅ°ÅØÃĸ¦ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "ÆÐÅ°Áö¿¡ %%descriptionÀÌ ¾øÀ½: %s\n" @@ -1365,59 +1366,59 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "specÆÄÀÏ ¸ñ·Ï(catalog)¿¡¼­ i18N ¹®ÀÚ¿­À» °Ë»öÇÕ´Ï´Ù" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "%d ¹ø° Çà: À߸øµÈ ¼ýÀÚÀÔ´Ï´Ù: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "%d ¹ø° Çà: no%s(Àº)´Â À߸øµÈ ¼ýÀÚÀÔ´Ï´Ù: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "%d ¹ø° Çà: %s(Àº)´Â À߸øµÈ ¼ýÀÚÀÔ´Ï´Ù: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(¿À·ù 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "À߸øµÈ magic ÀÔ´Ï´Ù" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "À߸øµÈ/ÀÐÀ» ¼ö ¾ø´Â Çì´õÀÔ´Ï´Ù" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "¾Ë ¼ö ¾ø´Â ÆÄÀÏ À¯ÇüÀÔ´Ï´Ù" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "ÇÏµå ¸µÅ©¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "MD5 ÇÕ°è°¡ ÀÏÄ¡ÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "³»ºÎ ¿À·ù" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "Çì´õ¿¡ ¾ÆÄ«À̺ê ÆÄÀÏÀÌ ¾ø½À´Ï´Ù" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " ½ÇÆÐÇÔ - " @@ -1426,52 +1427,52 @@ msgstr " msgid "package %s was already added, replacing with %s\n" msgstr "%s ÆÐÅ°Áö´Â ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ½À´Ï´Ù" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s ¿¹ (rpmrcÀÌ Á¦°øÇÔ)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s ¿¹ (rpmlibÀÌ Á¦°øÇÔ)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "À߸øµÈ db ÆÄÀÏ %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s ¿¹ (db°¡ Á¦°øÇÔ)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "´ÙÀ½°ú °ü·ÃµÈ ÆÐÅ°Áö À̸§À» ¹«½ÃÇÕ´Ï´Ù [%d]\t%s -> %s\n" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "tsort °ü°è¿¡¼­ %s-%s-%s \"%s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "========== tsort °ü°è¸¦ ±â·Ï(record)ÇÕ´Ï´Ù\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" @@ -1479,200 +1480,201 @@ msgstr "" "========== ÆÐÅ°Áö¸¦ tsort ÇÕ´Ï´Ù (¼ø¼­, #¼±ÀÓÀÚ, #ÈÄÀÓÀÚ, Æ®¸®, ±íÀÌ" "[depth])\n" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== ÈÄÀÓÀÚ¸¸ [successors only] (Ç¥Çö ¼ø)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "·çÇÁ(LOOP):\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== tsort¸¦ ÁøÇàÇÕ´Ï´Ù...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(¼ýÀÚ°¡ ¾Æ´Õ´Ï´Ù)" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "(base64°¡ ¾Æ´Õ´Ï´Ù)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "(ºÎÀûÇÕÇÑ Å¸ÀÔ)" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "(BLOB[Binary Large OBject]ÀÌ ¾Æ´Õ´Ï´Ù)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl()¿¡¼­ Å©±â¸¦ ¹ÝȯÇϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl()¿¡¼­ ¸¶¿îÆ®ÇÒ ÁöÁ¡À» ¹ÝȯÇϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "%sÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "%s ÆÄÀÏÀº ¾Ë ¼ö ¾ø´Â ÀåÄ¡ »ó¿¡ ÀÖ½À´Ï´Ù\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= ÆÐÅ°Áö¿¡ µð·ºÅ丮°¡ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½:\n" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%2$04oÀÇ Çã°¡±Ç(perms)À» °¡Áø %1$s µð·ºÅ丮°¡ »ý¼ºµÇ¾ú½À´Ï´Ù.\n" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "Çì´õ ÆÄÀÏ ¸ñ·Ï¿¡¼­ ¾ÆÄ«À̺ê ÆÄÀÏ %s(À»)¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s(ÀÌ)°¡ %s(À¸)·Î ÀúÀåµÇ¾ú½À´Ï´Ù\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: ºó µð·ºÅ丮°¡ ¾Æ´Õ´Ï´Ù\n" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s %s µð·ºÅ丮 »èÁ¦¿¡ ½ÇÆÐÇÔ: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s %s ¸µÅ© ÇØÁ¦¿¡ ½ÇÆÐÇÔ: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s(ÀÌ)°¡ %s(À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "Àӽà ÆÄÀÏ %s(À»)¸¦ »ý¼ºÇÏ´Â µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "ÀÌ RPM ¹öÀüÀº ÆÐŰ¡ ¹öÀü '1' À» Áö¿øÇÏÁö ¾Ê½À´Ï´Ù\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "ÀÌ RPM ¹öÀüÀº ÁÖ ¹øÈ£(major number)°¡ <= 4 ÀÎ ÆÐŰ¡ ¸¸À» Áö¿øÇÕ´Ï´Ù\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignatureÀÌ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "Á¦¿Ü½Ãų °æ·Î´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇØ¾ß ÇÕ´Ï´Ù" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '=' À» Æ÷ÇÔÇØ¾ß ÇÕ´Ï´Ù" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '=' µÚ¿¡ '/' °¡ ¿Í¾ß ÇÕ´Ï´Ù" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "·Ñ¹é(rollback)ÀÇ Àμö´Â ½Ã°£/³¯Â¥ ½ºÅÆÇÁ ÀÔ´Ï´Ù" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "·Ñ¹é(rollback)ÀÇ ÀμöÀÎ ½Ã°£/³¯Â¥ ½ºÅÆÇÁ°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "ƯÁ¤ ÆÄÀÏÀ» »ý·«Çϱâ À§ÇÑ ¼³Á¤ÀÌ Àû¿ëµÈ °æ¿ì¿¡µµ, ÆÐÅ°Áö ¾ÈÀÇ ¸ðµç ÆÄÀÏÀ» ¼³" "Ä¡ÇÕ´Ï´Ù" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1680,150 +1682,150 @@ msgstr "" "<ÆÐÅ°Áö> À̸§°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö´Â ¸ðµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆÐÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆÐÅ°Áö" "¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ýÇÕ´Ï´Ù)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "ÆÐÅ°Áö ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "Àç¹èÄ¡ ±â´ÉÀÌ ¾ø´Â ÆÐÅ°ÁöÀÇ ÆÄÀÏÀ» Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "ÇϺÎ-µð·ºÅ丮·Î À̸§ º¯°æ½Ã »èÁ¦µÈ ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "ÆÐÅ°Áö¸¦ (Á¦°Å) »èÁ¦ÇÕ´Ï´Ù" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "<ÆÐÅ°Áö>+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇÔµÈ ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "<°æ·Î>·Î ½ÃÀ۵Ǵ ÆÄÀÏÀº ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "<°æ·Î>" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "--replacepkgs ¿Í --replacefiles ¿É¼ÇÀ» µ¿½Ã¿¡ »ç¿ëÇÕ´Ï´Ù" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "±âÁ¸¿¡ ¼³Ä¡µÈ ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "<ÆÐÅ°ÁöÆÄÀÏ>+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" "ÆÐÅ°Áö ¼³Ä¡¸¦ Çؽø¶Å©(#)·Î Ç¥½ÃÇÕ´Ï´Ù (-v ¿É¼Ç°ú ÇÔ²² »ç¿ëÇÏ´Â °ÍÀÌ ÁÁ½À´Ï" "´Ù)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "ÆÐÅ°ÁöÀÇ ¿î¿µÃ¼Á¦¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡Çϱâ Àü¿¡ µð½ºÅ© °ø°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇÔµÈ ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÕ´Ï´Ù" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "ÆÄÀϽýºÅÛÀ» º¯°æÇÏÁö ¾Ê°í, µ¥ÀÌÅͺ£À̽º¸¦ °»½ÅÇÕ´Ï´Ù" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "ÀÇÁ¸¼ºÀÌ ÀÖ´Â ÆÐÅ°Áö¸¦ ¼³Ä¡Çϵµ·Ï Àç¿ä±¸ÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "%%pre ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "%%post ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "%%preun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "%%postun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" "ÀÌ ÆÐÅ°Áö¿¡ ÀÇÇØ »ý¼ºµÇ´Â(triggered) ¾î¶°ÇÑ ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö " "¾Ê½À´Ï´Ù" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "¾î¶°ÇÑ %%triggerprein ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "¾î¶°ÇÑ %%triggerin ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "¾î¶°ÇÑ %%triggerun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "¾î¶°ÇÑ %%triggerpostun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1831,458 +1833,465 @@ msgstr "" "ÀÌÀü ¹öÀüÀÇ ÆÐÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--force ¿É¼ÇÀ» »ç¿ë½Ã¿¡´Â ÀÌ ¿É¼Ç" "ÀÌ ÀÚµ¿À¸·Î Àû¿ëµË´Ï´Ù)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "ÆÐÅ°Áö ¼³Ä¡¸¦ ÆÛ¼¾Æ®(%)·Î Ç¥½ÃÇÕ´Ï´Ù" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" "Àç¹èÄ¡ ±â´ÉÀÌ ÀÖ´Â ÆÐÅ°ÁöÀÇ °æ¿ì, ÁöÁ¤ÇÑ <µð·ºÅ丮>·Î Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "<ÀÌÀü°æ·Î>¿¡¼­ <»õ·Î¿î°æ·Î>·Î ÆÄÀÏÀ» Àç¹èÄ¡ ÇÕ´Ï´Ù" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "<ÀÌÀü°æ·Î>=<»õ·Î¿î°æ·Î>" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "ÀçÆÐŰ¡(repackaging)À¸·Î ÀÎÇØ »èÁ¦µÇ´Â ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã ±âÁ¸¿¡ ¼³Ä¡µÇ¾î ÀÖ´Â ÆÄÀÏÀ» µ¤¾î¾¹´Ï´Ù" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "ÆÐÅ°Áö°¡ ÀÌ¹Ì ¼³Ä¡µÇ¾î ÀÖ´Â °æ¿ì¿¡µµ ¼³Ä¡ÇÕ´Ï´Ù" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "»õ·Î ¼³Ä¡ »èÁ¦, ÀÌÀü ¼³Ä¡ À缳ġ, ÆÐÅ°Áö, <³¯Â¥> º¹±¸(back to date)" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "<³¯Â¥>" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÏÁö ¾Ê°í, Á¦´ë·Î ¼³Ä¡µÇ´ÂÁö¸¸ È®ÀÎÇÕ´Ï´Ù" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "¸ðµç ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõÇÕ´Ï´Ù" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "rpm °ËÁõ ¸ðµå" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "ÆÄÀÏÀÌ µé¾îÀÖ´Â ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "ÆÄÀÏ ½Äº°ÀÚ(identifier)¸¦ »ç¿ëÇÏ¿© ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "±×·ì ¾ÈÀÇ ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "Çì´õ ½Äº°ÀÚ(identifier)¸¦ »ç¿ëÇÏ¿© ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "ÆÐÅ°Áö ÆÄÀÏÀ» ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù (¿¹: ¹ÙÀ̳ʸ® *.rpm ÆÄÀÏ)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "ÆÐÅ°Áö ½Äº°ÀÚ(identifier)¸¦ »ç¿ëÇÏ¿© ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "rpm ÁúÀÇ ¸ðµå" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "Çì´õ ½Äº°ÀÚ(identifier)¸¦ »ç¿ëÇÏ¿© ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "ÁúÀÇ Å±׸¦ º¸¿©ÁÝ´Ï´Ù" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "spec ÆÄÀÏ¿¡ ´ëÇØ ÁúÀÇÇÕ´Ï´Ù" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "¼³Ä¡ ³»¿ëÀ» ÅëÇØ ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "ÆÐÅ°Áö·Î ÀÎÇØ »ý¼ºµÇ´Â(triggered) ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇÇÕ´Ï´Ù" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "rpm °ËÁõ ¸ðµå" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "ÀÇÁ¸¼ºÀ» ÇÊ¿ä·Î ÇÏ´Â ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "ÀÇÁ¸¼ºÀ» Á¦°øÇÏ´Â ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "¸ðµç ¼³Á¤ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "¸ðµç ¹®¼­ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "±âº» ÆÄÀÏ Á¤º¸¸¦ º¸¿©ÁÝ´Ï´Ù" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "%%ghost ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "%%license ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "%%readme ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "´ÙÀ½ÀÇ ÁúÀÇ Çü½ÄÀ» »ç¿ëÇϽʽÿä" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "spec ÆÄÀÏ ¾ÈÀÇ i18n Ç׸ñ(section)À» ´ëü(substitute)ÇÕ´Ï´Ù" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "³ª¿­µÈ ÆÄÀÏÀÇ »óÅÂ(state)¸¦ º¸¿©ÁÝ´Ï´Ù" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "ÆÄÀÏ ¸ñ·ÏÀ» ÀÚ¼¼È÷ º¸¿©ÁÝ´Ï´Ù" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "ÆÄÀÏÀÇ ¿ë·®À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "ÆÄÀÏÀÇ ½Éº¼¸¯ ¸µÅ© °æ·Î¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "ÆÄÀÏÀÇ ¼ÒÀ¯ÀÚ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "ÆÄÀÏÀÇ ±×·ìÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "ÆÄÀÏÀÇ ÃÖÁ¾ º¯°æ ½Ã°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "ÆÄÀÏÀÇ ¸ðµå¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "%verifyscript¸¦ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "SHA1 Ãà¾à(digest) Çì´õ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "ÆÐÅ°Áö¿¡ ¼­¸íÇÕ´Ï´Ù (±âÁ¸ÀÇ ¼­¸íÀº »èÁ¦µË´Ï´Ù)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "ÆÐÅ°Áö¿¡ ¼­¸íÇÕ´Ï´Ù (±âÁ¸ÀÇ ¼­¸íÀº »èÁ¦µË´Ï´Ù)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "¼­¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "%%%s %s(À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "%%%s %s(À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "¼Ò½º ÆÐÅ°Áö°¡ ÇÊ¿äÇϸç, ¹ÙÀ̳ʸ®°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" "%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "¾ÆÄ«À̺긦 Ǫ´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " ´ÙÀ½ ÆÄÀÏÀÇ " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾ÊÀ½)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "Á¤»ó(normal) " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "±³Ã¼µÊ(replaced) " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "¼³Ä¡µÇ¾î ÀÖÁö ¾ÊÀ½ " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "net °øÀ¯µÊ " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(¾Ë ¼ö ¾ø´Â %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(»óŸ¦ ¾Ë ¼ö ¾øÀ½) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "ÆÐÅ°Áö¿¡ ÆÄÀÏ ¼ÒÀ¯ÀÚ ¶Ç´Â id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "%s(À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "%s(À»)¸¦ ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö°¡ ¾øÀ½: %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" "%s spec ÆÄÀÏÀ» ÁúÀÇÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù, ÆÄÀÏÀ» ó¸®(parse)ÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s ±×·ìÀº ¾î¶² ÆÐÅ°Áö¿¡µµ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "%s(À»)¸¦ »ý¼ºÇÏ´Â(trigger) ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "%s(ÀÌ)°¡ À߸øµÊ: %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "%s(¿Í)°ú ÀÏÄ¡ÇÏ´Â ÆÐÅ°Áö°¡ ¾øÀ½: %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "%s(À»)¸¦ ÇÊ¿ä·Î ÇÏ´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "%s(À»)¸¦ Á¦°øÇÏ´Â ÆÐÅ°Áö°¡ ¾ø½À´Ï´Ù\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "%s ÆÄÀÏ: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "%s ÆÄÀÏÀº ¾î¶² ÆÐÅ°Áö¿¡µµ µé¾îÀÖÁö ¾Ê½À´Ï´Ù\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "ºÎÀûÇÕÇÑ ÆÐÅ°Áö ¹øÈ£: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "ÆÐÅ°Áö ±â·Ï(record) ¹øÈ£: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" @@ -2409,36 +2418,36 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä»çÇ×(³»¿ª)ÀÌ ¸¸Á·ÇÏÁö ¾ÊÀ½: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "========== Àç¹èÄ¡\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "%5d Á¦¿Ü %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d Àç¹èÄ¡ %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n" @@ -2532,7 +2541,7 @@ msgstr "%s( msgid "rollback %d packages to %s" msgstr "(+%d,-%d) ÆÐÅ°Áö¸¦ %sÀ¸·Î ·Ñ¹é(rollback)ÇÕ´Ï´Ù" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "Àдµ¥ ½ÇÆÐÇÔ: %s (%d)\n" @@ -2781,117 +2790,117 @@ msgstr " msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼­¸í! ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "¼­¸í: size(%d)+pad(%d)\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "%s(À»)¸¦ ½ÇÇàÇÒ ¼ö ¾øÀ½: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "pgp°¡ ½ÇÆÐÇÔ\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "pgp ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ¼­¸í ¿ë·®: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "¼­¸íÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼­¸íÀ» ¾ò¾ú½À´Ï´Ù\n" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "gpg°¡ ½ÇÆÐÇÔ\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "gpg ¼­¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG ¼­¸í ¿ë·®: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ ¾È¿¡ ºÎÀûÇÕÇÑ %%_signature ³»¿ë(spec)ÀÌ ÀÖ½À´Ï´Ù\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ ¾È¿¡ ¹Ýµå½Ã \"%%_gpg_name\"À» ¼³Á¤ÇØ¾ß ÇÕ´Ï´Ù\n" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¸ÅÅ©·Î ÆÄÀÏ ¾È¿¡ ¹Ýµå½Ã \"%%_pgp_name\"À» ¼³Á¤ÇØ¾ß ÇÕ´Ï´Ù\n" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Çì´õÀÇ Å©±â°¡ ³Ê¹« Å®´Ï´Ù" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "SHA1 Ãà¾à(digest) Çì´õ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "¾î¶°ÇÑ MD5 ¼­¸íµµ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "¼­¸íÀÌ ¾ø½À´Ï´Ù\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "¼Õ»óµÈ MD5 Ãà¾à(digest): Áö¿øÇÏÁö ¾ÊÀ½\n" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "¼­¸í: size(%d)+pad(%d)\n" @@ -2902,17 +2911,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "´ÙÀ½À» ãÀ» ¼ö ¾øÀ½ %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: " @@ -2975,99 +2984,99 @@ msgstr " msgid "locked db index %s/%s\n" msgstr "Àá±ÝµÈ db À妽º %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "ÀÎÁõµÇÁö ¾ÊÀº db ¿É¼Ç: \"%s\"(À»)¸¦ ¹«½ÃÇÕ´Ï´Ù.\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s(Àº)´Â ºÎÀûÇÕÇÑ ¼öÄ¡ °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s(Àº)´Â ³Ê¹« Å©°Å³ª ³Ê¹« ÀûÀº Á¤¼ö(long) °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s(Àº)´Â ³Ê¹« Å©°Å³ª ³Ê¹« ÀûÀº Á¤¼ö(int) °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE Ä«¿îÆ®´Â ¹Ýµå½Ã '1' À̾î¾ß ÇÕ´Ï´Ù.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "'%' µÚ¿¡ '{' °¡ ¾ø½À´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "'%{' µÚ¿¡ '}' °¡ ¾ø½À´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "ÅÂ±× Çü½ÄÀÌ ºñ¾îÀÖ½À´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "ÅÂ±× À̸§ÀÌ ºñ¾îÀÖ½À´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "¾Ë ¼ö ¾ø´Â ÅÂ±× ÀÔ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "¹è¿­ÀÇ ³¡ºÎºÐ¿¡ ']' °¡ ¿Í¾ßÇÕ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "ºÒÇÊ¿äÇÑ ']' °¡ ÀÖ½À´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "ºÒÇÊ¿äÇÑ '}' °¡ ÀÖ½À´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "Ç¥Çö½Ä¿¡ '?' °¡ ¿Í¾ßÇÕ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "Ç¥Çö½ÄÀÇ '?' µÚ¿¡ '{' °¡ ¿Í¾ßÇÕ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "Ç¥Çö½Ä¿¡ '}' °¡ ¿Í¾ßÇÕ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "'?' ÇϺÎÇ¥Çö½Ä(subexpression) µÚ¿¡ ':' ÀÌ ¿Í¾ßÇÕ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "Ç¥Çö½ÄÀÇ ':' µÚ¿¡ '{' °¡ ¿Í¾ßÇÕ´Ï´Ù" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "Ç¥Çö½ÄÀÇ ³¡ºÎºÐ¿¡ '|' °¡ ¿Í¾ßÇÕ´Ï´Ù" @@ -3090,261 +3099,261 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "(±âÁ¸ÀÇ) rpm[23] ÆÐŰ¡°ú ȣȯÇÏ´Â Çì´õ¸¦ »ý¼ºÇÕ´Ï´Ù" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" "DB ÅÂ±× ÃʱâÈ­[dbiTagsInit]: ÀÎÁõµÇÁö ¾ÊÀº ÅÂ±× À̸§: \"%s\"(Àº)´Â ¹«½ÃµË´Ï" "´Ù\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "db%2$d(À»)¸¦ ÀÌ¿ëÇÏ¿© %1$s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù - %3$s (%4$d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "%s À妽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%xÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%2$s À妽º¿¡¼­ \"%1$s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "%3$s¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦ÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡ÇÏ´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%2$s À妽º¿¡ \"%1$s\"(À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇÏ´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "db3¸¦ À籸ÃàÇÑ ÈÄ¿¡ %s(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%2$s¿¡ %1$s µ¥ÀÌÅͺ£À̽º¸¦ À籸Ãà ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "Àӽà µ¥ÀÌÅͺ£À̽º %s(ÀÌ)°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "dbapi %d·Î ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "dbapi %d·Î »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹ÄÚµå ¹øÈ£ %u(ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "%u¿¡ óÀ½ºÎÅÍ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "º¹±¸Çϱâ À§ÇØ $2$sÀÇ ÆÄÀÏÀ» $1$sÀÇ ÆÄÀÏ·Î ±³Ã¼ÇÕ´Ï´Ù" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== %d È°¼º %d ºñ¾îÀÖÀ½\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(ºñ¾îÀÖÀ½)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(ºñ¾îÀÖÀ½)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "¸ÅÅ©·Î %%%s¿¡ Á¾·áµÇÁö ¾ÊÀº ³»¿ë(body)ÀÌ ÀÖ½À´Ï´Ù\n" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "¸ÅÅ©·Î %%%s¿¡ ºÎÀûÇÕÇÑ À̸§ÀÌ ÀÖ½À´Ï´Ù (%%define)\n" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "¸ÅÅ©·Î %%%s¿¡ Á¾·áµÇÁö ¾ÊÀº ¿É¼ÇÀÌ ÀÖ½À´Ï´Ù\n" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "¸ÅÅ©·Î %%%s¿¡ ºñ¾îÀÖ´Â ³»¿ë(body)ÀÌ ÀÖ½À´Ï´Ù\n" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "¸ÅÅ©·Î %%%s(À»)¸¦ È®Àå(expand)Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "¸ÅÅ©·Î %%%s¿¡ ºÎÀûÇÕÇÑ À̸§ÀÌ ÀÖ½À´Ï´Ù (%%undefine)\n" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "¸ÅÅ©·Î %%%s (%s)´Â ·¹º§ %d ÀÌÇÏ¿¡¼­´Â »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "%2$s(%3$s)¿¡ ¾Ë ¼ö ¾ø´Â ¿É¼Ç %1$c(ÀÌ)°¡ ÀÖ½À´Ï´Ù\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "¹Ýº¹ Ƚ¼ö(%d)°¡ ÃÖ´ëÄ¡(%d) º¸´Ù Å®´Ï´Ù\n" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "%c(ÀÌ)°¡ Á¾·áµÇÁö ¾ÊÀ½: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "'%%' ´ÙÀ½¿¡ ó¸®ÇÒ ¼ö ¾ø´Â(unparseable) ¸ÅÅ©·Î°¡ ÀÖ½À´Ï´Ù\n" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "¸ÅÅ©·Î %%%.*s¸¦ ãÀ» ¼ö ¾ø½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "¸ñÇ¥´ë»ó(Target) ¹öÆÛ ¿À¹öÇ÷οì\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "%s ÆÄÀÏ: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "%s ÆÄÀÏÀÌ %u ¹ÙÀÌÆ® º¸´Ù Àû½À´Ï´Ù\n" @@ -3402,27 +3411,27 @@ msgstr " msgid "Unknown or unexpected error" msgstr "¾Ë ¼ö ¾ø´Â ȤÀº ¿¹»óÄ¡ ¸øÇÑ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "%s¿¡ %s(À¸)·Î ±â·Ï(logging)ÇÕ´Ï´Ù, pw %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(¿À·ù ¾øÀ½)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "Ä¡¸íÀû ¿À·ù: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "¿À·ù: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "°æ°í: " @@ -3456,12 +3465,12 @@ msgstr "%s@%s msgid "error: %sport must be a number\n" msgstr "¿À·ù: %s Æ÷Æ®´Â ¹Ýµå½Ã ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "URL Æ÷Æ®´Â ¹Ýµå½Ã ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "%s(À»)¸¦ »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n" diff --git a/po/no.po b/po/no.po index cf79358..30dec2e 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -19,44 +19,44 @@ msgstr "feil med avhengigheter under bygging:\n" msgid "Unable to open spec file %s: %s\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunne ikke åpne tar-rør: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Feil under lesing av spec-fil fra %s\n" -#: build.c:199 +#: build.c:201 #, 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:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunne ikke kjøre stat på %s: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "Fil %s er ikke en vanlig fil.\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Bygger målplattformene: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Bygger for mål %s\n" @@ -74,48 +74,48 @@ msgstr "feil under lesing av header fra pakke\n" msgid "cannot re-open payload: %s\n" msgstr "kan ikke gjenåpne \"payload\": %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "skriv ut hvilken versjon av rpm som brukes" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "gi mindre detaljert info" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "gi mer detaljert info" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "skriv ut makroutvidelsen av +" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "send stdout til " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "bruk som toppnivåkatalog" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -131,23 +131,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "les i stedet for standard rpmrc-fil(er)" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "vis endelig rpmrc og makrokonfigurasjon" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "slå av bruk av libio(3) API" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "feilsøking på protokoll-datastrøm" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "feilsøk rpmio I/U" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "feilsøk URL-cache håndtering" @@ -180,12 +180,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM versjon %s\n" @@ -205,122 +205,122 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "Bruk: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "Bruk -e eller --erase i stedet.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Intern feil i argumentprosesseringen (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "kun ett større modi kan spesifiseres" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "uventede flagg for spørring" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "ventet spørringsformat" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "uventet spørringskilde" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath oppgitt for operasjon som ikke bruker en database" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "kun installasjon, oppgradering, rmsource og rmspec kan tvinges" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "filer kan kun omplasseres under pakkeinstallasjon" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "kune en av --prefix eller --relocate kan brukes" -#: rpmqv.c:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan kun brukes ved installasjon av nye pakker" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argumenter til --prefix må begynne med en /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan kun spesifiseres under pakkeinstallasjon" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -328,7 +328,7 @@ msgstr "" "skript som slår av alternativer kan kun spesifiseres under pakkeinstallasjon " "og sletting" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -336,124 +336,125 @@ msgstr "" "alternativer som slår av utløsing kan kun spesifiseres under " "pakkeinstallasjon, og sletting" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "ingen filer å signere\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "kan ikke aksessere fil %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp ikke funnet: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Skriv inn passord: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Passordsjekk feilet\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Passord er ok.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "kjøring feilet\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "ingen pakkefiler oppgitt for ombygging" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "ingen spec-fil oppgitt for bygging" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "ingen tar-fil oppgitt for bygging" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "ingen pakker oppgitt for installering" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "ingen pakker oppgitt for installering" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "ingen argumenter oppgitt for spørring" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "ingen argumenter oppgitt for verifisering" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "uventede argumenter til --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "ingen argumenter oppgitt for spørring" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "Kjører(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Kjøring av %s feilet (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "Ugyldig sluttstatus fra %s (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -508,184 +509,184 @@ msgstr "- ikke st msgid "&& and || not suported for strings\n" msgstr "&& og || ikke støttet for strenger\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "syntaksfeil i uttrykk\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIDSJEKK feil: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Mangler '(' i %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Mangler ')' i %s(%s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ugyldig %s-tegn: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Mangler '(' i %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "To filer på én linje: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Filen må begynne med \"/\": %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Fil listet to ganger: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolsk lenke peker til BuildRoot: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Fil ikke funnet: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Ugyldig eier/gruppe: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Fil %s: %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "linje %d: Filnavn ikke tillatt: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "Installerer %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Kunne ikke kjøre %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s feilet\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "kunne ikke skrive alle data til %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "Klarte ikke å finne %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -714,161 +715,161 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "feil under oppretting av arkiv %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy skriving feilet: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy: feil under lesing: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Kunne ikke åpne PreIn-fil: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Kunne ikke åpne PreUn-fil: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Kunne ikke åpne PostIn-fil: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Kunne ikke åpne PostUn-fil: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Kunne ikke åpne VerifyScript-fil: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek feilet: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s er ikke en RPM-pakke\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: leser header fra %s\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Kunne ikke skrive header til %s: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "Ugyldige CSA-data\n" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Kunne ikke skrive header til %s: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Genererer signatur: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "Kunne ikke åpne %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke skrive pakke: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Kunne ikke åpne sigmål %s: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Kunne ikke skrive header til %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Kunne ikke lese \"payload\" fra %s: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke skrive \"payload\" til %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -943,123 +944,123 @@ msgstr "linje %d: Feil under lesing av %%filer: %s\n" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "%s-felt må være tilstede i pakken: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "Kunne ikke åpne ikon %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "Kan ikke lese ikon %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "Ukjent ikontype: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "linje %d: Tagg tar kun et enkelt tegn: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "linje %d: Feilutformet tagg: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "linje %d: Tom tagg: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linje %d: Ugyldig tegn '-' i %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot kan ikke være \"/\": %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "linje %d: Prefiks må ikke slutte på \"/\": %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "linje %d: Docdir må begynne med '/': %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "linje %d: Epoch/serienummer må være et tall: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "linje %d: Ugyldig %s: kvalifikatorer: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "linje %d: Ugyldig BuildArchitecture format: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Intern feil: Ugyldig tag %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "Ugyldig pakkespesifikasjon: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "Pakke eksisterer allerede: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "linje %d: Ukjent tagg: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "Spec-fil kan ikke bruke BuildRoot\n" @@ -1098,41 +1099,41 @@ msgstr "linje %d: Ugyldig argument til %%setup: %s\n" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "linje %d: Ugyldig %%setup flagg %s: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "linje %d: Trenger argument til %%patch -b: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "linje %d: Trenger argument til %%patch -z: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "linje %d: Trenger argument til %%patch -p: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "linje %d: Ugyldig argument til %%patch -p: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "For mange patcher!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "linje %d: Ugyldig argument til %%patch: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "linje %d: %%prep for andre gang\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1140,17 +1141,17 @@ msgstr "" "linje %d: Avhengighetstegn må begynne med alfanumerisk tegn, '_' eller '/': %" "s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "linje %d: Filnavn ikke tillatt: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "linje %d: Filnavn med versjon ikke tillatt: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "linje %d: Versjon kreves: %s\n" @@ -1175,47 +1176,47 @@ msgstr "linje %d: skriptprogram m msgid "line %d: Second %s\n" msgstr "linje %d: Andre %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "linje %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "Kan ikke åpne %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "Åpen %%if\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean returnerer %d\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else uten %%if\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif uten %%if\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "ugyldig %%include utsagn\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "Ingen kompatible arkitekturer funnet for bygging\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "Pakken har ingen %%description: %s\n" @@ -1371,59 +1372,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linje %d: Ugyldig nummer: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linje %d: Ugyldig no%s nummer: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linje %d: Ugyldig %s-nummer: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(feil 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Ugyldig magi" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Ugyldig/ulesbar header" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "For stor header" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Ukjent filtype" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "Mangler hard(e) lenke(er)" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "MD5-sum stemmer ikke" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Intern feil" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " feilet - " @@ -1432,244 +1433,245 @@ msgstr " feilet - " msgid "package %s was already added, replacing with %s\n" msgstr "pakke %s er allerede installert" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "ingen pakker\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() feilet å returnere størrelse: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "feil under kjøring av stat på %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "fil %s er på en ukjent enhet\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s lagret som %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s feilet: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s feilet: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s opprettet som %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "feil under oppretting av midlertidig fil %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead feilet\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature feilet\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ingen signatur tilgjengelig\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead feilet\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Fread feilet: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "les i stedet for standard makrofil(er)" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "eksluderingssti må begynne med en /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "relokasjoner må begynne med en /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "relokasjoner må inneholde et =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "relokasjoner må ha et / etter =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "installer alle filer, selv konfigurasjoner som ellers kan hoppes over" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1677,146 +1679,146 @@ msgstr "" "fjern alle pakker som er lik (normalt vil en feil genereres hvis " " spesifiserer flere pakker)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "ikke kjør pakkespesifikke skriptlet" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "omplasser filer i ikke-omplasserbar pakke" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "lagre slettede pakkefiler ved å endre navn til underkatalog" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "slett (avinstaller) pakke" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "ikke installer dokumentasjon" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "hopp over filer med innledende komponent " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "forkortning for --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "oppgrader pakke(r) hvis allerede installert" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "skriv ut skigarder etter som pakken installeres (nyttig med -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "ikke verifiser pakkearkitektur" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "ikke verifiser operativsystem for pakken" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "ikke sjekk diskplass før installasjon" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "installer dokumentasjon" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "installer pakke" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "oppdater databasen, men ikke modifiser filsystemet" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "ikke verifiser pakkeavhengigheter" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "ikke ordne pakkeinstallasjon for å tilfredsstille avhengigheter" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "ikke kjør noen %%pre skriptlet (hvis noen)" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "ikke kjør %%post skriptlet (hvis noen)" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "ikke kjør %%preun skriptlet (hvis noen)" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "ikke kjør %%postun skriptlet (hvis noen)" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "ikke verifiser pakkeavhengigheter" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "verifiser pakkesignatur" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "Ikke kjør noen skriptlets som utløses av denne pakken" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "ikke kjør %%triggerprein skriptlets" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "ikke kjør %%triggerin skriptlets" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "ikke kjør %%triggerun skriplets" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "ikke kjør %%triggerpostun skriptlets" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1824,455 +1826,462 @@ msgstr "" "oppgrader til en gammel versjon av pakken (--force ved oppgraderinger gjør " "dette automatisk)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "skriv ut prosentvis fremgang etter som pakken installeres" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "omplasser pakken til , hvis den er omplasserbar" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "omplasser filer fra sti til " -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "lagre slettede pakkefiler ved ompakking" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "installer selv om pakken erstatter installerte filer" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "reinstaller selv om pakken allerede er installert" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 #, fuzzy msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "ikke installer, men si ifra om det ville virke eller ikke" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "oppgrader pakke(r)" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "spør/verifiser alle pakker" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "rpm spørremodus" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "spør/verifiser pakke(r) som eier fil" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "spør/verifiser pakke(r) som eier fil" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "spør/verifiser pakke(r) i gruppe" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "spør/verifiser pakke(r) som eier fil" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "spør/verifiser pakker utløst av " -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "spør/verifiser pakke(r) som eier fil" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "rpm spørremodus" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "spør/verifiser pakke(r) som eier fil" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "vis kjente tagger for spørring" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "spørring på spec-fil" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "spør/verifiser pakke(r) i gruppe" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "spør pakker utløst av " -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "spør etter etter pakker som trenger funksjonalitet" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "spør etter pakker som tilbyr funksjonalitet" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "ikke verifiser størrelse på filer" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "ikke verifiser sti til symbolske lenker for filer" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "ikke verifiser eier av filer" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "ikke verifiser gruppe for filer" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "ikke verifisert endringsdato for filer" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "ikke verifiser modus for filer" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "ikke verifiser filer i pakke" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "ikke verifiser pakkeavhengigheter" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "ikke kjør %verifyscript (hvis noen)" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "ikke verifiser header SHA1 digest" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "signer en pakke (forkast nåværende signatur)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "verifiser pakkesignatur" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "signer en pakke (forkast nåværende signatur)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "generer signatur" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Datatype %d ikke støttet\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "kan ikke opprette %%%s %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "kan ikke skrive til %%%s %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "kildepakke forventet, binær funnet\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "kildepakke inneholder ikke en .spec-fil\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: kjører %s-skript (hvis noen)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "klarte ikke å åpne %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s feilet\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "ukorrekt format: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(inneholder ingen filer)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normal " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "erstattet " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "ikke installert" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "delt via nett " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(ingen tilstand)" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(ukjent %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(ingen tilstand)" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "pakken har verken fileier eller id-lister\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "pakken har verken fileier eller id-lister\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "kan ikke spørre på %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "feil under åpning av %s: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "spørring på %s feilet\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "kildepakker i gammelt format kan ikke spørres\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "ingen pakke utløser %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "gruppe %s inneholder ingen pakker\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "ingen pakke utløser %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "kunne ikke opprette %s: %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "ingen pakke utløser %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "ingen pakke krever %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "ingen pakke gir %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s eies ikke av noen pakke\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldig pakkenummer: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "pakke %s er ikke installert\n" @@ -2395,36 +2404,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "pakke %s er i konflikt: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "eksluderer %s %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d omplasser %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ekskluderer multilib-sti %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "eksluderer %s %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "relokerer %s til %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "relokerer katalog %s til %s\n" @@ -2518,7 +2527,7 @@ msgstr "Installerer %s\n" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "lesing feilet: %s (%d)\n" @@ -2761,116 +2770,116 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Kunne ikke kjøre %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "For stor header" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "ikke verifiser header SHA1 digest" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "hopp over MD5-signaturer" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2881,17 +2890,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "ekskluderer katalog %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "mangler %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "feilede avhengigheter:\n" @@ -2954,99 +2963,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "mangler { etter %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "mangler } etter %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3067,255 +3076,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "generer headere som er kompatible med (gamle) rpm[23] pakker" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan ikke åpne %s-indeks ved bruk av db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "kan ikke åpne %s indeks\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "feil(%d) under fjerning av post %s fra %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "feil(%d) under lagring av post %s til %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "Overflyt i målbuffer\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "Fil %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Fil %s er mindre enn %u bytes\n" @@ -3372,27 +3381,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "fatal feil: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "feil: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "advarsel: " @@ -3426,12 +3435,12 @@ msgstr "Passord for %s@%s: " msgid "error: %sport must be a number\n" msgstr "feil: %s-port må være et tall\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "url-port må være et tall\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "kunne ikke opprette %s: %s\n" diff --git a/po/pl.po b/po/pl.po index b5fe5d5..37c9082 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -26,44 +26,44 @@ msgstr "niespe msgid "Unable to open spec file %s: %s\n" msgstr "Nie mo¿na otworzyæ pliku spec: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, 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:171 +#: build.c:173 #, 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:199 +#: build.c:201 #, 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:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "stat nie powiod³o siê %s: %s" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Plik: %s nie jest regularnym plikiem\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Budowanie dla platform: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Budowanie dla %s\n" @@ -81,48 +81,48 @@ msgstr "b msgid "cannot re-open payload: %s\n" msgstr "nie mo¿na otworzyæ pliku %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "wy¶wietl wersjê u¿ywanego rpm-a" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "wy¶wietl wersjê u¿ywanego rpm-a" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "przeka¿ standartowe wyj¶cie do " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "u¿yj jako katalogu najwy¿szego poziomu" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -138,23 +138,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -188,12 +188,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "plik %s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM wersja %s\n" @@ -213,138 +213,138 @@ msgstr "Program mo msgid "Usage: %s {--help}\n" msgstr "U¿ycie: rpm {--help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "U¿yj -e lub --erase\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "b³êdna konstrukcja argumentów odpytywania" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "b³êdna konstrukcja argumentów odpytywania" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "b³êdna konstrukcja argumentów odpytywania" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate" -#: rpmqv.c:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 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:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /" -#: rpmqv.c:759 +#: rpmqv.c:761 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:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów" -#: rpmqv.c:810 +#: rpmqv.c:812 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:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, fuzzy msgid "" "--nodeps may only be specified during package building, rebuilding, " @@ -353,14 +353,14 @@ msgstr "" "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub " "sprawdzania pakietów" -#: rpmqv.c:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -368,107 +368,108 @@ msgstr "" "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania " "pakietów lub przebudowywania bazy" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "brak dostêpu do pliku %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "nie znaleziono pgp: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Podaj has³o: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Weryfikacja has³a nieudana\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Has³o jest prawid³owe.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "B³êdny %%_signature spec w pliku makra.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "wykonanie nie powiod³o siê\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "nie podano nazw pakietów do przebudowania" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "nie podano nazw plików spec do budowania" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "nie podano nazw plików tar do budowania" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "nie podano nazw plików do zainstalowania" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "nie podano nazw plików do zainstalowania" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "nie podano argumentów dla trybu zapytañ" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "nie podano argumentów dla sprawdzania" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "nieoczekiwane argumenty dla --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "nie podano argumentów dla trybu zapytañ" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Nie mo¿na otworzyæ pliku tymczasowego" -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "Wykonywanie: %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Wykonanie %s nie powiod³o siê (%s)" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "B³êdny status wyj¶cia z %s (%s)" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -531,185 +532,185 @@ msgstr "- nie jest wspierane dla msgid "&& and || not suported for strings\n" msgstr "&& i || nie jest wspierane dla ³añcuchów znakowych" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "b³±d sk³adni w wyra¿eniu" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK nie powiod³o siê: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "Brak '(' w %s %s" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "Brak ')' w %s(%s" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "B³êdny znak %s: %s" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Brak '(' w %s %s" -#: build/files.c:560 +#: build/files.c:562 #, fuzzy, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Brak bia³ego znaku po %s(): %s" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "B³êdna sk³adnia: %s(%s)" -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "B³êdne okre¶lenie trybu: %s(%s)" -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "B³êdne okre¶lenie dirmode: %s(%s)" -#: build/files.c:775 +#: build/files.c:777 #, 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:786 +#: build/files.c:788 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Powtórzone okre¶lenie lokalizacji %.*s w %%lang(%s)" -#: build/files.c:949 +#: build/files.c:951 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "Limit trafieñ dla %%docdir" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Dwa pliki w jedenj linii: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Plik musi siê zaczynaæ od \"/\": %s" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Plik podany dwukrotnie: %s" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Plik nie zgadza siê z prefiksem (%s): %s" -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Nie znaleziono pliku: %s" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "B³êdny u¿ytkownik/grupa: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, 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:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Plik musi siê zaczynaæ od \"/\": %s" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "linia %d: Wersja niedozwolona: %s" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Nie znaleziono pliku: %s" -#: build/files.c:1847 +#: build/files.c:1849 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Nie mo¿na otworzyæ %%files pliku: %s" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "linia: %s" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Nie mo¿na uruchomiæ %s" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Nie mo¿na wykonaæ fork na %s" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s nie powiod³o siê" -#: build/files.c:2402 +#: build/files.c:2404 #, 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:2560 +#: build/files.c:2562 #, fuzzy, c-format msgid "Finding %s: (using %s)...\n" msgstr "Wyszukiwanie wymaganych zasobów...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "Wyszukiwanie nie powiod³o siê" -#: build/files.c:2726 +#: build/files.c:2728 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Przetwarzanie plików: %s\n" @@ -738,162 +739,162 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Nie mo¿na rozwi±zaæ nazwy systemu: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, 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:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "utworzenie archiwum pliku %s nie powiod³o siê: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "zapis w trybie cpio_copy nie powiód³ siê: %s" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "odczyt w trybie cpio_copy nie powiód³ siê: %s" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Nie mo¿na otworzyæ pliku PreIn: %s" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Nie mo¿na otworzyæ pliku PreUn: %s" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Nie mo¿na otworzyæ pliku PostIn: %s" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Nie mo¿na otworzyæ pliku PostUn: %s" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Nie mo¿na otworzyæ pliku VerifyScript: %s" -#: build/pack.c:267 +#: build/pack.c:269 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Nie mo¿na otworzyæ skryptu Trigger: %s" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: otwieranie %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: czytanie %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: readLead nie powiod³o siê\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s nie jest pakietem RPM\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: czytanie nag³ówka z %s\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nie mo¿na zapisaæ %s" -#: build/pack.c:512 +#: build/pack.c:514 #, fuzzy msgid "Bad CSA data\n" msgstr "B³êdne dane CSA" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Nie mo¿na zapisaæ %s" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Generowanie sygnatury: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "Nie mo¿na otworzyæ %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nie mo¿na odczytaæ sigtarget: %s" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "nie mo¿na utworzyæ %s" @@ -968,123 +969,123 @@ msgstr "linia %d: B msgid "line %d: Second %%files list\n" msgstr "linia %d: Druga lista %%files" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, fuzzy, c-format msgid "Architecture is excluded: %s\n" msgstr "Architektura nie jest wspierana: %s" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, fuzzy, c-format msgid "Architecture is not included: %s\n" msgstr "Architektura nie jest wspierana: %s" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "Ten OS nie jest wspierany: %s" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "Ten OS nie jest wspierany: %s" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "pole %s musi byæ obecne w pakiecie: %s" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Podwójne wpisy %s w pakiecie: %s" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "Nie mo¿na odczytaæ ikony: %s" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "Nieznany typ ikony: %s" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "linia %d: B³edna opcja %s: %s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "linia %d: Niepoprawna forma etykiety: %s" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "linia %d: Pusta etykieta: %s" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linia %d: Nielegalny znak '-' w %s: %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "linia %d: Prefiksy nie mog± siê koñczyæ na \"/\": %s" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "linia %d: wpis Docdir musi siê zaczynaæ od '/': %s" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "linia %d: pole Epoch/Serial musi byæ liczb±: %s" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "linia %d: B³êdny numer %s: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "linia %d: B³êdny format wpisu BuildArchitecture: %s" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "B³±d wewnêtrzny: Fa³szywa etykieta %d" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr "B³êdna specyfikacja pakietu: $s" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "Pakiet ju¿ istnieje: %s" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "linia %d: Nieznana etykieta: %s" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 #, fuzzy msgid "Spec file can't use BuildRoot\n" msgstr "W pliku spec nie mo¿na u¿ywaæ wpisów BuildRoot" @@ -1124,59 +1125,59 @@ msgstr "linia %d: B msgid "line %d: Bad %%setup option %s: %s\n" msgstr "linia %d: B³êdna opcja %%setup %s: %s" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "linia %d: Wymagany argument dla %%patch -b: %s" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "linia %d: Wymagany argument dla %%patch -z: %s" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "linia %d: Wymagany argument dla %%patch -p: %s" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "linia %d: B³êdny argument dla %%patch -p: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 #, fuzzy msgid "Too many patches!\n" msgstr "Zbyt wiele ³at!" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "linia %d: B³êdny argument dla %%patch: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, fuzzy, c-format msgid "line %d: second %%prep\n" msgstr "linia %d: druga sekcja %%prep" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" "linia %d: Znaki musz± sie zaczynaæ od alfanumerycznych, '_' lub '/': %s" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "linia %d: Nazwa pliku niedozwolona: %s" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "linia %d: Wersja w nazwach plików niedozwolona: %s" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "linia %d: Wymagana wersja: %s" @@ -1201,48 +1202,48 @@ msgstr "linia %d: skrypt (tu jako program) musi si msgid "line %d: Second %s\n" msgstr "linia %d: Drugi %s" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "linia %d: %s" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "Nie mo¿na otworzyæ: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "Niedomkniête %%if" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Napotkano %%else bez if" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Napotkano %%endif bez if" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "b³ednie sformatowany wpis %%include" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Nie mo¿na budowaæ na takie architektury" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Pakiet nie ma %%description: %s" @@ -1409,60 +1410,60 @@ msgstr "wymu msgid "lookup i18N strings in specfile catalog" msgstr "wyszukaj wpisy I18N w katalogu speca" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "linia %d: B³êdny numer: %s" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linia %d: b³êdny numer no%s: %d" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linia %d: B³êdny numer %s: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(b³±d 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "B³êdny magic" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "B³êdny/nieczytelny nag³ówek" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Rozmiar nag³ówka jest zbyt du¿y" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Nieznany typ pliku" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "Brak twardego dowi±zania" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "B³±d wewnêtrzny" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " nie powiod³o siê -" @@ -1471,254 +1472,255 @@ msgstr " nie powiod msgid "package %s was already added, replacing with %s\n" msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "b³êdny status pliku: %s" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "Udostêpniane zasoby:" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "znaleziono %d pakietów\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "usuwanie indeksu grupy\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(nie jest liczb±)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(nie jest liczb±)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(nie jest liczb±)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "utworzenie %s nie powiod³o siê\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "stat nie powiod³o siê %s: %s" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/fs.c:327 +#: lib/fs.c:330 #, fuzzy, c-format msgid "file %s is on an unknown device\n" msgstr "plik %s jest na nieznanym urz±dzeniu" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "linia %d: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ostrze¿enie: %s zapisany jako %s" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "skasowanie katalogu %s nie powiod³o siê" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ostrze¿enie: %s utworzony jako %s" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "b³±d w tworzeniu pliku tymczasowego %s" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature nie powiod³o siê\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Sygnatura nie jest dostêpna\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "¶cie¿ki wy³±czeñ musz± siê zaczynaæ od /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "drzewa przesuniêæ musz± zaczynaæ sie od /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "specyfikacja przesuniêcia musi zawieraæ =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "specyfikacja przesuniêcia musi zawieraæ / po =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by " "pominêto" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1726,153 +1728,153 @@ msgstr "" "usuñ wszystkie pakiety, które spe³niaj± wzorzec (zazwyczaj " "wy¶wietlany jest b³±d gdy opisuje wiele pakietów)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "nie wykonuj ¿adnych skryptów instalacyjnych" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "usuñ (odinstaluj) pakiet" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "znaleziono %d pakietów\n" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "nie instaluj dokumentacji" -#: lib/poptI.c:137 +#: lib/poptI.c:136 #, fuzzy msgid "skip files with leading component " msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -p + " -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "nie sprawdzaj architektury systemu" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "nie sprawdzaj rodzaju systemu operacyjnego" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "zainstaluj dokumentacjê" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "instaluj pakiet" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "nie sprawdzaj zale¿no¶ci pakietu" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "nie wykonuj ¿adnych etapów" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "nie wykonuj ¿adnych etapów" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "nie wykonuj ¿adnych etapów" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "nie wykonuj ¿adnych etapów" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "nie sprawdzaj zale¿no¶ci pakietu" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "sprawd¼ sygnaturê pakietu" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "odpytywanie pakietów zahaczanych przez pakiet" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "nie wykonuj ¿adnych skryptów instalacyjnych" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "nie wykonuj ¿adnych skryptów instalacyjnych" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "nie wykonuj ¿adnych skryptów instalacyjnych" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "nie wykonuj ¿adnych skryptów instalacyjnych" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1880,480 +1882,487 @@ msgstr "" "uaktualnij do starej wersji (--force robi to samo automatycznie podczas " "uaktualniania)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "wy¶wietlaj stan instalacji w procentach" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "przesuñ pliki pakietu do drzewa , je¶li jest przesuwalny" -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "przesuñ pliki z drzewa do drzewa " -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr " --relocate =" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr " --upgrade " -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "odpytuj wszystkie pakiety" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "tryb odpytywania" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "zapytaj do jakiego pakietu nale¿y " -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "sprawdzanie do jakiego pakietu nale¿y plik" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "odpytywanie pakietów w grupie" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "sprawdzanie do jakiego pakietu nale¿y plik" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "odpytywanie pakietu" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "sprawdzanie do jakiego pakietu nale¿y plik" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "tryb odpytywania" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "sprawdzanie do jakiego pakietu nale¿y plik" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "odpytywanie pliku spec" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "odpytywanie pakietów w grupie" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "odpytywanie pakietów zahaczanych przez pakiet" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "tryb odpytywania" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "odszukaj pakiety wymagaj±ce zasobu " -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "odszukaj pakiety udostêpniaj±ce zasób " -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "wy¶wietl wszystkie pliki konfiguracyjne" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "wy¶wietl wszystkie pliki dokumentacji" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "podaj postawowe informacje o pliku" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "wy¶wietl pliki zawarte w pakiecie" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "u¿yj nastêpuj±cego formatu zapytania" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "pakiet ¼ród³owy nie zawiera pliku .spec" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "wy¶wietl status pokazywanych plików" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "wy¶wietl wiêcej informacji o plikach z listy" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "nie sprawdzaj zale¿no¶ci pakietu" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "nie wykonuj ¿adnych etapów" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "nie sprawdzaj plików pakietu" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "sprawd¼ sygnaturê pakietu" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "generuj sygnaturê PGP/GPG" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Typ danych %d nie jest obs³ugiwany\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "nie mo¿na utworzyæ %s" -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "nie mo¿na zapisaæ do %s" -#: lib/psm.c:497 +#: lib/psm.c:499 #, fuzzy msgid "source package expected, binary found\n" msgstr "spodziewany pakiet ¼ród³owy a nie binarny" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "pakiet ¼ród³owy nie zawiera pliku .spec" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, 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:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s nie istnieje - u¿yto grupy root" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, 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:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " na pliku " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nie mo¿na otworzyæ %s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s nie powiod³o siê" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "b³±d w formacie: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(nie zawiera plików)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normalny " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "zast±piony " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "niezainstalowany" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "udostêpniony w sieci" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(brak statusu)" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(nieznany %3d)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "(brak statusu)" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, 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:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "nie mo¿na odwi±zaæ %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "odpytywanie %s nie powiod³o siê\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "znaleziono %d pakietów\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s nie zawiera ¿adnych pakietów\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Odczytanie %s nie powiod³o siê: %s." -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "¿aden pakiet nie wymaga %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "¿aden pakiet nie udostêpnia %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "plik %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, 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:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "b³êdny numer pakietu: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "numer rekordu pakietu: %d\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "nie mo¿na odczytaæ rekordu %d\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" @@ -2479,36 +2488,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Ten OS nie jest wspierany: %s" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "wy³±czanie %s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "wy³±czanie %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "przesuwanie %s do %s\n" @@ -2603,7 +2612,7 @@ msgstr "Instalacja %s\n" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "odczyt nie powiód³ siê: %s (%d)" @@ -2849,122 +2858,122 @@ msgstr "Stara sygnatura PGP\n" 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:248 +#: lib/signature.c:250 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Rozmiar sygnatury: %d\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nie mo¿na uruchomiæ %s" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "pgp nie powiod³o siê" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "zapisanie sygnatury przez pgp nie powiod³o siê" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "rozmiar sygnatury PGP: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "nie mo¿na odczytaæ sygnatury" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Mam %d bajtów sygnatury PGP\n" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "gpg nie powiod³o siê" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "zapisanie sygnatury przez gpg nie powiod³o siê" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "rozmiar sygnatury GPG: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "B³êdny %%_signature spec w pliku makra.\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Rozmiar nag³ówka jest zbyt du¿y" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "nie sprawdzaj plików pakietu" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "pomiñ wszelkie sygnatury MD5" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Brak sygnatury\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Blok sygnatury: %d\n" @@ -2975,17 +2984,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "brak %s\n" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: " @@ -3048,100 +3057,100 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 #, fuzzy msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "brak { po %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "brak } po %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "pusty format etykiety" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "pusta nazwa etykiety" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "nieznana etykieta" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "spodziewany ] na koñcu tablicy" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "nie spodziewany ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "nie spodziewany }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "spodziewany ? w wyra¿eniu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "spodziewany { po ? w wyra¿eniu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "spodziewany } w wyra¿eniu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "spodziewany : po podwyra¿eniu ?" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "spodziewany { po : w wyra¿eniu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "spodziewany | na koñcu wyra¿enia" @@ -3164,258 +3173,258 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nie mo¿na otworzyæ %s przy %s:%d" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nie mo¿na otworzyæ %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "usuwanie indeksu nazw\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "b³±d pobierania rekordu %s z %s" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "b³±d usuwania rekordu %s z %s" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "b³±d szukania pakietu %s\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "b³±d zapisywania rekordu %s do %s" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "naprawcze zastêpowanie plików w %s plikami z %s" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== aktywny %d pusty %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(pusty)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(pusty)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, fuzzy, c-format msgid "Macro %%%s has unterminated body\n" msgstr "Makro %%%s ma niezakoñczon± strukturê" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "Makro %%%s ma niedozwolon± nazwê (%%define)" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, fuzzy, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "Makro %%%s ma niezakoñczone opcje" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, fuzzy, c-format msgid "Macro %%%s has empty body\n" msgstr "Makro %%%s nie zawiera ¿adnych poleceñ" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, fuzzy, c-format msgid "Macro %%%s failed to expand\n" msgstr "Rozwiniêcie makra %%%s nie powiod³o siê" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "Makro %%%s ma niedozwolon± nazwê (%%undefine)" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, fuzzy, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "Makro %%%s (%s) nie by³o u¿yte poni¿ej poziomu %d" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Nieznana opcja %c in %s(%s)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, fuzzy, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "G³êboko¶æ(%d) rekursji wiêksza mi¿ maks(%d)" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "Niezakoñczone %c: %s" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, fuzzy, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Napotkano nieprzetwarzalne makro po %%" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "Nie znaleziono makra %%%.*s, makro pominiête" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 #, fuzzy msgid "Target buffer overflow\n" msgstr "Przepe³nienie bufora docelowego" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "Plik %s: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, fuzzy, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Plik %s jest mniejszy ni¿ %d bajtów" @@ -3474,28 +3483,28 @@ msgstr "Przerywanie ..." msgid "Unknown or unexpected error" msgstr "Nieznany lub nieoczekiwany b³±d" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "logowanie do %s jako %s, has³o %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "(b³±d 0x%x)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "fatalny b³±d: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "b³±d: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "ostrze¿enie: " @@ -3529,12 +3538,12 @@ msgstr "Has msgid "error: %sport must be a number\n" msgstr "b³±d: %sport musi byæ liczb±\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "port musi byæ liczb±\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "utworzenie %s nie powiod³o siê\n" diff --git a/po/pt.po b/po/pt.po index 6d0628c..3cd944a 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2002-02-14 10:51+0000\n" "Last-Translator: José Nuno Coelho Sanarra Pires \n" "Language-Team: pt +" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "manda o stdout para " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "usa como a directoria de topo" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -131,23 +131,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "ler o em vez do(s) ficheiro(s) rpmrc por omissão" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "mostra a configuração final do rpmrc e das macros" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "desactivar o uso da API da libio(3)" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "depurar a sequência de dados do protocolo" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "depurar a E/S da rpmio" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "depurar a gestão da 'cache' de URLs" @@ -180,12 +180,12 @@ msgid "Common options for all rpm modes:" msgstr "Opções comuns para todos os modos do rpm:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM versão %s\n" @@ -205,125 +205,125 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "Utilização: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "A opção --rcfile foi eliminada.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "Usar o \"--macros \" em alternativa.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Erro interno no processamento de argumentos (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "só pode ser especificado um 'major mode'" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "só pode ser realizado um tipo de pesquisa/verificação de cada vez" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "opções de pesquisa inesperadas" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "formato de pesquisa inesperado" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "origem de pesquisa inesperada" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "o --dbpath foi usado numa operação que não precisa duma base de dados" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "só a instalação, a actualização, o rmsource e o rmpspec podem ser forçados" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" "os ficheiros só podem ser mudados de sítio durante a instalação do pacote" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "só uma das opções --prefix ou --relocate pode ser usada" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "o --relocate e o --excludepath só podem ser usados ao instalar pacotes novos" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "o --prefix só pode ser usado ao instalar pacotes novos" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "os argumentos do --prefix têm de começar por /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "o --hash (-h) só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "o --percent só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "o --replacefiles só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "o --replacepkgs só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "o --excludedocs só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "o --includedocs só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "só uma das opções --excludedocs e --includedocs pode ser usada" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "o --ignorearch só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "o --ignoreos só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "o --ignoresize só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "o --allmatches só pode ser indicado ao apagar o pacote" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "o --allfiles só pode ser indicado durante a instalação do pacote" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" "o --justdb só pode ser indicado durante a instalação ou a remoção do pacote" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -331,7 +331,7 @@ msgstr "" "a desactivação de 'scripts' só pode ser indicado durante a instalação ou a " "remoção de pacotes" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -339,7 +339,7 @@ msgstr "" "a desactivação dos 'triggers' só pode ser usado durante a instalação ou " "remoção de pacotes" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -347,7 +347,7 @@ msgstr "" "o --nodeps só pode ser indicado durante a criação, reconstrução, " "recompilação, instalação, remoção ou verificação do pacote" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -355,7 +355,7 @@ msgstr "" "o --test só pode ser indicado durante a instalação, remoção ou criação do " "pacote" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -363,105 +363,106 @@ msgstr "" "o --root (-r) só pode ser indicado durante a instalação, remoção ou pesquisa " "do pacote ou na reconstrução da base de dados" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "os argumentos do --root (-r) têm de começar por /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "não existem ficheiros a assinar\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "não consigo aceder ao ficheiro %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp não encontrado: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Indique a palavra-chave: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "A verificação da palavra-chave falhou\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "A palavra-chave está correcta.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Spec %%_signature inválido no ficheiro de macros.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "o --sign só pode ser usado na criação do pacote" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "o exec falhou\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "não foram indicados pacotes para a reconstrução" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "não foram indicados ficheiros spec para a criação" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "não foram indicados ficheiros tar para a criação" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "não foram indicados pacotes para apagar" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "não foram indicados pacotes para instalar" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "não foram indicados argumentos para a pesquisa" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "não foram indicados argumentos para a verificação" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "argumentos inesperados no --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "não foram indicados argumentos para a pesquisa" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Não consegui abrir um ficheiro temporário.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "A executar(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "A execução de %s falhou (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "Código de saída inválido do %s (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -516,184 +517,184 @@ msgstr "- n msgid "&& and || not suported for strings\n" msgstr "&& e || não suportados em cadeias de caracteres\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "erro de sintaxe na expressão\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "Falha no TIMECHECK: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Falta um '(' em %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Falta um ')' em %s(%s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Elemento %s inválido: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "Falta um %s em %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Carácter sem ser espaço a seguir a %s(): %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Sintaxe inválida: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Spec de modo inválido: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Spec de dirmode inválido: %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Tamanho anormal do locale: \"%.*s\" no %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Locale %.*s duplicado no %%lang(%s)\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Limite atingido para o %%docdir\n" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "Só um argumento no %%docdir\n" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "Dois ficheiros na mesma linha: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "O ficheiro tem de começar por \"/\": %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Não é possível misturar o %%doc especial com outras formas: %s\n" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Ficheiro listado duas vezes: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "O ficheiro não corresponde ao prefixo (%s): %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Ficheiro não encontrado: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Dono/grupo inválido: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Ficheiro%5d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "O ficheiro precisa de começar por \"/\": %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "Glob não permitido: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "Ficheiro não encontrado pelo glob: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Não consegui abrir o ficheiro do %%files %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "linha: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "Ficheiro inválido: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Não consegui executar o %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Não consegui executar à parte o %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "O %s falhou\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "não consegui escrever todos os dados em %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "A procurar o %s: (usando o %s)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "Não consegui encontrar o %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "A processar os ficheiros: %s-%s-%s\n" @@ -722,159 +723,159 @@ msgstr "getGnameS: demasiados gid's\n" msgid "getGidS: too many gid's\n" msgstr "getGidS: demasiados gid's\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Não consegui canonizar o nome da máquina: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "a criação do pacote falhou no ficheiro %s: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "a criação do arquivo falhou: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "a escrita do cpio_copy falhou: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "a leitura do cpio_copy falhou: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Não consegui abrir o ficheiro PreIn: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Não consegui abrir o ficheiro PreUn: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Não consegui abrir o ficheiro PostIn: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Não consegui abrir o ficheiro PostUn: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Não consegui abrir o ficheiro VerifyScript: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Não consegui aceder ao 'script' Trigger: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: aceder ao %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: ler o %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: O Fseek falhou: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: o %s não é um pacote RPM\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: a ler o cabeçalho do %s\n" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "Não consegui criar região imutável do cabeçalho.\n" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" "Não consegui gravar o cabeçalho temporário\n" "\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "Dados de CSA inválidos\n" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "Não consegui gravar o cabeçalho final\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "A gerar a assinatura: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "Não consegui reler o cabeçalho do assinatura.\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "Não consigo aceder ao %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "Não consegui gravar o pacote: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Não consegui abrir o sigtarget %s: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Não consegui ler o cabeçalho de %s: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Não consegui gravar o cabeçalho de %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Não consegui ler o conteúdo de %s: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Não consegui escrever o conteúdo de %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Gravei: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Não consigo gerar o ficheiro de saída para o pacote %s: %s\n" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "não consigo criar o %s: %s\n" @@ -949,123 +950,123 @@ msgstr "linha %d: Erro ao analisar o %%files: %s\n" msgid "line %d: Second %%files list\n" msgstr "linha %d: Segunda lista de %%files\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "A arquitectura está excluída: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "A arquitectura não está incluída: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "O SO está excluído: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "O SO não está incluído: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "O campo %s tem de estar presente no pacote: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Entradas %s duplicadas no pacote: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "Não consegui abrir o ícone %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "Não consegui ler o ícone %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "Tipo de ícone desconhecido: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "linha %d: Opção só recebe um parâmetro: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "Linha %d: Opção inválida: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "linha %d: Opção em branco: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linha %d: Carácter '-' ilegal no %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "O BuildRoot não pode ser o \"/\": %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "linha %d: Os prefixos não podem acabar em \"/\": %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "linha %d: A docdir tem de começar por '/': %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "linha %d: O campo Epoch/Serial tem de ser um número: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "linha %d: Qualificadores %s: inválidos: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "linha %d: Formato da BuildArchitecture inválido: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Erro interno: Opção esquisita %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "Descrição do pacote inválida: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "O pacote já existe: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "linha %d: Opção desconhecida: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "O ficheiro spec não pode usar a BuildRoot\n" @@ -1104,41 +1105,41 @@ msgstr "linha %d: Argumento inv msgid "line %d: Bad %%setup option %s: %s\n" msgstr "linha %d: Opção inválida do %%setup %s: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "linha %d: Necessário o argumento para o %%patch -b: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "linha %d: Necessário o argumento para o %%patch -z: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "linha %d: Necessário o argumento para o %%patch -z: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "linha %d: argumento inválido para o %%patch -p: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "Demasiadas 'patches'!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "linha %d: Argumento inválido para o %%patch: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "linha %d: segundo %%prep\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1146,17 +1147,17 @@ msgstr "" "linha %d: Os elementos de dependências têm de começar por alfanuméricos, '_' " "ou '/': %s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "linha %d: Nome do ficheiro não permitido: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "linha %d: Nome do ficheiro com versão não permitido: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "linha %d: Necessária a versão: %s\n" @@ -1181,47 +1182,47 @@ msgstr "linha %d: o programa de 'script' tem de come msgid "line %d: Second %s\n" msgstr "linha %d: Segundo %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "linha %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "Incapaz de aceder ao %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "%%if não fechado\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: o parseExpressionBoolean devolve %d\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Descobri um %%else sem um %%if\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Descobri um %%endif sem um %%if\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "instrução %%include desorganizada\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "Não foram encontradas arquitecturas compatíveis para as quais criar\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "O pacote não tem uma %%description: %s\n" @@ -1381,59 +1382,59 @@ msgstr "ignorar a plataforma-alvo" msgid "lookup i18N strings in specfile catalog" msgstr "procurar as mensagens de i18N no catálogo do ficheiro spec" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linha %d: Número inválido: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linha %d: Número no%s inválido: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linha %d: Número %s inválido: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(erro 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Código de integridade inválido" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Cabeçalho inválido/ilegível" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Tamanho do cabeçalho demasiado grande" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Tipo de ficheiro desconhecido" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "Falta(m) o(s) 'hard link(s)'" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "erro na soma de MD5" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Erro interno" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "Ficheiro de arquivo não está no cabeçalho" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " falhou - " @@ -1442,254 +1443,255 @@ msgstr " falhou - " msgid "package %s was already added, replacing with %s\n" msgstr "o pacote %s já está instalado" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "ficheiro db inválido %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s SI (oferecidos pelo db)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "nenhum pacote\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "ignorar relações entre o nome do pacote [%d]\t%s -> %s\n" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "a remover o %s-%s-%s \"%s\" das relações do tsort.\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "=========== a guardar as relações do tsort\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" "========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== só os sucessores (ordem de apresentação)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "CICLO:\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== a prosseguir o tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(não é um número)" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "(não é um base64)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "(tipo inválido)" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "(não é um blob)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "o mntctl() falhou ao devolver o tamanho: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "o mntctl() falhou ao devolver o número de pontos de montagem: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "Não consegui analisar o %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "falhei ao aceder ao %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "o ficheiro %s está num dispositivo desconhecido\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Directorias não incluidas explicitamente no pacote:\n" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "directoria %s criada com as permissões %04o.\n" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" "o ficheiro de arquivo %s não foi encontrado na lista de ficheiros do " "cabeçalho\n" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s gravado como %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s rmdir de %s falhou: Directoria não está vazia\n" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir de %s falhou: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink de %s falhou: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s criado como %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "erro ao criar o ficheiro temporário %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr ":%s: o readLead falhou\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "a versão 1 dos pacotes não é suportada por esta versão do RPM\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "só os pacotes com versão <= 4 são suportados por esta versão do RPM\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: o rpmReadSignature falhou\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Nenhuma assinatura disponível\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr ":%s: o readLead falhou\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: O fread falhou: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "ler o em vez do(s) ficheiro(s) de macros por omissão" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "as directorias de exclusão têm de começar por /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "os novos locais têm de começar por /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "os novos locais têm de conter um =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "os novos locais têm de ter um / a seguir ao =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "'rollback' recebe como argumento uma hora/data" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "argumento hora/data inválido para 'rollback'" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "instala todos os ficheiros, mesmo as configurações que de outro modo seriam " "ignoradas" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1697,148 +1699,148 @@ msgstr "" "remove todos os pacotes que correspondam a (normalmente aparece um " "erro se o especifica vários pacotes)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "não executar nenhuns scripts do pacote" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "muda os ficheiros de sítio num pacote de localização fixa" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" "gravar os ficheiros do pacote apagado mudando o nome para sub-directoria" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "apaga (desinstala) o pacote" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "não instala a documentação" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "ignorar os ficheiros com a componente inicial " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "abreviatura para --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "actualizar o pacote(s) se já estiver instalado" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "não verifica a arquitectura do pacote" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "não verifica o sistema operativo do pacote" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "não verifica o espaço em disco antes de instalar" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "instala a documentação" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "instala o pacote" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "actualiza a base de dados, mas não altera o sistema de ficheiros" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "não verifica as dependências do pacote" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" "não reorganiza a instalação dos pacotes para satisfazer as dependências" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "não executar o script %%pre (se existir)" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "não executar o script %%post (se existir)" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "não executar o script %%preun (se existir)" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "não executar o script %%postun (se existir)" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "não verificar as dependências do pacote" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "verificar a assinatura do pacote" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "não executar nenhum dos scripts activados por este pacote" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "não executar nenhum dos scripts %%triggerprein" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "não executar nenhum dos scripts %%triggerin" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "não executar nenhum dos scripts %%triggerun" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "não executar nenhum dos scripts %%triggerpostun" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1846,455 +1848,462 @@ msgstr "" "actualiza para um versão antiga do pacote (o --force faz isto " "automaticamente)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "mostra percentagens enquanto o pacote instala" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "muda o pacote para , se for possível" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "muda os ficheiros de para " -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "gravar ficheiros apagados reempacotando-os" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "instala mesmo se o pacote substituir ficheiros instalados" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "reinstalar se o pacote já estiver presente" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar à " -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "não instala, mas indica se iria funcionar ou não" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "actualizar pacote(s)" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "pesquisar/verificar todos os pacotes" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "modo de verificação do rpm" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "pesquisar/verificar o(s) pacote(s) que contém(êm) o ficheiro" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do ficheiro" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "pesquisar/verificar o(s) pacote(s) no grupo" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do cabeçalho" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" "pesquisar/verificar um ficheiro do pacote (i.e. um ficheiro *.rpm binário)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do pacote" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "modo de pesquisa do rpm" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do cabeçalho" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "mostrar as opções de pesquisa conhecidas" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "pesquisar um ficheiro spec" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "pesquisar/verificar o(s) pacote(s) de transacção de instalação" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "pesquisar o(s) pacote(s) activados pelo pacote" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "modo de verificação do rpm" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "pesquisar/verificar o(s) pacote(s) que precisa duma dependência" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "pesquisar/verificar o(s) pacote(s) que oferecem uma dependência" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "listar todos os ficheiros de configuração" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "listar todos os ficheiros de documentação" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "apresentar a informação básica do ficheiro" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "listar os ficheiros no pacote" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "ignorar ficheiros %%ghost" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "ignorar ficheiro %%licence" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "ignorar ficheiros %%readme" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "usar o formato de pesquisa seguinte" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "substituir as secções i18n no ficheiro spec" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "mostrar os estados dos ficheiros listados" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "mostrar uma listagem descritiva do ficheiro" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "não verificar o MD5 dos ficheiros" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "não verificar os tamanho dos ficheiros" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "não verificar as ligações simbólicas dos ficheiros" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "não verificar o dono dos ficheiros" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "não verificar o grupo dos ficheiros" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "não verificar hora de modificação dos ficheiros" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "não verificar o modo dos ficheiros" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "não verificar os ficheiros no pacote" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "não verificar as dependências do pacote" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "não executar o %verifyscript (se existir)" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "não verificar o SHA1 do cabeçalho" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "não verificar o MD5 dos ficheiros" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "assinar um pacote (retira a assinatura actual)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "verificar a assinatura do pacote" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "assinar um pacote (retira a assinatura actual)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "gerar a assinatura" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "O tipo de dados %d não é suportado\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "não consigo criar o %%%s %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "não consigo escrever em %%%s %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "o pacote de código-fonte não contem um ficheiro .spec\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: a correr os scripts(s) %s (se existirem)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "a execução do script %s do %s-%s-%s falhou, waitpid devolveu %s\n" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "o utilizador %s não existe - a usar o root\n" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "o grupo %s não existe - a usar o root\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "a abertura do pacote falhou%s%s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " no ficheiro " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s falhou no ficheiro %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "%s falhou: %s\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "formato incorrecto: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(não contém ficheiros)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normal " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "substituído " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "não instalado " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "partilhado" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(sem estado) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(desconhecido %3d)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "(sem estado) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "não consigo pesquisar o %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "o acesso ao %s falhou: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "a pesquisa do %s falhou\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" "os pacotes com código-fonte no formato antigo não podem ser pesquisados\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "nenhum pacote coincide com %s: %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "a pesquisa do ficheiro spec %s falhou, não consigo analisar\n" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "nenhum pacote\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "o grupo %s não contém nenhum pacote\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "nenhum pacote activa o %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "malformado %s: %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "nenhum pacote coincide com %s: %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "nenhum pacote precisa do %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "nenhum pacote oferece o %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "ficheiro %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "o ficheiro %s não pertence a nenhum pacote\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "número de pacote inválido: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "número de registo do pacote: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "o registo %u não pôde ser lido\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "o pacote %s não está instalado\n" @@ -2421,36 +2430,36 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "o pacote %s tem requisitos não satisfeitos: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "========== mudanças de local\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "%5d excluir o %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d mudar de local %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "a exclur a directoria 'multilib' %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "a excluir o %s %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "a mudar o %s para %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "a mudar a directoria %s para %s\n" @@ -2544,7 +2553,7 @@ msgstr "A instalar o %s\n" msgid "rollback %d packages to %s" msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "a leitura falhou: %s (%d)\n" @@ -2792,117 +2801,117 @@ msgstr "Assinatura PGP antiga\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Assinatura (só interna) antiga! Como é que obteve isto!?\n" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Assinatura: tamanho(%d)+pad(%d)\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "Não consegui executar %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "o pgp falhou\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "o pgp não conseguiu gravar a assinatura\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "tamanho da assinatura do PGP: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "incapaz de ler a assinatura\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Obtive %d bytes da assinatura PGP\n" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "o gpg falhou\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "o gpg não conseguiu gravar a assinatura\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "Tamanho da assinatura do GPG: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Obtive %d bytes da assinatura do GPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "'Spec' %%_signature inválido no ficheiro de macros\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Precisa definir o \"%%_gpg_name\" no seu ficheiro de macros\n" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Precisa definir o \"%%_pgp_name\" no seu ficheiro de macros\n" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Tamanho do cabeçalho demasiado grande" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "não verificar o SHA1 do cabeçalho" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ignorar as assinaturas de MD5" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Sem assinatura\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "'Digest' MD5 estragado: NÃO SUPORTADO\n" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Assinatura: tamanho(%d)+pad(%d)\n" @@ -2913,17 +2922,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s ignorado devido à opção missingok\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "a excluir a directoria %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "falta %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Dependências não satisfeitas para o %s-%s-%s: " @@ -2986,99 +2995,99 @@ msgstr "partilhado" msgid "locked db index %s/%s\n" msgstr "tranquei o índice do db %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "opção do db desconhecida: \"%s\" ignorada.\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "O %s tem um valor numérico inválido, foi ignorado\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "O %s tem um valor demasiado elevado ou pequeno, foi ignorado\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "O %s tem um valor inteiro demasiado elevado ou pequeno, foi ignorado\n" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "falta um { depois do %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "falta um } depois do %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "formato da opção em branco" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "nome da opção em branco" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "opção desconhecida" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "] esperado no fim do vector" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "] inesperado" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "} inesperado" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "esperado um ? na expressão" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "esperado um { a seguir ao ? na expressão" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "esperado um } na expressão" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "esperado um : a seguir à sub-expressão ?" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "esperado um { a seguir ao : na expressão" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "esperado um | no fim da expressão" @@ -3101,256 +3110,256 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "gerar os cabeçalhos compatíveis com o formato do rpm[23]" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: nome de opção não reconhecido: \"%s\" ignorado\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "não consigo abrir o índice de %s usando o db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "não consigo abrir o índice do %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "não foi definido o dbpath\n" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "erro(%d) ao guardar o registo %s em %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: recebida instância do cabeçalho #%u estragada, a ignorar.\n" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: não consigo ler o cabeçalho em 0x%x\n" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "a remover o \"%s\" do índice %s.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "a remover %d registos do índice %s.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "erro(%d) ao guardar o registo %s em %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "erro(%d) ao remover o registo %s do %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "erro(%d) ao criar uma nova instância do pacote\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "a adicionar o \"%s\" ao índice %s.\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "a adicionar %d registos ao índice %s.\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "erro(%d) ao guardar o registo %s em %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "não foi definido o dbpath" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "a reconstruir a base de dados %s em %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "A base de dados temporária %s já existe\n" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "a criar a directoria %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "a criar a directoria %s: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "a abrir a base de dados antiga com a dbapi %d\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "a abrir a base de dados nova com a dbapi %d\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "o número do registo %u na base de dados está errado -- a ignorar.\n" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "não consigo adicionar o registo originalmente em %u\n" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "falhou a reconstrução da base de dados: a base de dados original mantém-se\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "falhou a substituição da base de dados antiga pela nova!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "a remover a directoria %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "falhou a remoção da directoria %s: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== activo %d vazio %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(vazio)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(vazio)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "A macro %%%s tem o conteúdo incompleto\n" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "A macro %%%s tem um nome inválido (%%define)\n" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "A macro %%%s tem as opções incompletas\n" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "A macro %%%s tem o conteúdo em branco\n" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "A macro %%%s não conseguiu ser expandida\n" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "A macro %%%s tem um nome ilegal (%%undefine)\n" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "A macro %%%s (%s) não foi usada abaixo do nível %d\n" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Opção desconhecida %c em %s(%s)\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Nível de recursividade(%d) maior que o máximo(%d)\n" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "%c não terminado: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Segue-se uma macro impossível de analisar ao %%\n" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "A macro %%%.*s não foi encontrada, por isso foi ignorada\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "Sobrecarga do tampão de destino\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "Ficheiro %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "O ficheiro %s tem menos de %u bytes\n" @@ -3407,27 +3416,27 @@ msgstr "Interrup msgid "Unknown or unexpected error" msgstr "Erro desconhecido ou inesperado" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "a ligar ao %s como %s com senha %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(nenhum erro)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "erro fatal: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "erro: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "aviso: " @@ -3461,12 +3470,12 @@ msgstr "Senha para o %s@%s: " msgid "error: %sport must be a number\n" msgstr "erro: o %sport tem de ser um número\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "o porto do URL tem de ser um número\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "não consegui criar o %s: %s\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index c7ec33e..d4dfb14 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -4,7 +4,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" #: build.c:40 #, fuzzy @@ -18,47 +18,47 @@ msgid "Unable to open spec file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "No consegui abrir: %s\n" # , c-format #. Give up -#: build.c:171 +#: build.c:173 #, 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:199 +#: build.c:201 #, 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:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "No consegui abrir: %s\n" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "no foi passado pacote para instalao" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "instale pacote" @@ -77,48 +77,48 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "mostra a verso do programa rpm sendo usado" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "mostra a verso do programa rpm sendo usado" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "envia a saida padro para " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "use como diretrio raiz" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -184,7 +184,7 @@ msgstr "" # , c-format #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" @@ -197,7 +197,7 @@ msgstr "No consegui ler o arquivo spec de %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM verso %s\n" @@ -218,139 +218,139 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "uso: rpm {--help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Use -e ou --erase no lugar.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "somente um modo principal pode ser especificado" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "fonte de pesquisa no esperado" -#: rpmqv.c:736 +#: rpmqv.c:738 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:742 +#: rpmqv.c:744 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "somente instalao e atualizao podem ser foradas" -#: rpmqv.c:744 +#: rpmqv.c:746 #, fuzzy msgid "files may only be relocated during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:747 +#: rpmqv.c:749 #, fuzzy msgid "only one of --prefix or --relocate may be used" msgstr "somente um entre --excludedocs e --includedocs pode ser especificado" -#: rpmqv.c:750 +#: rpmqv.c:752 #, 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argumentos para --prefix devem comear com uma /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" "--hash (-h) somente podem ser especificado durante instalaes de pacotes" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" "--replacepkgs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" "--excludedocs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" "--includedocs somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "somente um entre --excludedocs e --includedocs pode ser especificado" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" "--ignorearch somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:797 +#: rpmqv.c:799 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" "--allmatches somente pode ser especificado durante desinstalaes de pacotes" -#: rpmqv.c:805 +#: rpmqv.c:807 #, fuzzy msgid "--allfiles may only be specified during package installation" msgstr "--percent somente pode ser especificado durante instalaes de pacotes" -#: rpmqv.c:810 +#: rpmqv.c:812 #, 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:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, 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:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 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:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "argumentos para --root (-r) devem comear com uma /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 #, fuzzy msgid "pgp not found: " msgstr "no foi passado pacote para desinstalao" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Checagem de pass phrase falhou\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Pass phrase ok.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign somente pode ser usado durante a construo de pacotes" -#: rpmqv.c:934 +#: rpmqv.c:936 #, fuzzy msgid "exec failed\n" msgstr "Construo falhou.\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "no foram passados pacotes para reconstruo" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "no foi passado arquivo spec para construo" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "no foram passados arquivos tar para construo" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "no foi passado pacote para instalao" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "no foi passado pacote para instalao" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "no foi passado argumento para pesquisa" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "no foi passado argumento para verificao" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "argumentos no esperados em --querytags" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "no foi passado argumento para pesquisa" # , c-format -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "No consegui abrir: %s\n" @@ -489,23 +489,24 @@ msgstr "No consegui abrir: %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "RPM verso %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Construo falhou.\n" # , c-format -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "No consegui abrir: %s\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -557,200 +558,200 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" # , c-format -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "No consegui abrir: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" # , c-format -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/files.c:608 +#: build/files.c:610 #, 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:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" # , c-format #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "No consegui abrir: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" # , c-format -#: build/files.c:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" # , c-format -#: build/files.c:1554 +#: build/files.c:1556 #, 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:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "no foi passado pacote para desinstalao" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" # , c-format -#: build/files.c:1634 +#: build/files.c:1636 #, 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:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" # , c-format -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "No consegui abrir: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "no foi passado pacote para desinstalao" # , c-format -#: build/files.c:1847 +#: build/files.c:1849 #, fuzzy, c-format msgid "Could not open %%files file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, 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:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "Construo falhou.\n" # , c-format -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "No consegui abrir o pipe tar: %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" # , c-format -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "No consegui abrir o pipe tar: %s\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -779,186 +780,186 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" # , c-format -#: build/pack.c:88 +#: build/pack.c:90 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:267 +#: build/pack.c:269 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:306 +#: build/pack.c:308 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" # , c-format -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" # , c-format -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "gere assinatura PGP" # , c-format -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" # , c-format -#: build/pack.c:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "No consegui abrir: %s\n" @@ -1039,12 +1040,12 @@ msgstr "No consegui abrir: %s\n" msgid "line %d: Second %%files list\n" msgstr "No consegui abrir: %s\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" @@ -1057,125 +1058,125 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "RPM verso %s\n" # , c-format -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" # , c-format -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "No consegui abrir: %s\n" # , c-format #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" # , c-format -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr " Opces para especificao de pacotes:" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "no foi passado pacote para instalao" # , c-format -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1219,64 +1220,64 @@ msgid "line %d: Bad %%setup option %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" # , c-format -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "argumentos para o --dbpath devem comear com uma /" # , c-format -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "No consegui abrir: %s\n" @@ -1304,50 +1305,50 @@ msgid "line %d: Second %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" # , c-format #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "No consegui abrir: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" # , c-format -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "%s no pode ser construido nesta arquitetura\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "no foi passado pacote para desinstalao" @@ -1520,60 +1521,60 @@ msgid "lookup i18N strings in specfile catalog" msgstr "" # , c-format -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "No consegui abrir: %s\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 #, fuzzy msgid " failed - " msgstr "Construo falhou.\n" @@ -1583,258 +1584,259 @@ msgstr "Construo falhou.\n" msgid "package %s was already added, replacing with %s\n" msgstr "no foi passado pacote para instalao" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" # , c-format -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "No consegui abrir: %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "pesquise todos os pacotes" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" # , c-format -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "No consegui abrir: %s\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" # , c-format -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "No consegui abrir o pipe tar: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" # , c-format -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" # , c-format -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" # , c-format -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "No consegui abrir: %s\n" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Construo falhou.\n" # , c-format -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "No consegui abrir: %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" # , c-format -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "No consegui abrir: %s\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" # , c-format -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 #, fuzzy msgid "exclude paths must begin with a /" msgstr "argumentos para o --dbpath devem comear com uma /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 #, fuzzy msgid "relocations must begin with a /" msgstr "argumentos para o --dbpath devem comear com uma /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1842,154 +1844,154 @@ msgstr "" "remova todos os pacotes iguais a (normalmente um erro gerado se " " especificou mltiplos pacotes)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "no execute nenhuma script especfica do pacote" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "no foi passado pacote para instalao" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "apague (desinstale) pacote" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "pesquise todos os pacotes" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "no instale documentao" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "alis para --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "no foi passado pacote para instalao" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -b " -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 #, fuzzy msgid "don't verify package architecture" msgstr "no verifique a arquitetura do pacote" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "no verifique o sistema operacional do pacote" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "instale documentao" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "instale pacote" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "no verifique as dependncias do pacote" -#: lib/poptI.c:168 +#: lib/poptI.c:167 #, fuzzy msgid "do not reorder package installation to satisfy dependencies" msgstr "no verifique as dependncias do pacote" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "no execute nenhum estgio" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "no execute nenhum estgio" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "no execute nenhum estgio" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "no execute nenhum estgio" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "no verifique as dependncias do pacote" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "verifique a assinatura do pacote" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "no execute nenhuma script especfica do pacote" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "no execute nenhuma script de instalao" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "no execute nenhuma script de instalao" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "no execute nenhuma script de instalao" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1997,493 +1999,500 @@ msgstr "" "atualize para uma verso mais velha do pacote (--force em atualizaes no faz " "isto automaticamente)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "imprima porcentagens a medida que o pacote vai sendo instalado" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "realoque o pacote para , se realocvel" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr " [--nomd5] [alvos]" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "instale mesmo que o pacote substitua arquivos j instalados" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "reinstale se o pacote j estiver presente" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "no instale, mas diga se a instalao funcionar ou no" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "instale pacote" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "pesquise todos os pacotes" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "modo pesquisa" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "no foi passado pacote para desinstalao" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "pesquise todos os pacotes" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "modo pesquisa" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 #, fuzzy msgid "query a spec file" msgstr "pesquise todos os pacotes" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "no foi passado pacote para desinstalao" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "modo pesquisa" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "pesquise pacotes que requerem capacidade " -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "pesquise pacotes que fornecem a capacidade " -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 #, fuzzy msgid "list all configuration files" msgstr "liste somente os arquivos de configurao (implica -l)" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "instale documentao" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 #, fuzzy msgid "dump basic file information" msgstr "mostre informao do pacote" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 #, fuzzy msgid "list files in package" msgstr "instale pacote" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" # , c-format -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "No consegui abrir: %s\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 #, fuzzy msgid "use the following query format" msgstr "fonte de pesquisa no esperado" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "pesquise o pacote ao qual pertence" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 #, fuzzy msgid "display a verbose file listing" msgstr "mostre a lista de arquivos do pacote" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "instale pacote" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "instale pacote" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "instale pacote" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "instale pacote" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "instale pacote" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "instale pacote" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 #, fuzzy msgid "don't verify files in package" msgstr "instale pacote" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "no verifique as dependncias do pacote" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "no execute nenhum estgio" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "instale pacote" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "instale pacote" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "assine um pacote (descarte a assinatura corrente)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "verifique a assinatura do pacote" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "assine um pacote (descarte a assinatura corrente)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "gere assinatura PGP" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" # , c-format -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "pesquise o pacote ao qual pertence" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "no execute nenhum estgio" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "no foi passado pacote para instalao" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "Construo falhou.\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" # , c-format -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 #, fuzzy msgid "not installed " msgstr "no foi passado pacote para instalao" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " -msgstr "" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "no foi passado pacote para instalao" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "no foi passado pacote para instalao" # , c-format -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "No consegui abrir: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "Construo falhou.\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "no foram passados pacotes para assinatura" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "pesquise todos os pacotes" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "no foram passados pacotes para assinatura" # , c-format -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "no foram passados pacotes para assinatura" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "no foi passado pacote para instalao" @@ -2615,7 +2624,7 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "no foi passado pacote para instalao" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" @@ -2627,13 +2636,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "RPM verso %s\n" # , c-format -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "No consegui abrir: %s\n" @@ -2646,7 +2655,7 @@ msgstr "No consegui abrir: %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "RPM verso %s\n" @@ -2659,19 +2668,19 @@ msgstr "RPM verso %s\n" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "RPM verso %s\n" # , c-format -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "No consegui abrir: %s\n" @@ -2778,7 +2787,7 @@ msgid "rollback %d packages to %s" msgstr "no foi passado pacote para desinstalao" # , c-format -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "No consegui abrir: %s\n" @@ -3029,122 +3038,122 @@ msgstr "gere assinatura PGP" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" # , c-format #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "Construo falhou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "Construo falhou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "instale pacote" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "desconsidere quaisquer assinaturas MD5" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "gere assinatura PGP" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -3163,17 +3172,17 @@ msgstr "" # "Content-Transfer-Encoding: 8-bit\n" # , c-format #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM verso %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "lista dependncias do pacote" @@ -3236,101 +3245,101 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 #, fuzzy msgid "unexpected ]" msgstr "fonte de pesquisa no esperado" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 #, fuzzy msgid "unexpected }" msgstr "fonte de pesquisa no esperado" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3353,167 +3362,167 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "no foi passado pacote para desinstalao" # , c-format -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "no foi passado pacote para instalao" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" # , c-format -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "No consegui abrir: %s\n" # , c-format -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3526,106 +3535,106 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM verso %s\n" # , c-format -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" # , c-format -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "No consegui abrir: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "no foi passado pacote para desinstalao" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" # , c-format #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "No consegui ler o arquivo spec de %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3682,27 +3691,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3736,13 +3745,13 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" # , c-format #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "No consegui abrir o pipe tar: %s\n" diff --git a/po/ro.po b/po/ro.po index 461dd63..55bbdac 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -18,44 +18,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -73,47 +73,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -129,23 +129,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -178,12 +178,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -201,248 +201,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -494,184 +495,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -700,157 +701,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -925,123 +926,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1080,57 +1081,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1155,47 +1156,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1348,59 +1349,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1409,826 +1410,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2351,36 +2359,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2473,7 +2481,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2715,113 +2723,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2832,17 +2840,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2905,99 +2913,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3018,255 +3026,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3323,27 +3331,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3377,12 +3385,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index e0ef4ed..f55ef53 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -24,44 +24,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -79,47 +79,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -135,23 +135,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -184,12 +184,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -207,248 +207,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -500,184 +501,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -706,157 +707,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -931,123 +932,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1086,57 +1087,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1161,47 +1162,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1354,59 +1355,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1415,826 +1416,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2357,36 +2365,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2479,7 +2487,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2721,113 +2729,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2838,17 +2846,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2911,99 +2919,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3024,255 +3032,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3329,27 +3337,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3383,12 +3391,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index c1cda1c..2bd664e 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2002-04-09 16:44-0400\n" "Last-Translator: Eugene Kanter, \n" "Language-Team: Black Cat Linux Team \n" @@ -21,44 +21,44 @@ msgstr " msgid "Unable to open spec file %s: %s\n" msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "ïÛÉÂËÁ ÏÔËÒÙÔÉÑ ËÁÎÁÌÁ tar: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "ïÛÉÂËÁ ÞÔÅÎÉÑ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÉÚ %s\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "îÅ ÏÂÙÞÎÙÊ ÆÁÊÌ: %s.\n" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "æÁÊÌ %s ÎÅ ÐÏÈÏÖ ÎÁ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ.\n" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "ðÌÁÔÆÏÒÍÙ ÄÌÑ ÓÂÏÒËÉ: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "óÂÏÒËÁ ÄÌÑ ÐÌÁÔÆÏÒÍÙ %s\n" @@ -76,48 +76,48 @@ msgstr " msgid "cannot re-open payload: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏ×ÔÏÒÎÏ ÏÔËÒÙÔØ payload: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "×Ù×ÅÓÔÉ ÎÏÍÅÒ ×ÅÒÓÉÉ ÜÔÏÊ ÐÒÇÒÁÍÍÙ" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "×Ù×ÏÄÉÔØ ÍÉÎÉÍÕÍ ÓÏÏÂÝÅÎÉÊ" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "×Ù×ÏÄÉÔØ ÂÏÌÅÅ ÄÅÔÁÌØÎÙÅ ÓÏÏÂÝÅÎÉÑ" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "×Ù×ÅÓÔÉ ÚÎÁÞÅÎÉÅ ÍÁËÒÏÓÁ <ÉÍÑ>+" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "<ËÏÍÁÎÄÁ>" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "<ËÁÔÁÌÏÇ>" @@ -133,23 +133,23 @@ msgstr "< msgid "read instead of default rpmrc file(s)" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÏ ÕÍÏÌÞÁÎÉÀ" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "ÐÏËÁÚÁÔØ ÔÅËÕÝÅÅ ÚÎÁÞÅÎÉÅ rpmrc É ÍÁËÒÏÓÏ×" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "ÚÁÐÒÅÔÉÔØ ÉÓÐÏÌØÚÏ×ÁÎÉÅ libio(3) API" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "ÏÔÌÁÄËÁ ÐÒÏÔÏËÏÌÁ ÐÏÔÏËÁ ÄÁÎÎÙÈ" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "ÏÔÌÁÄËÁ ÐÒÏÃÅÓÓÁ ××ÏÄÁ/×Ù×ÏÄÁ rpmio" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ URL ËÜÛ" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "ïÂÝÉÅ ÐÁÒÁÍÅÔÒÙ ÄÌÑ ×ÓÅÈ ÒÅÖÉÍÏ×:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM ×ÅÒÓÉÑ %s\n" @@ -207,128 +207,128 @@ msgstr " msgid "Usage: %s {--help}\n" msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "×ÁÒÉÁÎÔ --rcfile ÂÏÌØÛÅ ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "÷ÍÅÓÔÏ ÜÔÏÇÏ ÉÓÐÏÌØÚÕÊÔÅ \"--macros <ÆÁÊÌ:...>\".\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÏÄÉÎ ÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "ÚÁ ÏÄÉÎ ÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅÎ ÔÏÌØËÏ ÏÄÉÎ ÔÉÐ ÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÆÌÁÇÉ ÚÁÐÒÏÓÁ" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "ÐÁÒÁÍÅÔÒ --dbpath ÚÁÄÁÎ ÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× " "É ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ÏÄÉÎ ÉÚ ×ÁÒÉÁÎÔÏ× --prefix ÉÌÉ --relocate" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "×ÁÒÉÁÎÔÙ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ " "ÎÏ×ÙÈ ÐÁËÅÔÏ×" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "×ÁÒÉÁÎÔ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ÏÄÉÎ ÉÚ ÐÁÒÁÍÅÔÒÏ× --excludedocs ÉÌÉ --" "includedocs" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -336,7 +336,7 @@ msgstr "" "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÓÃÅÎÁÒÉÅ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ " "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -344,7 +344,7 @@ msgstr "" "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÔÒÉÇÇÅÒÏ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ " "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ(Ï×)" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -352,14 +352,14 @@ msgstr "" "--nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÐÒÏ×ÅÒËÉ " "ÐÁËÅÔÏ×" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" "--test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ ÐÁËÅÔÁ" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -367,105 +367,106 @@ msgstr "" "--root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, ÚÁÐÒÏÓÁÈ " "ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "ÎÅÔ ÆÁÊÌÏ× ÄÌÑ ÐÏÄÐÉÓÉ\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp ÎÅ ÎÁÊÄÅÎ: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "÷×ÅÄÉÔÅ ËÌÀÞÅ×ÕÀ ÆÒÁÚÕ: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "îÅ×ÅÒÎÁÑ ËÌÀÞÅ×ÁÑ ÆÒÁÚÁ\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "ëÌÀÞÅ×ÁÑ ÆÒÁÚÁ ÐÒÉÎÑÔÁ.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "ÎÅ ÚÁÄÁÎ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÄÁÌÅÎÉÑ" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ×ÒÅÍÅÎÎÙÊ ÆÁÊÌ.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "÷ÙÐÏÌÎÑÅÔÓÑ(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "÷ÙÐÏÌÎÉÔØ %s ÎÅ ÕÄÁÌÏÓØ (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "îÅ×ÅÒÎÙÊ ËÏÄ ×ÏÚ×ÒÁÔÁ ÉÚ %s (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -520,184 +521,184 @@ msgstr "- msgid "&& and || not suported for strings\n" msgstr "&& É || ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÓÔÒÏË\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "ïÛÉÂËÁ TIMECHECK: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ '(' × %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ ')' × %s(%s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "îÅ×ÅÒÎÙÊ ÔÏËÅÎ %s: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ %s × %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "îÅ ÐÒÏÂÅÌ ÓÌÅÄÕÅÔ ÐÏÓÌÅ %s(): %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "îÅ×ÅÒÎÙÊ ÓÉÎÔÁËÓÉÓ: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "îÅ×ÅÒÎÙÅ ÐÒÁ×Á ÎÁ ËÁÔÁÌÏÇ %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "îÅÏÂÙÞÎÁÑ ÄÌÉÎÁ locale: \"%.*s\" × %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "äÕÂÌÉËÁÔ locale %.*s × %%lang(%s)\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "ìÉÍÉÔ ÄÌÑ %%docdir ÐÒÅ×ÙÛÅÎ\n" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "ôÏÌØËÏ ÏÄÉÎ ÁÒÇÕÍÅÎÔ ÄÌÑ %%docdir\n" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "ä×Á ÆÁÊÌÁ × ÏÄÎÏÊ ÓÔÒÏËÅ: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "îÅÌØÚÑ ÓÍÅÛÉ×ÁÔØ ÓÐÅÃ. %%doc Ó ÄÒÕÇÉÍÉ ÆÏÒÍÁÍÉ: %s\n" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "æÁÊÌ ÕËÁÚÁÎ Ä×ÁÖÄÙ: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "óÉÍ×ÏÌÉÞÅÓËÁÑ ÓÓÙÌËÁ ÕËÁÚÙ×ÁÅÔ ÎÁ BuildRoot: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "æÁÊÌ ÎÅ ÓÏÏÔ×ÅÔÓÔÕÅÔ ÐÒÅÆÉËÓÕ (%s): %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ×ÌÁÄÅÌÅÃ/ÇÒÕÐÐÁ: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "æÁÊÌ%5d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "æÁÊÌ ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "Glob ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %%files %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "ÓÔÒÏËÁ: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "îÅ×ÅÒÎÙÊ ÆÁÊÌ %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "óÂÏÊ ×ÅÔ×ÌÅÎÉÑ %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s ÎÅ ÕÄÁÌÏÓØ\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "ðÏÉÓË %s (ÉÓÐÏÌØÚÕÑ %s): ...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÎÁÊÔÉ %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "ïÂÒÁÂÁÔÙ×ÁÀÔÓÑ ÆÁÊÌÙ: %s-%s-%s\n" @@ -726,157 +727,157 @@ msgstr "getGnameS: msgid "getGidS: too many gid's\n" msgstr "getGidS: ÓÌÉÛËÏÍ ÍÎÏÇÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× ÇÒÕÐÐ.\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ËÁÎÏÎÉÚÉÒÏ×ÁÔØ ÉÍÑ ËÏÍÐØÀÔÅÒÁ: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á ÎÁ ÆÁÊÌÅ %s: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ÁÒÈÉ×Á: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy: ÏÛÉÂËÁ ÚÁÐÉÓÉ: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy: ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreIn: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PreUn: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostIn: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ PostUn: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ VerifyScript: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ Trigger script: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: ÏÔËÒÙÔÉÅ %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: ÞÔÅÎÉÅ %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: ÏÛÉÂËÁ Fseek: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s ÎÅ Ñ×ÌÑÅÔÓÑ ÐÁËÅÔÏÍ RPM\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: ÞÉÔÁÅÔÓÑ ÚÁÇÏÌÏ×ÏË ÉÚ %s\n" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÏÍÅÓÔÉÔØ ÚÁÇÏÌÏ×ÏË × ÎÅÒÐÅÒÙ×ÎÕÀ ÏÂÌÁÓÔØ ÐÁÍÑÔÉ.\n" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ×ÒÅÍÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "îÅ×ÅÒÎÙÅ ÄÁÎÎÙÅ CSA\n" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÏËÏÎÞÁÔÅÌØÎÙÊ ÚÁÇÏÌÏ×ÏË\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÅÒÅÚÁÇÒÕÚÉÔØ ÚÁÇÏÌÏ×ÏË ÐÏÄÐÉÓÉ.\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÃÅÌØ ÐÏÄÐÉÓÉ %s: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÇÏÌÏ×ÏË ÉÚ %s: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÚÁÇÏÌÏ×ÏË × %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÓÏÄÅÒÖÉÍÏÅ ÉÚ %s: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "úÁÐÉÓÁÎ: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ ÉÍÑ ÆÁÊÌÁ ÄÌÑ ÐÁËÅÔÁ %s: %s\n" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n" @@ -951,123 +952,123 @@ msgstr " msgid "line %d: Second %%files list\n" msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÊ ÓÐÉÓÏË %%files\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "áÒÈÉÔÅËÔÕÒÁ ÉÓËÌÀÞÅÎÁ: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "áÒÈÉÔÅËÔÕÒÁ ÎÅ ×ËÌÀÞÅÎÁ: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "ïó ÎÅ ×ËÌÀÞÅÎÁ: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "ðÏÌÅ %s ÏÂÑÚÁÎÏ ÐÒÉÓÕÔÓÔ×Ï×ÁÔØ × ÐÁËÅÔÅ: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "ðÏ×ÔÏÒÑÀÝÉÅÓÑ ÚÁÐÉÓÉ %s × ÐÁËÅÔÅ: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÐÉËÔÏÇÒÁÍÍÕ %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÐÉËÔÏÇÒÁÍÍÙ: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "ÓÔÒÏËÁ %d: ñÒÌÙË ÔÒÅÂÕÅÔ ÔÏÌØËÏ ÏÄÉÎ ÁÒÇÕÍÅÎÔ: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÔÜÇ: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "ÓÔÒÏËÁ %d: ðÕÓÔÏÊ ÔÜÇ: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "ÓÔÒÏËÁ %d: ðÒÅÆÉËÓ ÎÅ ÍÏÖÅÔ ÚÁËÁÎÞÉ×ÁÔØÓÑ ÎÁ \"/\": %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "ÓÔÒÏËÁ %d: Docdir ÄÏÌÖÅÎ ÎÁÞÉÎÁÔØÓÑ Ó '/': %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "ÓÔÒÏËÁ %d: ðÏÌÅ Epoch/Serial ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: ÏÐÒÅÄÅÌÑÅÔ: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÆÏÒÍÁÔ BuildArchitecture: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ: îÅÉÚ×ÅÓÔÎÙÊ ÑÒÌÙË %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ ÐÁËÅÔÁ: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "ðÁËÅÔ ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "æÁÊÌ spec ÎÅ ÍÏÖÅÔ ÉÓÐÏÌØÚÏ×ÁÔØ BuildRoot\n" @@ -1106,41 +1107,41 @@ msgstr " msgid "line %d: Bad %%setup option %s: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÐÁÒÁÍÅÔÒ %%setup %s: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -b ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -z ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "ÓÔÒÏËÁ %d: äÌÑ %%patch -p ÎÕÖÅÎ ÁÒÇÕÍÅÎÔ: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch -p: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "óÌÉÛËÏÍ ÍÎÏÇÏ ÚÁÐÌÁÔ!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÙÊ ÁÒÇÕÍÅÎÔ ÄÌÑ %%patch: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "ÓÔÒÏËÁ %d: ×ÔÏÒÏÊ %%prep\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1148,17 +1149,17 @@ msgstr "" "ÓÔÒÏËÁ %d: ôÏËÅÎÙ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó ÂÕË×Ù, ÃÉÆÒÙ, '_' ÉÌÉ " "'/': %s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "ÓÔÒÏËÁ %d: éÍÅÎÁ ÆÁÊÌÏ× ÎÅ ÒÁÚÒÅÛÁÀÔÓÑ: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "ÓÔÒÏËÁ %d: ÷ÅÒÓÉÉ × ÉÍÅÎÁÈ ÆÁÊÌÏ× ÎÅÄÏÐÕÓÔÉÍÙ: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "ÓÔÒÏËÁ %d: ôÒÅÂÕÅÔÓÑ ×ÅÒÓÉÑ: %s\n" @@ -1183,47 +1184,47 @@ msgstr " msgid "line %d: Second %s\n" msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "ÓÔÒÏËÁ %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "îÅÚÁËÒÙÔÙÊ %%if\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "îÅ ÎÁÊÄÅÎÙ ÓÏ×ÍÅÓÔÉÍÙÅ ÁÒÈÉÔÅËÔÕÒÙ ÄÌÑ ÓÂÏÒËÉ.\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n" @@ -1387,59 +1388,59 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "ÉÓËÁÔØ ÓÔÒÏËÉ I18N × ËÁÔÁÌÏÇÅ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ no%s: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(ÏÛÉÂËÁ 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "îÅ×ÅÒÎÙÊ magic" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ ÆÁÊÌÁ" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "ËÏÎÔÒÏÌØÎÙÅ MD5-ÓÕÍÍÙ ÎÅ ÓÏ×ÐÁÄÁÀÔ" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "æÁÊÌ ÁÒÈÉ×Á ÎÅ ÎÁÊÄÅÎ × ÚÁÇÏÌÏ×ËÅ ÐÁËÅÔÁ" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "ÎÅ ÕÄÁÌÏÓØ - " @@ -1448,52 +1449,52 @@ msgstr " msgid "package %s was already added, replacing with %s\n" msgstr "ÐÁËÅÔ %s ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s YES (rpmrc provides)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s YES (rpmlib provides)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s YES (db provides)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "ÎÅÔ ÐÁËÅÔÏ×\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %s-%s-%s \"%s\" ÉÚ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ.\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "========== ÚÁÐÉÓØ ÕÐÏÒÑÄÏÞÅÎÎÙÈ ÚÁ×ÉÓÉÍÏÓÔÅÊ\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" @@ -1501,200 +1502,201 @@ msgstr "" "========== ÓÏÒÔÉÒÏ×ËÁ ÐÁËÅÔÏ× (ÏÞÅÒÅÄÎÏÓÔØ, #predecessors, #succesors, " "ÄÅÒÅ×Ï, ÇÌÕÂÉÎÁ)\n" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== ÔÏÌØËÏ ÐÏÓÌÅÄÏ×ÁÔÅÌÉ (× ÐÏÒÑÄËÅ ÐÒÅÄÓÔÁ×ÌÅÎÉÑ)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "ãéëì:\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== ÐÒÏÄÏÌÖÅÎÉÅ ÕÐÏÒÑÄÏÞÅÎÉÑ ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(ÎÅ ÞÉÓÌÏ)" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "(ÎÅ base64)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "(ÎÅÐÒÁ×ÉÌØÎÙÊ ÔÉÐ)" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÚÎÁÞÅÎÉÅ ÒÁÚÍÅÒÁ fugger: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() ÎÅ ×ÏÚ×ÒÁÔÉÌ ÚÎÁÞÅÎÉÅ ÒÁÚÍÅÒÁ fugger: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= ëÁÔÁÌÏÇÉ, ËÏÔÏÒÙÅ ÎÅ ×ËÌÀÞÅÎÙ × ÐÁËÅÔ Ñ×ÎÏ:\n" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "ËÁÔÁÌÏÇ %s ÓÏÚÄÁÎ Ó ÐÒÁ×ÁÍÉ ÄÏÓÔÕÐÁ %04o.\n" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "ÆÁÊÌ ÁÒÈÉ×Á %s ÎÅ ÎÁÊÄÅÎ × ÓÐÉÓËÅ ÆÁÊÌÏ× ÚÁÇÏÌÏ×ËÁ\n" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s ÓÏÈÒÁÎÅÎ ËÁË %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ\n" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s ÓÏÚÄÁÎ ËÁË %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: ÏÛÉÂËÁ readLead\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "ÐÁËÅÔÙ ×ÅÒÓÉÉ 1 ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÜÔÏÊ ×ÅÒÓÉÅÊ RPM\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: ÏÛÉÂËÁ readLead\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: ÏÛÉÂËÁ Fread: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÍÁËÒÏÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "ÉÓËÌÀÞÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÉÍÅÔØ / ÐÏÓÌÅ =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "ÏÔËÁÔ ÔÒÅÂÕÅÔ ÁÒÇÕÍÅÎÔ ×ÒÅÍÅÎÉ" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "ÎÅÐÒÁ×ÉÌØÎÙÊ ÆÏÒÍÁÔ ×ÒÅÍÅÎÉ ÏÔËÁÔÁ" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÓÅ ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ " "ÐÒÏÐÕÝÅÎÙ" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1702,146 +1704,146 @@ msgstr "" "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> " "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓÃÅÎÁÒÉÅ× ÐÁËÅÔÁ(Ï×)" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅÐÅÒÅÍÅÝÁÅÍÏÍ ÐÁËÅÔÅ" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "ÓÏÈÒÁÎÉÔØ × ÐÏÄËÁÔÁÌÏÇÅ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ ÐÁËÅÔÁ" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "<ÐÁËÅÔ>+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "<ÐÕÔØ>" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù) ÅÓÌÉ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "<ÆÁÊÌ ÐÁËÅÔÁ>+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%pre ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%post ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%preun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%postun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÅ×, ×Ú×ÅÄÅÎÎÙÈ ÜÔÉÍ ÐÁËÅÔÏÍ" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerprein ÓÃÅÎÁÒÉÅ×" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerin ÓÃÅÎÁÒÉÅ×" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerun ÓÃÅÎÁÒÉÅ×" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerpostun ÓÃÅÎÁÒÉÅ×" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1849,453 +1851,460 @@ msgstr "" "ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÄÅÌÁÅÔ ÜÔÏ " "Á×ÔÏÍÁÔÉÞÅÓËÉ)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ ÐÕÔÉ × " -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "ÓÏÈÒÁÎÉÔØ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ × ÎÏ×ÏÍ ÐÁËÅÔÅ" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ, ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" "ÕÄÁÌÉÔØ ÎÏ×ÙÊ(Å) ÐÁËÅÔ(Ù), ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÓÔÁÒÙÊ(Å) ÐÁËÅÔ(Ù), ÏÂÒÁÔÎÏ ÎÁ " "ÕËÁÚÁÎÎÕÀ ÄÁÔÕ" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "<ÄÁÔÁ>" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ, ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù)" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ×ÓÅ ÐÁËÅÔÙ" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "ÒÅÖÉÍ ÐÒÏ×ÅÒËÉ rpm" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ ÆÁÊÌ" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ(Ù) ÐÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÕ ÆÁÊÌÁ" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔÙ × ÇÒÕÐÐÅ" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ(Ù), ÐÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÕ ÚÁÇÏÌÏ×ËÁ" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÆÁÊÌ ÐÁËÅÔÁ (Ô.Å. *.rpm ÆÁÊÌ Ä×ÏÉÞÎÏÇÏ ÐÁËÅÔÁ)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ(Ù) ÐÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÕ ÐÁËÅÔÁ" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "ÒÅÖÉÍ ÚÁÐÒÏÓÁ rpm" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ(Ù), ÐÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÕ ÚÁÇÏÌÏ×ËÁ" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "ÏÔÏÂÒÁÚÉÔØ ÉÚ×ÅÓÔÎÙÅ ËÌÀÞÉ ÚÁÐÒÏÓÁ" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "ÚÁÐÒÏÓÉÔØ ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "<ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ>" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ(Ù) ÉÚ ÔÒÁÎÚÁËÃÉÉ ÕÓÔÁÎÏ×ËÉ" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÑÍÉ ÎÁ ÐÁËÅÔ" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "ÒÅÖÉÍ ÐÒÏ×ÅÒËÉ rpm" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "ÎÁÊÔÉ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓ" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "ÎÁÊÔÉ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "ÐÏËÁÚÁÔØ ÏÓÎÏ×ÎÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "ÐÏËÁÚÁÔØ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%ghost" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%license" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%readme" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "ÉÓÐÏÌØÚÕÊÔÅ ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "ÚÁÍÅÎÉÔØ ÓÅËÃÉÉ i18n × ÆÁÊÌÅ ÓÐÅÃÉÆÉËÁÃÉÉ" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÅÒÅÞÉÓÌÅÎÎÙÈ ÆÁÊÌÏ×" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "ÐÏËÁÚÁÔØ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ×" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÒÁÚÍÅÒ ÆÁÊÌÏ×" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÕÔØ ÓÉÍ×ÏÌÉÞÅÓËÉÈ ÓÓÙÌÏË" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÈÏÚÑÉÎÁ ÆÁÊÌÏ×" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÇÒÕÐÐÕ ÆÁÊÌÏ×" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ×ÒÅÍÑ ÍÏÄÉÆÉËÁÃÉÉ ÆÁÊÌÏ×" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÆÁÊÌÏ× ÐÁËÅÔÁ" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %verifyscript (ÅÓÌÉ ÅÓÔØ)" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ SHA1 ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "ôÉÐ ÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " ÎÁ ÆÁÊÌÅ " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "ÎÏÒÍÁÌØÎÙÊ " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "ÚÁÍÅÎÅÎÎÙÊ " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "ÓÅÔÅ×ÏÊ " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(ÓÏÓÔ. ÎÅÔ) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(ÎÅÉÚ×. %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(ÓÏÓÔ. ÎÅÔ) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "ÎÉ ÏÄÉÎ ÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "ÚÁÐÒÏÓ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "ÎÅÔ ÐÁËÅÔÏ×\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "ÏÛÉÂËÁ ÆÏÒÍÁÔÁ %s: %s.\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "ÎÉ ÏÄÉÎ ÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "ÆÁÊÌ %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" @@ -2422,36 +2431,36 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "ÐÁËÅÔ %s ÓÏÄÅÒÖÉÔ ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÔÒÅÂÏ×ÁÎÉÑ: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "%5d ÉÓËÌÀÞÅÎ %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n" @@ -2545,7 +2554,7 @@ msgstr " msgid "rollback %d packages to %s" msgstr "ÏÔËÁÔÉÔØ (+%d,-%d) ÐÁËÅÔÙ Ë %s" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s (%d)\n" @@ -2790,117 +2799,117 @@ msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ×ÙÐÏÌÎÉÔØ %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "ÏÛÉÂËÁ pgp\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "ÏÛÉÂËÁ gpg\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ SHA1 ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "ëÏÎÔÒ. ÓÕÍÍÁ MD5 ÐÏ×ÒÅÖÄÅÎÁ: îå ðïääåòöé÷áåôóñ\n" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n" @@ -2911,17 +2920,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: " @@ -2984,22 +2993,22 @@ msgstr " msgid "locked db index %s/%s\n" msgstr "ÚÁÂÌÏËÉÒÏ×ÁÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "ÎÅÏÐÏÚÎÁÎÎÙÊ ÐÁÒÁÍÅÔÒ ÂÁÚÙ ÄÁÎÎÙÈ: \"%s\" ÐÒÏÉÇÎÏÒÉÒÏ×ÁÎ\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "ÎÅ×ÅÒÎÏÅ ÞÉÓÌÏ×ÏÅ ÚÎÁÞÅÎÉÅ %s, ÐÒÏÐÕÝÅÎÏ\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ÉÍÅÅÔ ÓÌÉÛËÏÍ ÍÁÌÕÀ ÉÌÉ ÓÌÉÛËÏÍ ÂÏÌØÛÕÀ ×ÅÌÉÞÉÎÕ long, ÐÒÏÐÕÝÅÎÏ\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" @@ -3007,77 +3016,77 @@ msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() ÄÏÐÕÓÔÉÍ ÔÏÌØËÏ ÏÄÉÎ ÜÌÅÍÅÎÔ ÔÉÐÁ RPM_STRING_TYPE\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"{\" ÐÏÓÌÅ \"%\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"}\" ÐÏÓÌÅ \"%{\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "ÐÕÓÔÏÊ ÆÏÒÍÁÔ ÔÜÇÁ" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "ÐÕÓÔÏÅ ÉÍÑ ÔÜÇÁ" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "× ËÏÎÃÅ ÍÁÓÓÉ×Á ÏÖÉÄÁÌÁÓØ \"]\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"]\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"}\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÏÓØ \"?\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \"{\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÏÓØ \"}\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÏÓØ \"{\"" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\"" @@ -3100,256 +3109,256 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "ÓÏÚÄÁÔØ ÚÁÇÏÌÏ×ËÉ, ÓÏ×ÍÅÓÔÉÍÙÅ Ó (ÕÓÔÁÒÅ×ÛÉÍÉ) ÐÁËÅÔÁÍÉ rpm[23]" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: ÉÍÑ ËÌÀÞÁ \"%s\" ÎÅ ÉÚ×ÅÓÔÎÏ, ÉÇÎÏÒÉÒÕÅÔÓÑ\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s ÉÓÐÏÌØÚÕÑ db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: ÐÏÌÕÞÅÎ ÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u, ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ.\n" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "====================== ÁËÔÉ×ÎÙÈ %d ÐÕÓÔÙÈ %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(ÐÕÓÔÏ)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(ÐÕÓÔÏ)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "îÅÚÁËÒÙÔÙÊ ÍÁËÒÏÓ %%%s\n" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "îÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%define) ÍÁËÒÏÓÁ %%%s\n" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "îÅÚÁËÒÙÔÙÅ ÐÁÒÁÍÅÔÒÙ × ÍÁËÒÏÓÅ %%%s\n" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "íÁËÒÏÓ %%%s ÐÕÓÔ\n" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÓËÒÙÔØ ÍÁËÒÏÓ %%%s\n" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "îÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%undefine) ÍÁËÒÏÓÁ %%%s\n" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "íÁËÒÏÓ %%%s (%s) ÎÅ ÂÙÌ ÉÓÐÏÌØÚÏ×ÁÎ ÎÉÖÅ ÕÒÏ×ÎÑ %d\n" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÐÁÒÁÍÅÔÒ %c × %s(%s)\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "çÌÕÂÉÎÁ ÒÅËÕÒÓÉÉ(%d) ÂÏÌØÛÅ ÄÏÐÕÓÔÉÍÏÊ(%d)\n" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "îÅÚÁËÒÙÔÁÑ %c: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "ÎÅÐÏÎÑÔÎÙÊ ÍÁËÒÏÓ ÐÏÓÌÅ %%\n" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "íÁËÒÏÓ %%%.*s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "æÁÊÌ %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "äÌÉÎÁ ÆÁÊÌÁ %s ÍÅÎØÛÅ ÞÅÍ %u ÂÁÊÔ\n" @@ -3406,27 +3415,27 @@ msgstr " msgid "Unknown or unexpected error" msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(ÎÅÔ ÏÛÉÂËÉ)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "ÆÁÔÁÌØÎÁÑ ÏÛÉÂËÁ: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "ÏÛÉÂËÁ: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: " @@ -3460,12 +3469,12 @@ msgstr " msgid "error: %sport must be a number\n" msgstr "ÏÛÉÂËÁ: %s ÐÏÒÔ ÄÏÌÖÅÎ ÂÙÔØ ÞÉÓÌÏÍ\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "url ÐÏÒÔ ÄÏÌÖÅÎ ÂÙÔØ ÞÉÓÌÏÍ\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n" diff --git a/po/sk.po b/po/sk.po index a7bd1c0..66ac36f 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -19,44 +19,44 @@ msgstr "nevyrie msgid "Unable to open spec file %s: %s\n" msgstr "Nie je mo¾né otvori» spec súbor: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Otvorenie rúry pre tar zlyhalo: %s\n" #. Give up -#: build.c:171 +#: build.c:173 #, 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:199 +#: build.c:201 #, 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:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "nepodarilo sa zisti» stav %s: %s" -#: build.c:244 +#: build.c:246 #, 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:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, fuzzy, c-format msgid "Building target platforms: %s\n" msgstr "predefinova» cieµovú platformu" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "vyhµadáva sa balík %s\n" @@ -74,48 +74,48 @@ msgstr "chyba pri msgid "cannot re-open payload: %s\n" msgstr "nie je mo¾né otvori» súbor %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "vypísa» verziu pou¾ívaného rpm" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "vypísa» verziu pou¾ívaného rpm" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "posla» ¹tandardný výstup do " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "pou¾i» ako adresár najvy¹¹ej úrovne" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -131,23 +131,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -181,12 +181,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "súbor %s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM verzia %s\n" @@ -206,141 +206,141 @@ msgstr "Program m msgid "Usage: %s {--help}\n" msgstr "pou¾itie: rpm {--help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Namiesto nich pou¾ite -e alebo --erase.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "neoèakávaný zdroj pre otázku" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "neoèakávaný zdroj pre otázku" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "neoèakávaný zdroj pre otázku" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu" -#: rpmqv.c:742 +#: rpmqv.c:744 #, 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:744 +#: rpmqv.c:746 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:747 +#: rpmqv.c:749 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:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 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:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argumenty pre --prefix musia zaèína» znakom /" -#: rpmqv.c:759 +#: rpmqv.c:761 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:763 +#: rpmqv.c:765 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:768 +#: rpmqv.c:770 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:772 +#: rpmqv.c:774 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:776 +#: rpmqv.c:778 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:780 +#: rpmqv.c:782 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:784 +#: rpmqv.c:786 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:788 +#: rpmqv.c:790 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:792 +#: rpmqv.c:794 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:797 +#: rpmqv.c:799 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:801 +#: rpmqv.c:803 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:805 +#: rpmqv.c:807 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:810 +#: rpmqv.c:812 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:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, 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:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,107 +365,108 @@ 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:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenty pre --root (-r) musia zaèína» znakom /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "nie je mo¾né pracova» so súborom %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp nebolo nájdené: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Kontrola hesla zlyhala\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Heslo je v poriadku.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "vykonanie zlyhalo\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "neboli zadané ¾iadne balíky pre in¹taláciu" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "neboli zadané ¾iadne balíky pre in¹taláciu" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "neboli zadané ¾iadne argumenty pre otázku" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "neboli zadané ¾iadne argumenty pre overenie" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "neoèakávané argumenty pre --querytags" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "neboli zadané ¾iadne argumenty pre otázku" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Nie je mo¾né otvori» doèasný súbor" -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "Vykonáva sa: %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Vykonanie %s zlyhalo (%s)" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "Chybný výstupný kód z %s (%s)" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -528,185 +529,185 @@ msgstr "- nie je podporovan msgid "&& and || not suported for strings\n" msgstr "&& a || nie sú podporované pre re»azce" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "chyba syntaxe vo výraze" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "chyba PREKROÈENIA ÈASU: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "chýbajúce %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "chýbajúca ':' na %s:%d" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "Chybný %s prvok: %s" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "chýbajúce %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Chybná %s() syntax: %s" -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Chybná ¹pecifikácia práv %s(): %s" -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Chybná ¹pecifikácia práv adresára %s(): %s" -#: build/files.c:775 +#: build/files.c:777 #, fuzzy, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Iba jeden záznam v %%lang(): %s" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Iba jeden záznam v %%lang(): %s" -#: build/files.c:949 +#: build/files.c:951 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "Dosiahnutý limit pre %%docdir" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Dva súbory na riadku: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Súbory musia zaèína» znakom \"/\": %s" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Súbor zadaný dvakrát: %s." -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Súbor nesúhlasí s prefixom (%s): %s." -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Súbor nebol nájdený: %s" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Chybný vlastník/skupina: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, 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:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Súbor potrebuje na zaèiatku \"/\": %s" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "riadok %d: V %s sú vy¾adované verzie: %s" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Súbor nebol nájdený: %s" -#: build/files.c:1847 +#: build/files.c:1849 #, 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:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "riadok: %s" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Nie je mo¾né spusti» %s" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Nie je mo¾né vytvori» proces %s" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s zlyhalo" -#: build/files.c:2402 +#: build/files.c:2404 #, 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:2560 +#: build/files.c:2562 #, fuzzy, c-format msgid "Finding %s: (using %s)...\n" msgstr "Zis»ujú sa po¾adované vlastnosti...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "Nepodarilo sa zisti» poskytované vlastnosti" -#: build/files.c:2726 +#: build/files.c:2728 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Spracovávajú sa súbory: %s\n" @@ -735,162 +736,162 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Nie je mo¾né kanonizova» názov poèítaèa: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, 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:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "vytvorenie archívu zlyhalo pri súbore %s: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy zápis zlyhal: %s" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy èítanie zlyhalo: %s" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Nie je mo¾né otvori» PreIn súbor: %s" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Nie je mo¾né otvori» PreUn súbor: %s" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Nie je mo¾né otvori» PostIn súbor: %s" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Nie je mo¾né otvori» PostUn súbor: %s" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Nie je mo¾né otvori» VerifyScript súbor: %s" -#: build/pack.c:267 +#: build/pack.c:269 #, 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:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: otvorenie %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: èítanie %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s nie je RPM balík\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: èítanie hlavièky %s\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Nie je mo¾né zapísa» %s" -#: build/pack.c:512 +#: build/pack.c:514 #, fuzzy msgid "Bad CSA data\n" msgstr "Chybné CSA dáta" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Nie je mo¾né zapísa» %s" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "Otvorenie %s zlyhalo\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Nie je preèíta» sigtarget: %s" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/pack.c:670 +#: build/pack.c:672 #, 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:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/pack.c:686 +#: build/pack.c:688 #, 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:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Zapísané: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "nie je mo¾né zapísa» do %s: " @@ -965,123 +966,123 @@ msgstr "riadok %d: Chyba pri anal msgid "line %d: Second %%files list\n" msgstr "riadok %d: Druhý %%files zoznam" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, fuzzy, c-format msgid "Architecture is excluded: %s\n" msgstr "Architektúra je vynechaná: %s" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, fuzzy, c-format msgid "Architecture is not included: %s\n" msgstr "Architektúra nie je obsiahnutá: %s" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "OS je vynechaný: %s" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "OS nie je obsiahnutý: %s" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "V balíku musí existova» pole %s: %s" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Duplicitné záznamy %s v balíku: %s" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "Nie je mo¾né preèíta» ikonu: %s" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "Neznámy typ ikony: %s" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "riadok %d: Chybná voµba %s: %s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "riadok %d: Znetvorený popis: %s" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "riadok %d: Prázdny popis: %s" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "riadok %d: Neprípustný znak '-' v %s: %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "riadok %d: Prefixy nesmú konèi» \"/\": %s" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "riadok %d: Docdir musí zaèína» '/': %s" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "riadok %d: Epoch/Serial pole musí by» èíslo: %s" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "riadok %d: Chybné %s èíslo: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "riadok %d: Chybný formát BuildArchitecture: %s" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Interná chyba: Èudný popis %d " -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr "Chybná ¹pecifikácia balíka: %s" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "Balík u¾ existuje: %s" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "riadok %d: Neznámy popis: %s" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 #, fuzzy msgid "Spec file can't use BuildRoot\n" msgstr "Spec súbor nemô¾e pou¾i» BuildRoot" @@ -1121,58 +1122,58 @@ msgstr "riadok %d: Chybn msgid "line %d: Bad %%setup option %s: %s\n" msgstr "riadok %d: Chybná voµba pre %%setup %s: %s" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "riadok %d: %%patch -b potrebuje argument: %s" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "riadok %d: %%patch -z potrebuje argument: %s" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "riadok %d: %%patch -p potrebuje argument: %s" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "riadok %d: Chybný argument pre %%patch -p: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 #, fuzzy msgid "Too many patches!\n" msgstr "Priveµa záplat!" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "riadok %d: Chybný argument pre %%patch: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, fuzzy, c-format msgid "line %d: second %%prep\n" msgstr "riadok %d: druhý %%prep" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "riadok %d: %s: prvky musia zaèína» alfanumerickým znakom: %s" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "riadok %d: Obsoletes: neobsahuje ¾iadne názvy súborov: %s" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "riadok %d: Názvy súborov v %s neobsahujú verzie: %s" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "riadok %d: V %s sú vy¾adované verzie: %s" @@ -1197,48 +1198,48 @@ msgstr "riadok %d: program skriptu mus msgid "line %d: Second %s\n" msgstr "riadok %d: Druhý %s" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "riadok %d: %s" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "otvorenie zlyhalo: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "Neuzavretý %%if" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else bez if" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif bez if" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "znetvorený príkaz %%include" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "®iadne zostaviteµné architektúry" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Balík neobsahuje %%description: %s" @@ -1407,60 +1408,60 @@ 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:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "riadok %d: Chybné èíslo: %s" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "riadok %d: Chybné no%s èíslo: %d" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "riadok %d: Chybné %s èíslo: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(chyba 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Chybné magické èíslo" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Chybná/neèitateµná hlavièka" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Priveµká hlavièka" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Neznámy typ súboru" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "chýbajúca ':' na %s:%d" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Interná chyba" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " zlyhalo - " @@ -1469,252 +1470,253 @@ msgstr " zlyhalo - " msgid "package %s was already added, replacing with %s\n" msgstr "balík %s nie je nain¹talovaný\n" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "chybný stav súboru: %s" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "Poskytuje:" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "nájdených %d balíkov\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(nie je èíslo)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(nie je èíslo)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(nie je èíslo)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() nevrátil veµkos» fuggeru: %s" -#: lib/fs.c:93 +#: lib/fs.c:92 #, fuzzy, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() nevrátil veµkos» fuggeru: %s" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "nepodarilo sa zisti» stav %s: %s" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/fs.c:327 +#: lib/fs.c:330 #, fuzzy, c-format msgid "file %s is on an unknown device\n" msgstr "súbor %s sa nachádza na neznámom zariadení" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "riadok %d: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varovanie: %s uchovaný ako %s" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s zlyhalo: %s" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varovanie: %s vytvorené ako %s" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "chyba pri vytváraní doèasného súboru %s" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead zlyhalo\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature zlyhalo\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Podpis nie je k dispozícii\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead zlyhalo\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "vynechané cesty musia zaèína» znakom /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "presunutia musia zaèína» znakom /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "presunutia musia obsahova» znak =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "presunutia musia ma» za znakom = znak /" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "in¹talova» v¹etky súbory vrátane konfiguraèných súborov, ktoré by inak mohli " "by» vynechané" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1722,153 +1724,153 @@ msgstr "" "odin¹talova» v¹etky balíky urèené (inak je chybou, pokiaµ " "¹pecifikuje viac ako jeden balík)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "balík %s nie je nain¹talovaný\n" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "odin¹talova» balík" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "nájdených %d balíkov\n" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "nein¹talova» dokumentáciu" -#: lib/poptI.c:137 +#: lib/poptI.c:136 #, fuzzy msgid "skip files with leading component " msgstr "vynecha» súbory v ceste " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "skratka pre --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "balík %s nie je nain¹talovaný\n" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -p +" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "neoverova» architektúru balíka" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "neoverova» operaèný systém balíka" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "in¹talova» dokumentáciu" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "in¹talova» balík" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "aktualizova» databázu bez zmeny súborového systému" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "neoverova» závislosti balíka" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "nevykona» ¾iadne etapy" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "nevykona» ¾iadne etapy" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "nevykona» ¾iadne etapy" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "nevykona» ¾iadne etapy" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "neoverova» závislosti balíka" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "overi» podpis balíka" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "nevykona» ¾iadne in¹talaèné skripty" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "nevykona» ¾iadne in¹talaèné skripty" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "nevykona» ¾iadne in¹talaèné skripty" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1876,482 +1878,489 @@ msgstr "" "aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí " "automaticky)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "vypisova» percentá poèas in¹talácie balíka" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "presunú» balík do , pokiaµ to balík povoµuje" -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "presunú» súbory zo do " -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr " --relocate =" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "prein¹talova», pokiaµ u¾ balík existuje" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr " --upgrade " -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "opýta» sa na v¹etky balíky" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "re¾im otázok" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "opýta» sa na balík vlastniaci " -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "opýta» sa balíku vlastniaceho súbor" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "opýta» sa v¹etkých balíkov v skupine" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "opýta» sa balíku vlastniaceho súbor" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "opýta» sa súboru balíka" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "opýta» sa balíku vlastniaceho súbor" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "re¾im otázok" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "opýta» sa balíku vlastniaceho súbor" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "opýta» sa spec súboru" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "opýta» sa v¹etkých balíkov v skupine" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "opýta» sa balíkov spustených balíkom" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "re¾im otázok" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "opýta» sa na balíky vy¾adujúce schopnos» " -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "opýta» sa na balíky poskytujúce schopnos» " -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "zobrazi» v¹etky konfiguraèné súbory" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "zobrazi» v¹etky dokumentaèné súbory" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "zobrazi» základné informácie o balíku" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: readLead zlyhalo\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "pou¾i» nasledovný formát otázky" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "zobrazii» stav daných súborov" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "zobrazi» podrobný zoznam súborov balíka" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 #, fuzzy msgid "don't verify files in package" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "neoverova» závislosti balíka" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "nevykona» ¾iadne etapy" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "zobrazi» súbory v balíku" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "podpísa» balík (znièi» aktuálny podpis)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "overi» podpis balíka" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "podpísa» balík (znièi» aktuálny podpis)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "vytvori» PGP/GPG podpis" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Typ údajov %d nie je podorovaný\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "nie je mo¾né zapísa» do %s: " -#: lib/psm.c:497 +#: lib/psm.c:499 #, fuzzy msgid "source package expected, binary found\n" msgstr "oèakávaný zdrojový balík, nájdený binárny" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:913 +#: lib/psm.c:915 #, fuzzy, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "vykonanie skriptu zlyhalo" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s neexistuje - pou¾ije sa root" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "rozbalenie archívu zlyhalo%s%s: %s" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " pre súbor " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "nepodarilo sa otvori» %s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s zlyhalo" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "chyba formátu: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(neobsahuje ¾iadne súbory)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normálny " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "nahradený " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "nein¹talovaný " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "zdieµaný " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(¾iadny stav) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(neznámy %d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(¾iadny stav) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, 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:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "zmazanie %s zlyhalo: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "otázka na %s zlyhala\n" -#: lib/query.c:653 +#: lib/query.c:583 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:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "nájdených %d balíkov\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾iadne balíky\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Nie je mo¾né preèíta» %s: %s." -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "¾iadny z balíkov nevy¾aduje %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "¾iadny z balíkov neposkytuje %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "súbor %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, 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:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "chybné èíslo balíku: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "po¾aduje sa záznam èíslo %d\n" -#: lib/query.c:966 +#: lib/query.c:896 #, 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:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "balík %s nie je nain¹talovaný\n" @@ -2477,36 +2486,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vynechaný: %s" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "presúva sa %s do %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "vynecháva sa %s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "vynecháva sa %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "presúva sa %s do %s\n" @@ -2601,7 +2610,7 @@ msgstr "In msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "èítanie zlyhalo: %s (%d)" @@ -2845,122 +2854,122 @@ msgstr "Star 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:248 +#: lib/signature.c:250 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Veµkos» podpisu: %d\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Nie je mo¾né spusti» %s" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "pgp zlyhalo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp sa nepodarilo zapísa» podpis" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "Veµkos» PGP podpisu: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "nie je mo¾né preèíta» podpis" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "gpg zlyhalo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg sa nepodarilo zapísa» podpis" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "Veµkos» GPG podpisu: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Priveµká hlavièka" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "zobrazi» súbory v balíku" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "vynecha» akékoµvek MD5 podpisy" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Podpis nie je k dispozícii\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Doplnenie podpisu: %d\n" @@ -2971,17 +2980,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "chýbajúce %s\n" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: " @@ -3044,100 +3053,100 @@ msgstr "zdie msgid "locked db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 #, fuzzy msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "chýbajúce { po %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "chýbajúce } po %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "prázdny tag formát" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "prázdne meno tagu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "neznámy tag" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "] oèakávané na konci poµa" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "neoèakávané ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "neoèakávané }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "? oèakávané vo výraze" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "{ oèakávané po ? vo výraze" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "} oèakávané vo výraze" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr ": oèakávané po ? podvýraze" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "{ oèakávané po : vo výraze" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "| oèakávené na konci výrazu" @@ -3160,258 +3169,258 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "nie je mo¾né otvori» %s na %s:%d" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "nie je mo¾né otvori» %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuje sa index názvov\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "chyba pri naèítaní záznamu %s z %s" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "chyba pri odstraòovaní záznamu %s z %s" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba pri hµadaní balíka %s\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "chyba pri zápise záznamu %s do %s" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáza %s u¾ existuje" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "nahradí súbory v %s súbormi z %s kvôli obnove" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstráni» adresár %s: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== aktívnych %d prázdnych %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(prázdne)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(prázdne)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, fuzzy, c-format msgid "Macro %%%s has unterminated body\n" msgstr "Makro %%%s obsahuje neukonèené telo" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "Makro %%%s obsahuje chybný názov (%%define)" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, fuzzy, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "Makro %%%s obsahuje neukonèené voµby" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, fuzzy, c-format msgid "Macro %%%s has empty body\n" msgstr "Makro %%%s obsahuje prázdne telo" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, fuzzy, c-format msgid "Macro %%%s failed to expand\n" msgstr "Makro %%%s sa nepodarilo expandova»" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "Makro %%%s obsahuje chybný názov (%%undefine)" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, fuzzy, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "Makro %%%s (%s) nebolo pou¾ité pod úrovòou %d " -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Neznáma voµba %c v %s(%s)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, fuzzy, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Håbka rekurzie (%d) väè¹ia ako maximálna (%d)" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "Neukonèené %c: %s" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "balík %%%.*s nebol nájdený, vynecháva sa" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 #, fuzzy msgid "Target buffer overflow\n" msgstr "Preplnenie cieµovej vyrovnávacej pamäti" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "Súbor %s: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, fuzzy, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Súbor %s je men¹í ako %d bajtov" @@ -3470,28 +3479,28 @@ msgstr "Zru msgid "Unknown or unexpected error" msgstr "Neznáma alebo neoèakávaná chyba" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "prihlasuje sa na %s ako %s, heslo %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "(chyba 0x%x)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "fatálna chyba: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "chyba: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "varovanie: " @@ -3525,12 +3534,12 @@ msgstr "Heslo pre %s@%s: " msgid "error: %sport must be a number\n" msgstr "chyba: %sport musí by» èíslo\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "url port musí by» èíslo\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "nepodarilo sa vytvori» %s\n" diff --git a/po/sl.po b/po/sl.po index 1024de7..5e53f9b 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.269 2002/07/02 13:17:01 jbj Exp $ +# $Id: sl.po,v 1.270 2002/07/03 14:02:27 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -24,44 +24,44 @@ msgstr "izdelava soodvisnosti je bila neuspe msgid "Unable to open spec file %s: %s\n" msgstr "Datoteke s specifikacijami %s ni mo¾no odpreti: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, 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:171 +#: build.c:173 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Neuspe¹no branje datoteke s specifikacijami iz %s" -#: build.c:199 +#: build.c:201 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Preimenovanje %s v %s je bilo neuspe¹no: %m" -#: build.c:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "status %s ni na voljo: %s" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "Datoteka ni obièajna datoteka: %s\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Izgradnja za ciljna strojna okolja: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Izgradnja za ciljni sistem %s\n" @@ -79,48 +79,48 @@ msgstr "napaka pri branju glave paketa\n" msgid "cannot re-open payload: %s\n" msgstr "ni mo¾no vnoviè odpreti (payload): %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "razlièica rpm, ki jo uporabljate" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "uporabljana razlièica rpm" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "standardni izhod preusmerjen na " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "uporabi za korenski imenik" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -136,23 +136,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "prika¾i konèni rpmrc in nastavitev makra" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -186,12 +186,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "datoteka %s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM razlièica %s\n" @@ -211,137 +211,137 @@ msgstr "Ta program je dovoljeno razpe msgid "Usage: %s {--help}\n" msgstr "Uporaba: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Namesto njiju uporabite -e ali --erase.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "izbran sme biti le en glavni naèin" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "samo en tip poizvedbe/preverjanja je mo¾en naenkrat" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "neprièakovane zastavice pri poizvedbi" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "neprièakovana oblika poizvedbe" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "neprièakovan izvor poizvedbe" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath podan, vendar, èeprav nepotreben" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "datoteke smemo premakniti samo med namestitvijo paketa" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "izbiri --prefix in --relocate se medsebojno izkljuèujeta" -#: rpmqv.c:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix se sme uporabiti le pri namestitvi" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argumenti izbire --prefix se morajo zaèeti z /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) sme biti podan le ob namestitvi paketa" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent sme biti podan le ob namestitvi paketa" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles sme biti podan le ob namestitvi paketa" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs sme biti podan le ob namestitvi paketa" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs sme biti podatn le ob namestitvi paketa" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs sme biti podan le ob namestitvi paketa" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "izbiri --excludedocs in --includedocs se medsebojno izkljuèujeta" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch sme biti podan le ob namestitvi paketa" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos sme podan le ob namestitvi paketa" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize sme biti podan le ob namestitvi paketa" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches sme biti podan le ob odstranitvi paketa" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles sme biti podati le ob namestitvi paketa" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa" -#: rpmqv.c:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -349,14 +349,14 @@ msgstr "" "--nodeps sme biti podan le ob izgradnji, vnovièni izgradnji, prevajanju, " "namestitvi, odstranitvi ali preverjanju paketa" -#: rpmqv.c:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -364,107 +364,108 @@ msgstr "" "--root (-r) sme biti podan le ob namestitvi, odstranitvi poizvedbi ali " "vnovièni izgradnji paketa" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenti izbire --root (-r) se morajo zaèeti z /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "ni datotek, ki bi jih lahko podpisal\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "dostop do datoteke %s ni mo¾en\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp manjka: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Vnesite pristopno geslo: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Preverjanje pristopnega gesla neuspe¹no\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Pristopno geslo je pravo.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign sme biti podan le ob izgradnji paketa" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "izvajanje je bilo neuspe¹no\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "paketi za vnovièno izgradnjo niso navedeni" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "datoteka spec za izgradnjo manjka" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "arhiv tar za izgradnjo manjka" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "paketi katere bi bilo potrebno namestiti niso navedeni" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "paketi katere bi bilo potrebno namestiti niso navedeni" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "argumenti za poizvedbo niso podani" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "argumenti za preverjanje niso podani" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "neprièakovani argumenti za --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "argumenti za poizvedbo niso podani" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Zaèasne datoteke ni mo¾no odpreti" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "Izvajanje(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Izvajanje %s je bilo neuspe¹no (%s): %s" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "%s javi neuspe¹no izhodno kodo (%s)" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -527,185 +528,185 @@ msgstr "- ni podprt za nize" msgid "&& and || not suported for strings\n" msgstr "&& in || nista podprta za nize" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "napaka v sklanji izraza" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK neuspe¹en: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "Manjkajoèi ,(` v %s %s" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "Manjkajoèi ,)` v %s(%s" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "Neveljaven ¾eton %s: %s" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "Manjkajoèi ,(` v %s %s" -#: build/files.c:560 +#: build/files.c:562 #, fuzzy, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Neprazen znak sledi %s(): %s" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Nepravilna skladnja: %s(%s)" -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Nepravilno doloèilo naèina: %s(%s)" -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Nepravilno doloèilo naèina imenika: %s(%s)" -#: build/files.c:775 +#: build/files.c:777 #, 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:786 +#: build/files.c:788 #, fuzzy, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Podvojeni locale %.*s za %%lang(%s)" -#: build/files.c:949 +#: build/files.c:951 #, fuzzy, c-format msgid "Hit limit for %%docdir\n" msgstr "Dosegli smo omejitev za %%docdir" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "Dve datoteki v eni vrstici: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "Ime datoteke se mora zaèeti z \"/\": %s" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Datoteka je navedena dvakrat: %s" -#: build/files.c:1308 +#: build/files.c:1310 #, fuzzy, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Simbolna povezava ka¾e na BuildRoot: %s -> %s" -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Datoteka se ne ujema s predpono (%s): %s" -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Datoteke ni mogoèe najti: %s" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Neobstojeè lastnik/skupina: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Datoteka: %4d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "Datoteki manjka uvodni \"/\": %s" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "vrstica %d: Razlièica ni dovoljena: %s" -#: build/files.c:1783 +#: build/files.c:1785 #, 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:1847 +#: build/files.c:1849 #, 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:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "vrstica: %s" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Ni mo¾no izvesti %s: %s" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Vejitev %s ni mo¾na: %s" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "%s neuspe¹en" -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "pisanje podatkov v %s je bilo neuspe¹no" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Iskanje %s: (z uporabo %s)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "Neuspe¹no iskanje %s:" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Obdeloavnje datotek: %s-%s-%s\n" @@ -734,162 +735,162 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Iskanje kanoniènega imena gostitelja je bilo neuspe¹no: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, 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:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "ustvarjanje arhiva je bilo za datoteko %s neuspe¹no: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "pisanje cpio_copy neuspe¹no: %s" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "branje cpio_copy neuspe¹no: %s" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "Datoteke PreIn ni mo¾no odpreti: %s" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "Datoteke PreUn ni mo¾no odpreti: %s" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "Datoteke PostIn ni mo¾no odpreti: %s" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "Datoteke PostUn ni mo¾no odpreti: %s" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Datoteke VerifyScript ni mo¾no odpreti: %s" -#: build/pack.c:267 +#: build/pack.c:269 #, fuzzy, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Skriptne datoteke Trigger ni mo¾no odpreti: %s" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: odpiranje %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: branje %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: branje Fread je bilo neuspe¹no: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s ni paket tipa RPM\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: branje glave %s\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:512 +#: build/pack.c:514 #, fuzzy msgid "Bad CSA data\n" msgstr "Po¹kodovani podatki CSA" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Izdelujemo podpis: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "Ni mo¾no odpreti %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ni mo¾no zapisati paketa: %s" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Ciljnega podpisa %s ni mo¾no odpreti: %s" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "ni mo¾no ustvariti %s: %s\n" @@ -964,123 +965,123 @@ msgstr "vrstica %d: Napaka pri raz msgid "line %d: Second %%files list\n" msgstr "vrstica %d: Drugi seznam %%Files" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, fuzzy, c-format msgid "Architecture is excluded: %s\n" msgstr "Arhitektura je izkljuèena: %s" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, fuzzy, c-format msgid "Architecture is not included: %s\n" msgstr "Arhitektura ni vkljuèena: %s" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "OS je izkljuèen: %s" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "OS ni vkljuèen: %s" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "polje %s mora v paketu obstajati: %s" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Podvojeni vnosi %s v paketu: %s" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "Ikone %s ni mo¾no odpreti: %s" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "Ikone %s ni mo¾no prebrati: %s" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "Neznan tip ikone: %s" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "vrstica %d: Napaèna izbira %s: %s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "vrstica %d: Deformirana znaèka: %s" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "vrstica %d: Prazna znaèka: %s" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot ne more biti \"/\": %s" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "vrstica %d: Predpone se ne smejo konèati z /: %s" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "vrstica %d: Docdir se mora zaèeti z \"/\": %s" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "vrstica %d: polje Epoch/Serial mora biti ¹tevilo: %s" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "vrstica %d: Napaèna oblika BuildArchitecture: %s" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Notranja napaka: Neprava znaèka %d" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr "Nepravilno doloèilo paketa: %s" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "Paket ¾e obstaja: %s" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "vrstica %d: Neznana znaèka: %s" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 #, fuzzy msgid "Spec file can't use BuildRoot\n" msgstr "Datoteka spec ne more uporabiti BuildRoot" @@ -1120,42 +1121,42 @@ msgstr "vrstica %d: Nepravilen argument za %%setup %c: %s" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "vrstica %d: Nepravilna izbira %%setup %s: %s" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "vrstica %d: Manjka argument za %%patch -b: %s" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "vrstica %d: Manjka argument za %%patch -z: %s" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "vrstica %d: Manjka argument za %%patch -p: %s" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "vrstica %d: Nepravilen argument za %%patch -p: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 #, fuzzy msgid "Too many patches!\n" msgstr "Preveè popravkov!" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "vrstica %d: Nepravilen argument za %%patch: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, fuzzy, c-format msgid "line %d: second %%prep\n" msgstr "vrstica %d: drugi %%prep" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1163,17 +1164,17 @@ msgstr "" "vrstica %d: Oznake odvisnosti se morajo zaèeti z alfanum. znakom, ,_` ali\n" "'/`: %s" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "vrstica %d: Ime datoteke ni dovoljeno: %s" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "vrstica %d: Ime datoteke z razlièico ni dovoljeno: %s" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "vrstica %d: Zahtevana razlièica: %s" @@ -1198,48 +1199,48 @@ msgstr "vrstica %d: skriptni program se mora za msgid "line %d: Second %s\n" msgstr "vrstica %d: Drugi %s" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "vrstica %d: %s" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "Ni mo¾no odpreti %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "Nezakljuèeni %%if" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, fuzzy, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean vrne %d" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Najden je bil %%else brez pripadajoèega if" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Najden je bil %%endif brez pripadajoèega if" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "Deformiran stavek %%include" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Arhitektura za izgradnjo ni prisotna" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "V paketu manjka %%description: %s" @@ -1409,60 +1410,60 @@ msgstr "brez upo msgid "lookup i18N strings in specfile catalog" msgstr "upo¹tevanje internacionalizirana sporoèila v katalogu spec" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "vrstica %d: Napaèno ¹tevilo: %s" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "vrstica %d: Napaèno ¹tevilo no%s: %d" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "vrstica %d: Napaèno ¹tevilo %s: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(napaka 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Napaèno magièno ¹tevilo" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Po¹kodovana/neberljiva glava" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Glava je predolga" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Neznan tip datoteke" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "Trda povezava manjka" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Notranja napaka" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " neuspe¹no - " @@ -1471,252 +1472,253 @@ msgstr " neuspe msgid "package %s was already added, replacing with %s\n" msgstr "paket %s-%s-%s je ¾e name¹èen" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s DA (rpmrc ponudbe)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s DA (rpmlib ponudbe)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "po¹kodovana zbirka podatkov %s" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s DA (db ponudbe)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "ni paketov\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "odstranjujemo seznam skupin\n" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(ni ¹tevilo)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(ni ¹tevilo)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(ni ¹tevilo)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() ni uspe¹no vrnila velikosti fugger: %s" -#: lib/fs.c:93 +#: lib/fs.c:92 #, fuzzy, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() ni uspe¹no vrnila velikosti fugger: %s" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "status %s ni na voljo: %s" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, fuzzy, c-format msgid "file %s is on an unknown device\n" msgstr "datoteka %s se nahaja na neznani napravi" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "vrstica %d: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "opozorilo: %s shranjen kot %s" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "odstranitev imenika %s je bila neuspe¹na: %s" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "opozorilo: %s ustvarjen kot %s" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "napaka pri ustvarjanju zaèasne datoteke %s" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead je bil neuspe¹en\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <=4" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature je bil neuspe¹en\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Podpis ni na voljo\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead je bil neuspe¹en\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: branje Fread je bilo neuspe¹no: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "poti, ki niso obdelane, se morajo zaèeti z /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "premikanja se morajo zaèeti z /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "premikanja morajo vsebovati =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "premikanja morajo imeti /, ki mu sledi =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "namestitev vseh datotek, vkljuèno z nastavitvenimi, ki so sicer izpu¹èene" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1724,153 +1726,153 @@ msgstr "" "odstrani vse pakete, ki vsebujejo vzorec (sicer program izide z " "napako, èe paket doloèa veè paketov)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "brez izvajanja skriptov paketa" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "izbri¹i (odstrani) paket" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "ni paketov\n" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "brez namestitve dokumentacije" -#: lib/poptI.c:137 +#: lib/poptI.c:136 #, fuzzy msgid "skip files with leading component " msgstr "preskok datotek v navedeni poti" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "okraj¹ava za --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "paket %s-%s-%s je ¾e name¹èen" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -p + " -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "brez preverjanja arhitekture paketa" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "brez preverjanja operacijskega sistema paketa" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "brez preverjanja prostora na disku pred name¹èanjem" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "namesti dokumentacijo" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "name¹èanje paketa" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "brez preverjanja soodvisnosti paketa" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" "brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "brez izvajanja katerekoli stopen izgradnje" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "brez izvajanja katerekoli stopen izgradnje" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "brez izvajanja katerekoli stopen izgradnje" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "brez izvajanja katerekoli stopen izgradnje" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "brez preverjanja soodvisnosti paketa" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "preveri podpis paketa(-ov)" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "brez izvajanja skriptov paketa" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "brez izvajanja namestitvenih skriptov" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "brez izvajanja namestitvenih skriptov" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "brez izvajanja namestitvenih skriptov" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1878,480 +1880,487 @@ msgstr "" "nadgraditev na starej¹o razlièico paketa (--force pri nadgradnjah " "avtomatièno vkljuèi to izbiro)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "izpis odstotkov med namestitvijo" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "èe je mogoèe, bo paket prestavljen v imenik " -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "prestavljanje datoteke iz stare poti v novo" -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr " --relocate =" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èene datoteke" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "ponovno namesti, èe paket ¾e obstaja" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "ne namesti, a ugotovi, èe bi delovalo" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr " --upgrade " -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "poizvedba/preverba po vseh paketih" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "poizvedbeni naèin" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "poizvedba po paketu, ki vsebuje " -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "poizvedba po paketu, ki vsebuje datoteko" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "poizvedba po paketu v skupini" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "poizvedba po paketu, ki vsebuje datoteko" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "poizvedba po paketu" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "poizvedba po paketu, ki vsebuje datoteko" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "poizvedbeni naèin" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "poizvedba po paketu, ki vsebuje datoteko" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "prika¾i znane znaèke za poizvedovanje" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "poizvedba po datoteki spec" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "poizvedba po paketu v skupini" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "poizvedba po paketih, ki jih spro¾i paket" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "poizvedbeni naèin" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "poizvedba po paketih, ki potrebujejo dano zmo¾nost " -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "poizvedba po paketih, ki ponujajo dano zmo¾nost " -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "izpis vseh nastavitvene datoteke" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "izpis vseh dokumentacijske datoteke" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "iznos osnovnih podatkov o datoteki" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "izpis seznama datotek v paketu" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: readLead je bil neuspe¹en\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "uporabi naslednjo obliko poizvedbe" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "zamenjava razdeljkov I18N z naslednjim katalogom" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "izpis stanja seznama datotek" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "izpis ob¹irnega seznama datotek" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "brez preverjanja soodvisnosti paketa" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "brez izvajanja katerekoli stopen izgradnje" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "brez preverjanja datotek v paketu" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "podpi¹i paket(e) (trenutni podpis zavrzi)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "preveri podpis paketa(-ov)" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "podpi¹i paket(e) (trenutni podpis zavrzi)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "izdelava podpisa PGP/GPG" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Tip podatkov %d ni podprt\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "ni mo¾no ustvariti %s: %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "pisanje na %s ni mo¾no" -#: lib/psm.c:497 +#: lib/psm.c:499 #, fuzzy msgid "source package expected, binary found\n" msgstr "prièakovan je bil izvorni paket, najden binarni" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "izvorni paket ne vsebuje datoteke .spec" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "paket: %s-%s-%s datoteke test = %d\n" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, fuzzy, c-format msgid "user %s does not exist - using root\n" msgstr "uporabnik %s ne obstaja - uporabljam root" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "skupina %s ne obstaja - uporabljam root" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, 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:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " za datoteko " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspe¹no odpiranje %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s neuspe¹en" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "napaka v obliki: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(ne vsebuje datotek)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normalno " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "nadome¹èeno " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "ni name¹èeno " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "omre¾ni " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(brez stanja) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(neznano %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(brez stanja) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "ni mo¾no poizvedeti o %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "poizvedba po %s je bila neuspe¹na\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "ni paketov\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s ne vsebuje nobenega paketa\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Neuspe¹no branje %s: %s." -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "noben paket ne potrebuje %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "noben paket ne nudi %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "datoteka %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ni del nobenega paketa\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "neveljavna ¹tevilka paketa: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "¹tevilka zapisa paketa: %d\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "zapisa %d ni mo¾no prebrati\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paket %s ni name¹èen\n" @@ -2479,36 +2488,36 @@ 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/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je izkljuèen: %s" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "premikanje %s v %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "premikanje %s v %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "premiokanje imenika %s v %s\n" @@ -2603,7 +2612,7 @@ msgstr "Name msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "branje je bilo neuspe¹no: %s (%d)" @@ -2848,122 +2857,122 @@ msgstr "Stari podpis PGP\n" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?" -#: lib/signature.c:248 +#: lib/signature.c:250 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Dol¾. podpisa : %d\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Ni mo¾no izvesti %s: %s" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "pgp je bil neuspe¹en" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp je bil neuspe¹en pri zapisu podpisa" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "Dol¾. podpisa PGP: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "branje podpisa je bilo neuspe¹no" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prebrano %d bajtov podpisa PGP\n" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "gpg je bil neuspe¹en" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg je boil neuspe¹en pri zapisu podpisa" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "Dol¾. podpisa GnuPG: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, fuzzy, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:812 +#: lib/signature.c:814 #, fuzzy, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Glava je predolga" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "brez preverjanja datotek v paketu" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "preskoèi vse podpise MD5" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Podpis manjka\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Dol¾. polnila : %d\n" @@ -2974,17 +2983,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "izkljuèevanje imenika %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "manjka %s\n" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: " @@ -3047,22 +3056,22 @@ msgstr "skupno" msgid "locked db index %s/%s\n" msgstr "zaklenjeno db kazalo %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, fuzzy, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "dbiSetConfig: neprepoznana izbira db: \"%s\" prezrto\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s ima neveljavno ¹tevilèno vrednost, prezrto\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ima preveliko ali premajhno dolgo (long) vrednost, prezrto\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" @@ -3071,78 +3080,78 @@ msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 #, fuzzy msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "manjkajoèi { za %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "manjkajoèi } za %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "oblika znaèke manjka" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "ime znaèke manjka" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "neznana znaèka" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "na koncu polja je prièakovan ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "neprièakovan ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "neprièakovan }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "v izrazu je prièakovan ?" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "v izrazu je za { prièakovan ?" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "v izrazu je prièakovan }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "za podizrazom ? je prièakovano :" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "v izrazu je za : prièakovan {" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "na koncu izraza je prièakovan |" @@ -3165,260 +3174,260 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: neprepoznano ime znaèke: \"%s\" prezrto\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "ni mo¾no odpreti kazala %s z uporabo db%d - %s (%d)" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "ni mo¾no odpreti kazala %s:" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ni mo¾no prebrati glave pri 0x%x" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjevanje \"%s\" iz kazala %s.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstranjevanje %d vnosov iz kazala %s\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "napaka(%d) pri brisanju zapisa %s iz %s" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "napaka(%d) pri iskanju paketa %s\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "dodajanje \"%s\" v kazalo %s.\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "dodajanje %d vnosov v kazalo %s.\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "napaka(%d) pri pisanju zapisa %s v %s" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ustvarjanje imenika: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiranje stare podatkovne zbirke\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno." -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "zapisa ni mo¾no dodati na %d" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n" "istem mestu\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "odstranjevanje imenika: %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspe¹na odstranitev imenika %s: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== aktivni %d prazni %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(prazni)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(prazni)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, fuzzy, c-format msgid "Macro %%%s has unterminated body\n" msgstr "Makro %%%s vsebuje nezakljuèeno telo" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "Makro %%%s vsebuje nedovoljeno ime (%%define)" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, fuzzy, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "Makro %%%s vsebuje nezakljuèene izbire" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, fuzzy, c-format msgid "Macro %%%s has empty body\n" msgstr "Makro %%%s vsebuje prazno telo" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, fuzzy, c-format msgid "Macro %%%s failed to expand\n" msgstr "Makro %%%s se ne raz¹iri" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, fuzzy, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "Makro %%%s vsebuje nedovoljeno ime (%%undefine)" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, fuzzy, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "Makro %%%s (%s) ni bil uporabljen pod ravnijo %d" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Neznana izbira %c v %s(%s)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, fuzzy, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Globina rekurzije (%d) veèja od maksimalne (%d)" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "Nezakljuèeni %c: %s" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, fuzzy, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Oznaki %% sledi nerazèlenljiv makro" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "Makro %%%.*s ni najden - preskoèeno" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 #, fuzzy msgid "Target buffer overflow\n" msgstr "Ciljni medpomnilnik je bil prekoraèen" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "Datoteka %s: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, fuzzy, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Datoteka %s je kraj¹a od %d bajtov" @@ -3477,28 +3486,28 @@ msgstr "Prekinitev v teku" msgid "Unknown or unexpected error" msgstr "Neznana ali neprièakovana napaka" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "prijava na %s kot %s, geslo %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "(napaka 0x%x)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "usodna napaka: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "napaka: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "opozorilo: " @@ -3532,12 +3541,12 @@ msgstr "Geslo za %s@%s: " msgid "error: %sport must be a number\n" msgstr "napaka: vrata %s morajo biti ¹tevilka\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "vrata URL morajo biti ¹tevilka\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "neuspe¹no ustvarjanje %s: %s\n" diff --git a/po/sr.po b/po/sr.po index e1d10a2..4dac3fd 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" @@ -15,44 +15,44 @@ msgstr "lo msgid "Unable to open spec file %s: %s\n" msgstr "Ne mogu da otvorim %s za èitanje: %s" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, fuzzy, c-format msgid "Failed to open tar pipe: %m\n" msgstr "neuspelo otvaranje %s\n" #. Give up -#: build.c:171 +#: build.c:173 #, fuzzy, c-format msgid "Failed to read spec file from %s\n" msgstr "Neuspelo èitanje %s: %s." -#: build.c:199 +#: build.c:201 #, fuzzy, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Neuspelo èitanje %s: %s." -#: build.c:239 +#: build.c:241 #, fuzzy, c-format msgid "failed to stat %s: %m\n" msgstr "neuspelo otvaranje %s: %s" -#: build.c:244 +#: build.c:246 #, fuzzy, c-format msgid "File %s is not a regular file.\n" msgstr "%s ne lièi na RPM paket\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, fuzzy, c-format msgid "Building for target %s\n" msgstr "gre¹ka potrage za paketom %s\n" @@ -71,48 +71,48 @@ msgstr "gre msgid "cannot re-open payload: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "napi¹i verziju rpm-a koja se koristi" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "napi¹i verziju rpm-a koja se koristi" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "po¹alji standardni izlaz u " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "koristi kao direktorijum najvi¹eg nivoa" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -128,23 +128,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -177,12 +177,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, fuzzy, c-format msgid "%s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM verzija %s\n" @@ -201,141 +201,141 @@ msgstr "Mo msgid "Usage: %s {--help}\n" msgstr "kori¹æenje: {rpm --help}" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 #, fuzzy msgid "Use \"--macros \" instead.\n" msgstr "Koristite -e ili --erase.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "samo jedan glavni re¾im mo¾e biti naveden" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 #, fuzzy msgid "unexpected query flags" msgstr "neoèekivan izvor upita" -#: rpmqv.c:692 +#: rpmqv.c:694 #, fuzzy msgid "unexpected query format" msgstr "neoèekivan izvor upita" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "neoèekivan izvor upita" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka" -#: rpmqv.c:742 +#: rpmqv.c:744 #, fuzzy msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "samo instalacija i a¾uriranje mogu biti forsirane" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate" -#: rpmqv.c:750 +#: rpmqv.c:752 #, 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argumenti za --prefix moraju poèeti znakom /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:797 +#: rpmqv.c:799 #, fuzzy msgid "--ignoresize may only be specified during package installation" msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa" -#: rpmqv.c:815 +#: rpmqv.c:817 #, 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:820 +#: rpmqv.c:822 #, 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:824 +#: rpmqv.c:826 #, 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:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -358,109 +358,110 @@ msgstr "" "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili " "rekreiranja baze podataka" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "argumenti za --root (-r) moraju poèeti znakom /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, fuzzy, c-format msgid "cannot access file %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmqv.c:894 +#: rpmqv.c:896 #, fuzzy msgid "pgp not found: " msgstr "Datoteka nije pronaðena na serveru" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Neuspela provera lozinke\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Lozinka je dobra.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa" -#: rpmqv.c:934 +#: rpmqv.c:936 #, fuzzy msgid "exec failed\n" msgstr "%s: Neuspelo otvaranje\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "nedosataje paket za rekreiranje" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "nedostaje specifikacije za kreiranje" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "nedostaju 'tar' datoteke za kreiranje" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "nedostaje paket za instalaciju" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "nedostaje paket za instalaciju" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "nedostaju argumenti za upit" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "nedostaju argumenti za proveru" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "neoèekivani argumenti za --querytags" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "nedostaju argumenti za upit" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 #, fuzzy msgid "Unable to open temp file.\n" msgstr "Ne mogu da otvorim %s za èitanje: %s" -#: build/build.c:211 +#: build/build.c:213 #, fuzzy, c-format msgid "Executing(%s): %s\n" msgstr "Pribavljam %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, fuzzy, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: build/build.c:228 +#: build/build.c:232 #, fuzzy, c-format msgid "Bad exit status from %s (%s)\n" msgstr "neuspelo otvaranje %s: %s" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -516,185 +517,185 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 #, fuzzy msgid "syntax error in expression\n" msgstr "oèekivan znak ? u izrazu" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, fuzzy, c-format msgid "Missing '(' in %s %s\n" msgstr "nedostaje { posle %" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, fuzzy, c-format msgid "Missing ')' in %s(%s\n" msgstr "nedostaje ':' na %s:%d" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, fuzzy, c-format msgid "Invalid %s token: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "nedostaje { posle %" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, fuzzy, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Neuspelo èitanje %s: %s." -#: build/files.c:608 +#: build/files.c:610 #, fuzzy, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Neuspelo èitanje %s: %s." -#: build/files.c:620 +#: build/files.c:622 #, fuzzy, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Neuspelo èitanje %s: %s." -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, fuzzy, c-format msgid "Two files on one line: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/files.c:998 +#: build/files.c:1000 #, fuzzy, c-format msgid "File must begin with \"/\": %s\n" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, fuzzy, c-format msgid "File listed twice: %s\n" msgstr "Neuspelo èitanje %s: %s." -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, fuzzy, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Neuspelo èitanje %s: %s." -#: build/files.c:1578 +#: build/files.c:1580 #, fuzzy, c-format msgid "File not found: %s\n" msgstr "Datoteka nije pronaðena na serveru" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/files.c:1745 +#: build/files.c:1747 #, fuzzy, c-format msgid "File needs leading \"/\": %s\n" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "paket %s nije naveden u %s" -#: build/files.c:1783 +#: build/files.c:1785 #, fuzzy, c-format msgid "File not found by glob: %s\n" msgstr "Datoteka nije pronaðena na serveru" -#: build/files.c:1847 +#: build/files.c:1849 #, 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:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, fuzzy, c-format msgid "line: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, fuzzy, c-format msgid "Couldn't exec %s: %s\n" msgstr "Ne mogu da izvr¹im PGP" -#: build/files.c:2314 +#: build/files.c:2316 #, fuzzy, c-format msgid "Couldn't fork %s: %s\n" msgstr "Ne mogu da proèitam 'sigtarget'" -#: build/files.c:2398 +#: build/files.c:2400 #, fuzzy, c-format msgid "%s failed\n" msgstr "PGP omanuo" -#: build/files.c:2402 +#: build/files.c:2404 #, fuzzy, c-format msgid "failed to write all data to %s\n" msgstr "neuspelo kreiranje %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, fuzzy, c-format msgid "Failed to find %s:\n" msgstr "neuspelo kreiranje %s\n" -#: build/files.c:2726 +#: build/files.c:2728 #, fuzzy, c-format msgid "Processing files: %s-%s-%s\n" msgstr "neuspelo otvaranje %s: %s" @@ -723,161 +724,161 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, fuzzy, c-format msgid "create archive failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/pack.c:91 +#: build/pack.c:93 #, fuzzy, c-format msgid "create archive failed: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/pack.c:113 +#: build/pack.c:115 #, fuzzy, c-format msgid "cpio_copy write failed: %s\n" msgstr "neuspelo èitanje: %s (%d)" -#: build/pack.c:120 +#: build/pack.c:122 #, fuzzy, c-format msgid "cpio_copy read failed: %s\n" msgstr "neuspelo èitanje: %s (%d)" -#: build/pack.c:223 +#: build/pack.c:225 #, fuzzy, c-format msgid "Could not open PreIn file: %s\n" msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, fuzzy, c-format msgid "Could not open PreUn file: %s\n" msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, fuzzy, c-format msgid "Could not open PostIn file: %s\n" msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, fuzzy, c-format msgid "Could not open PostUn file: %s\n" msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, fuzzy, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, 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:296 +#: build/pack.c:298 #, fuzzy, c-format msgid "readRPM: open %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/pack.c:306 +#: build/pack.c:308 #, fuzzy, c-format msgid "readRPM: read %s: %s\n" msgstr "Neuspelo èitanje %s: %s." -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, fuzzy, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: build/pack.c:343 +#: build/pack.c:345 #, 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:352 +#: build/pack.c:354 #, fuzzy, c-format msgid "readRPM: reading header from %s\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:568 +#: build/pack.c:570 #, fuzzy, c-format msgid "Generating signature: %d\n" msgstr "napravi PGP potpis" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:594 +#: build/pack.c:596 #, fuzzy, c-format msgid "Could not open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:645 +#: build/pack.c:647 #, fuzzy, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:656 +#: build/pack.c:658 #, fuzzy, c-format msgid "Unable to read header from %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:670 +#: build/pack.c:672 #, fuzzy, c-format msgid "Unable to write header to %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:680 +#: build/pack.c:682 #, fuzzy, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:686 +#: build/pack.c:688 #, fuzzy, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, fuzzy, c-format msgid "cannot create %s: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -952,123 +953,123 @@ msgstr "neuspelo otvaranje %s: %s" msgid "line %d: Second %%files list\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, fuzzy, c-format msgid "OS is excluded: %s\n" msgstr "Pribavljam %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, fuzzy, c-format msgid "OS is not included: %s\n" msgstr "%s: Neuspelo otvaranje\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, fuzzy, c-format msgid "%s field must be present in package: %s\n" msgstr "\"%s\" odreðuje vi¹e paketa\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, fuzzy, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, fuzzy, c-format msgid "Unable to open icon %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, fuzzy, c-format msgid "Unable to read icon %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, fuzzy, c-format msgid "Unknown icon type: %s\n" msgstr "(nepoznat tip)" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, fuzzy, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, fuzzy, c-format msgid "line %d: Malformed tag: %s\n" msgstr "pogre¹an broj paketa: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, fuzzy, c-format msgid "line %d: Empty tag: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, fuzzy, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, fuzzy, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, fuzzy, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, fuzzy, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, fuzzy, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, fuzzy, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "nedostaje arhitektura za %s na %s:%d" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, fuzzy, c-format msgid "Internal error: Bogus tag %d\n" msgstr "fatalna gre¹ka: " -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, fuzzy, c-format msgid "Bad package specification: %s\n" msgstr " Opcije odrednice paketa:" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, fuzzy, c-format msgid "Package already exists: %s\n" msgstr "privremena baza podataka %s veæ postoji" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, fuzzy, c-format msgid "line %d: Unknown tag: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1107,57 +1108,57 @@ msgstr "neuspelo otvaranje %s: %s" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, fuzzy, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, fuzzy, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, fuzzy, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, fuzzy, c-format msgid "line %d: File name not permitted: %s\n" msgstr "paket %s nije naveden u %s" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, fuzzy, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "paket %s nije naveden u %s" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, fuzzy, c-format msgid "line %d: Version required: %s\n" msgstr "neuspelo otvaranje %s: %s" @@ -1182,48 +1183,48 @@ msgstr "preme msgid "line %d: Second %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "neuspelo otvaranje %s: %s" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "nemoj proveravati arhitekturu paketa" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "paket %s nije naveden u %s" @@ -1393,62 +1394,62 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, fuzzy, c-format msgid "line %d: Bad number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, fuzzy, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "pogre¹an broj paketa: %s\n" -#: build/spec.c:305 +#: build/spec.c:307 #, fuzzy, c-format msgid "line %d: Bad %s number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, fuzzy, c-format msgid "(error 0x%x)" msgstr "gre¹ka: " -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 #, fuzzy msgid "Unknown file type" msgstr "(nepoznat tip)" -#: lib/cpio.c:230 +#: lib/cpio.c:234 #, fuzzy msgid "Missing hard link(s)" msgstr "nedostaje ':' na %s:%d" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 #, fuzzy msgid "Internal error" msgstr "fatalna gre¹ka: " -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 #, fuzzy msgid " failed - " msgstr "PGP omanuo" @@ -1458,251 +1459,252 @@ msgstr "PGP omanuo" msgid "package %s was already added, replacing with %s\n" msgstr "paket %s nije instaliran\n" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "neuspelo otvaranje %s: %s" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "upit nad svim paketima" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(nije broj)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(nije broj)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(nije broj)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, fuzzy, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() nije vratio 'fugger' velièinu: %s" -#: lib/fs.c:93 +#: lib/fs.c:92 #, fuzzy, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() nije vratio 'fugger' velièinu: %s" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, fuzzy, c-format msgid "failed to stat %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, fuzzy, c-format msgid "failed to open %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "neuspela komanda rmdir %s: %s" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, fuzzy, c-format msgid "error creating temporary file %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/package.c:224 +#: lib/package.c:231 #, fuzzy msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a" -#: lib/package.c:232 +#: lib/package.c:239 #, fuzzy msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: Neuspelo 'rpmReadSignature'\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, fuzzy, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 #, fuzzy msgid "exclude paths must begin with a /" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "preme¹tanja moraju poèeti znakom '/'" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "preme¹tanja moraju imati znak =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "preme¹tanja moraju imati / praæeno sa =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "instaliraj sve datoteke, èak i konfiguracije koje bi inaèe bile preskoèene" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1710,641 +1712,648 @@ msgstr "" "ukloni sve pakete koji odgovaraju (normalno, javlja se gre¹ka ako " " oznaèava vi¹e paketa)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 #, fuzzy msgid "do not execute package scriptlet(s)" msgstr "nemoj izvr¹iti nijedan skript iz paketa" -#: lib/poptI.c:126 +#: lib/poptI.c:125 #, fuzzy msgid "relocate files in non-relocateable package" msgstr "paket %s nije instaliran\n" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "izbri¹i (deinstaliraj) paket" -#: lib/poptI.c:132 +#: lib/poptI.c:131 #, fuzzy msgid "+" msgstr "upit nad svim paketima" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "nemoj da instalira¹ dokumentaciju" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "skraæenica za --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 #, fuzzy msgid "upgrade package(s) if already installed" msgstr "paket %s nije instaliran\n" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 #, fuzzy msgid "+" msgstr " -b \t " -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "pi¹i he¹-znak (#) kako odmièe instaliranje paketa (dobro doðe sa -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "nemoj proveravati arhitekturu paketa" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "nemoj proveravati operativni sistem za paket" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "instaliraj dokumentaciju" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "instaliraj paket" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "nemoj proveravati zavisnosti paketa" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, fuzzy, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, fuzzy, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, fuzzy, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, fuzzy, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "nemoj proveravati zavisnosti paketa" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "proveri potpis u paketu" -#: lib/poptI.c:198 +#: lib/poptI.c:197 #, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" msgstr "upit nad paketom koji ima " -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, fuzzy, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "nemoj izvr¹iti nijedan skript iz paketa" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, fuzzy, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "nemoj izvr¹iti nijedan instalacioni skript" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, fuzzy, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "nemoj izvr¹iti nijedan instalacioni skript" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, fuzzy, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "nemoj izvr¹iti nijedan instalacioni skript" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" "a¾uriraj na staru verziju paketa (--force kod a¾uriranja ovo radi automatski)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "pi¹i procente instalacije paketa" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "premesti paket u , ako se mo¾e premestiti" -#: lib/poptI.c:223 +#: lib/poptI.c:222 #, fuzzy msgid "relocate files from path to " msgstr "premesti datoteke iz u " -#: lib/poptI.c:224 +#: lib/poptI.c:223 #, fuzzy msgid "=" msgstr "premesti datoteke iz u " -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "ponovo instaliraj ako je paket veæ prisutan" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "nemoj instalirati, ali reci da li æe da radi ili ne" -#: lib/poptI.c:241 +#: lib/poptI.c:240 #, fuzzy msgid "upgrade package(s)" msgstr "instaliraj paket" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 #, fuzzy msgid "query/verify all packages" msgstr "upit nad svim paketima" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "re¾im upita" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 #, fuzzy msgid "query/verify package(s) owning file" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 #, fuzzy msgid "query/verify package(s) in group" msgstr "paket nema imena" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 #, fuzzy msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "upit nad svim paketima" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 #, fuzzy msgid "rpm query mode" msgstr "re¾im upita" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 #, fuzzy msgid "query a spec file" msgstr "upit nad %s neuspeo\n" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "paket nema imena" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 #, fuzzy msgid "query the package(s) triggered by the package" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 #, fuzzy msgid "rpm verify mode" msgstr "re¾im upita" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 #, fuzzy msgid "query/verify the package(s) which require a dependency" msgstr "upit za pakete koji zahtevaju svojstvo" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 #, fuzzy msgid "query/verify the package(s) which provide a dependency" msgstr "upit za pakete koji omoguæavaju svojstvo" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 #, fuzzy msgid "list all configuration files" msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 #, fuzzy msgid "list all documentation files" msgstr "instaliraj dokumentaciju" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 #, fuzzy msgid "dump basic file information" msgstr "prika¾i informacije o paketu" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 #, fuzzy msgid "list files in package" msgstr "instaliraj paket" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, fuzzy, c-format msgid "skip %%readme files" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 #, fuzzy msgid "use the following query format" msgstr "neoèekivan izvor upita" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 #, fuzzy msgid "substitute i18n sections into spec file" msgstr "upit nad paketom koji ima " -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 #, fuzzy msgid "display a verbose file listing" msgstr "prika¾i listu datoteka u paketu" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 #, fuzzy msgid "don't verify MD5 digest of files" msgstr "instaliraj paket" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 #, fuzzy msgid "don't verify size of files" msgstr "instaliraj paket" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 #, fuzzy msgid "don't verify symlink path of files" msgstr "instaliraj paket" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 #, fuzzy msgid "don't verify owner of files" msgstr "instaliraj paket" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 #, fuzzy msgid "don't verify group of files" msgstr "instaliraj paket" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 #, fuzzy msgid "don't verify mode of files" msgstr "instaliraj paket" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 #, fuzzy msgid "don't verify files in package" msgstr "instaliraj paket" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 #, fuzzy msgid "don't verify package dependencies" msgstr "nemoj proveravati zavisnosti paketa" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "instaliraj paket" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "instaliraj paket" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "potpi¹i paket (ukloni tekuæi potpis)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "proveri potpis u paketu" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "potpi¹i paket (ukloni tekuæi potpis)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 #, fuzzy msgid "generate signature" msgstr "napravi PGP potpis" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, fuzzy, c-format msgid "cannot create %%%s %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:466 +#: lib/psm.c:468 #, fuzzy, c-format msgid "cannot write to %%%s %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 #, fuzzy msgid "source package contains no .spec file\n" msgstr "upit nad paketom koji ima " -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, fuzzy, c-format msgid "group %s does not exist - using root\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, fuzzy, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "PGP omanuo" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, fuzzy, c-format msgid "incorrect format: %s\n" msgstr "gre¹ka u formatu: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(nema datoteka)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 #, fuzzy msgid "not installed " msgstr "paket %s nije instaliran\n" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(nepoznat tip)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "" +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "paket nema imena" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 #, fuzzy msgid "package has neither file owner or id lists\n" msgstr "paket nema imena" -#: lib/query.c:476 +#: lib/query.c:406 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:653 +#: lib/query.c:583 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:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:744 +#: lib/query.c:674 #, fuzzy msgid "no packages\n" msgstr "upit nad svim paketima" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "Neuspelo èitanje %s: %s." -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "nijedan paket ne zahteva %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "nijedan paket ne obezbeðuje %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:966 +#: lib/query.c:896 #, fuzzy, c-format msgid "record %u could not be read\n" msgstr "ne mogu da proèitam slog %d\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" @@ -2470,36 +2479,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "paket %s nije naveden u %s" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Pribavljam %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Pribavljam %s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Pribavljam %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, fuzzy, c-format msgid "relocating %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" @@ -2595,7 +2604,7 @@ msgstr "Instaliram %s\n" msgid "rollback %d packages to %s" msgstr "neodstaje paket za deinstalaciju" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, fuzzy, c-format msgid "read failed: %s (%d)\n" msgstr "neuspelo èitanje: %s (%d)" @@ -2841,121 +2850,121 @@ msgstr "napravi PGP potpis" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stari (interni) potpis! Odakle vam!?" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "Ne mogu da izvr¹im PGP" -#: lib/signature.c:351 +#: lib/signature.c:353 #, fuzzy msgid "pgp failed\n" msgstr "PGP omanuo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 #, fuzzy msgid "pgp failed to write signature\n" msgstr "PGP nije uspeo da zapi¹e potpis" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 #, fuzzy msgid "unable to read the signature\n" msgstr "ne mogu da proèitam potpis" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 #, fuzzy msgid "gpg failed\n" msgstr "PGP omanuo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 #, fuzzy msgid "gpg failed to write signature\n" msgstr "PGP nije uspeo da zapi¹e potpis" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "instaliraj paket" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "preskoèi sve MD5 potpise" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2966,17 +2975,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/verify.c:297 +#: lib/verify.c:292 #, fuzzy, c-format msgid "missing %s" msgstr "nedostaje { posle %" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: " @@ -3039,101 +3048,101 @@ msgstr "deljeno" msgid "locked db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "nedostaje { posle %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "nedostaje } posle %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "prazan 'tag' format'" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "prazno ime tag-a" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "nepoznat tag" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "] oèekivano na kraju niza" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "neoèekivano ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "neoèekivano }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "oèekivan znak ? u izrazu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 #, fuzzy msgid "{ expected after ? in expression" msgstr "{ oèekivano posle ? u izrazu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "} oèekivano u izrazu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "oèekivano : praæeno ? podizrazom" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 #, fuzzy msgid "{ expected after : in expression" msgstr "{ oèekivano posle : u izrazu" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "| oèekivano na kraju izraza" @@ -3156,256 +3165,256 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, fuzzy, c-format msgid "cannot open %s index\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 #, fuzzy msgid "no dbpath has been set\n" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, fuzzy, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, fuzzy, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "ne mogu da proèitam zaglavlje na %d za proveru" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "gre¹ka kod uzimanja sloga %s iz %s" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, fuzzy, c-format msgid "error(%d) storing record %s into %s\n" msgstr "gre¹ka zapisivanja sloga %s u %s" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "dbpath nije odreðen" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "privremena baza podataka %s veæ postoji" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, fuzzy, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, fuzzy, c-format msgid "cannot add record originally at %u\n" msgstr "ne mogu da dodam slog originalno na %d" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "(nepoznat tip)" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, fuzzy, c-format msgid "Unterminated %c: %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, fuzzy, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "paket %s nije naðen u %s" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, fuzzy, c-format msgid "File %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3471,28 +3480,28 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "Neoèekivana ili nepoznata FTP gre¹ka" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 #, fuzzy msgid "(no error)" msgstr "gre¹ka: " #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "fatalna gre¹ka: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "gre¹ka: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "upozorenje: " @@ -3526,13 +3535,13 @@ msgstr "Lozinka za %s@%s: " msgid "error: %sport must be a number\n" msgstr "gre¹ka: FTP port mora biti broj\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 #, fuzzy msgid "url port must be a number\n" msgstr "gre¹ka: FTP port mora biti broj\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, fuzzy, c-format msgid "failed to create %s: %s\n" msgstr "neuspelo kreiranje %s\n" diff --git a/po/sv.po b/po/sv.po index 165f664..530d8d6 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2002-02-18 21:13+0100\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -19,44 +19,44 @@ msgstr "ouppfyllda byggberoenden:\n" msgid "Unable to open spec file %s: %s\n" msgstr "Kan inte öppna specfilen %s: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "Kunde inte öppna \"tar\"-rör: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "Kunde inte läsa specfil från %s\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "Kunde inte byta namn på %s till %s: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "kunde inte ta status på %s: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "Filen %s är inte en vanlig fil.\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Bygger målplattformar: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "Bygger för målet %s\n" @@ -74,48 +74,48 @@ msgstr "fel vid l msgid "cannot re-open payload: %s\n" msgstr "kan inte återöppna lasten: %s\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "visa vilken version av rpm som används" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "visa mindre detaljerad utdata" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "visa mer detaljerad utdata" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "skriv ut makroexpansion av +" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "skicka standard ut till " -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "använd som toppkatalog" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -131,23 +131,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "läs istället för standard rpmrc-fil(er)" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "visa slutliga rpmrc- och makrokonfigurationer" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "deaktivera användningen av libio(3)-API:et" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "felsök protokolldataström" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "felsök rpmio I/O" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "felsök cache-hanteringen av URL:ar" @@ -180,12 +180,12 @@ msgid "Common options for all rpm modes:" msgstr "Gemensamma flaggor för alla rpm-lägen:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "%s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM version %s\n" @@ -204,123 +204,123 @@ msgstr "Det h msgid "Usage: %s {--help}\n" msgstr "Användning: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "Flaggan --rcfile har tagits bort.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "Använd \"--macros \" istället.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Internt fel i argumenthantering (%d) :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "enbart ett huvudläge kan anges" -#: rpmqv.c:685 +#: rpmqv.c:687 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:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "oväntade frågeflaggor" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "oväntat frågeformat" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "oväntad frågekälla" -#: rpmqv.c:736 +#: rpmqv.c:738 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:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" "enbart installation, uppgradering, rmsource och rmspec kan tvingas fram" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "filer kan relokeras endast under paketinstallation" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "enbart en av --prefix eller --relocate kan användas" -#: rpmqv.c:750 +#: rpmqv.c:752 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:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix kan endast användas när nya paket installeras" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "argument till --prefix måste börja med /" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) kan enbart användas vid paketinstallation" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent kan enbart användas vid paketinstallation" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles kan enbart användas vid paketinstallation" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs kan enbart användas vid paketinstallation" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs kan enbart användas vid paketinstallation" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs kan enbart användas vid paketinstallation" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "enbart en av --excludedocs och --includedocs kan användas" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch kan enbart användas vid paketinstallation" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos kan enbart användas vid paketinstallation" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize kan enbart användas vid paketinstallation" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches kan enbart användas när paket raderas" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles kan enbart användas vid paketinstallation" -#: rpmqv.c:810 +#: rpmqv.c:812 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:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -328,7 +328,7 @@ msgstr "" "skriptdeaktiveringsflaggor kan enbart användas när paket installeras eller " "raderas" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -336,7 +336,7 @@ msgstr "" "utlösardeaktiveringsflaggor kan enbart användas när paket installeras eller " "raderas" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -344,13 +344,13 @@ msgstr "" "--nodeps kan enbart användas när paket byggs, byggs om, kompileras om, " "installeras, raderas eller verifieras" -#: rpmqv.c:829 +#: rpmqv.c:831 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:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -358,105 +358,106 @@ msgstr "" "--root (-r) kan enbart användas när paket installeras, raderas, frågas eller " "databasen byggs om" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "argument till --root (-r) måste börja med /" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "inga filer att signera\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "kan inte komma åt filen %s\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp hittades inte: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Ange lösenfras: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Kontrollen av lösenfrasen misslyckades\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Lösenfrasen är ok.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Felaktig %%_signature-spec i makrofil.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign kan enbart användas vid pakettillverkning" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "exec misslyckades\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "inga paketfiler angivna för omtillverkning" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "inga specfiler angivna för tillverkning" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "inga tar-filer angivna för tillverkning" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "inga paket angivna att radera" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "inga paket angivna för installation" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "inga parametrar angivna för fråga" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "inga parametrar angivna för verifiering" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "oväntade argument till --querytags " -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "inga parametrar angivna för fråga" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Kan inte öppna temporär fil.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "Kör(%s): %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "Körning (exec) av %s misslyckades (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "Dålig slutstatus från %s (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -511,184 +512,184 @@ msgstr "- st msgid "&& and || not suported for strings\n" msgstr "&& och || stöds inte för strängar\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "syntaxfel i uttryck\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK-fel: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Saknad \"(\" i %s %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Saknad \")\" i %s(%s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Ogiltig %s token: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "Saknad %s i %s %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Annat än blanktecken följer på %s(): %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Felaktig syntax: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Felaktig rättighetsspecifikation: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Felaktig specifikation av katalogrättigheter: %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Ovanlig lokallängd: \"%.*s\" i %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Duplicerad lokal %.*s i %%lang(%s)\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Slog i gränsen för %%docdir\n" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "Två filer på en rad: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Filnamn måste börja med \"/\": %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Filen uppräknad två gånger: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Symbolisk länk pekar på BuildRoot: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Filen matchar inte prefixet (%s): %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Filen hittades inte: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Felaktig ägare/grupp: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Fil%5d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Filen behöver inledande \"/\": %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "Matchning inte tillåtet: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "Hittade ingen fil vid matchningen: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Kunde inte öppna %%files-fil %s: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "rad: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "Kunde inte köra %s: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "Kunde inte grena %s: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s misslyckades\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "kunde inte skriva all data till %s\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "Letar upp %s: (använder %s)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "Misslyckades med att hitta %s:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Bearbetar filer: %s-%s-%s\n" @@ -717,157 +718,157 @@ msgstr "getGnameS: f msgid "getGidS: too many gid's\n" msgstr "getGidS: för många gid\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Kunde inte kanonisera värdnamn: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "skapande av arkiv misslyckades vid fil %s: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "skapande av arkiv misslyckades: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy kunde inte skriva: %s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy kunde inte läsa: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Kunde inte öppna PreIn-fil: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Kunde inte öppna PreUn-fil: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Kunde inte öppna PostIn-fil: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Kunde inte öppna PostUn-fil: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Kunde inte öppna VerifyScript-fil: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Kunde inte öppna Trigger-skriptfil: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: öppna %s: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: läs %s: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek misslyckades: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s är inte ett RPM-paket\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: läser huvud från %s\n" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "Kan inte skapa oföränderlig huvudregion.\n" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "Kan inte skriva temporärhuvud\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "Felaktig CSA-data\n" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "Kan inte skriva slutligt huvud\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Genererar signatur: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "Kan inte läsa om signaturhuvud.\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "Kunde inte öppna %s: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "Kunde inte skriva paket: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Kan inte läsa signaturen %s: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, 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:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Kan inte skriva huvud till %s: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, 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:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Kan inte skriva last till %s: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "kan inte skapa %s: %s\n" @@ -942,123 +943,123 @@ msgstr "rad %d: Fel i tolkning av %%files: %s\n" msgid "line %d: Second %%files list\n" msgstr "rad %d: En andra %%files-lista\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "Arkitekturen är utesluten: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "Arkitekturen är inte medtagen: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "OS är uteslutet: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "OS är inte medtaget: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "%s-fält måste finnas med i paketet: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Dubbla %s-poster i paketet: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "Kan inte öppna ikon %s: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "Kan inte läsa ikon %s: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "Okänd ikontyp: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "rad %d: Taggen tar endast ett värde: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "rad %d: Felaktig tagg: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "rad %d: Tom tagg: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot kan inte vara \"/\": %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "rad %d: Prefix får inte sluta med \"/\": %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "rad %d: Docdir måste börja med \"/\": %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "rad %d: Epoch/Serial-fält måste vara numeriskt: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "rad %d: Felaktigt %s: bestämningar: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "rad %d: Felaktigt BuildArchitecture-format: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Internt fel: felaktig tagg %d\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "Felaktig paketangivelse %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "Paketet existerar redan: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "rad %d: Okänd tagg: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "Specfil kan inte använda BuildRoot\n" @@ -1097,58 +1098,58 @@ msgstr "rad %d: Felaktigt argument till %%setup: %s\n" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "rad %d: Felaktig %%setup-flagga %s: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "rad %d: Behöver argument till %%patch -b: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "rad %d: Behöver argument till %%patch -z: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "rad %d: Behöver argument till %%patch -p: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "rad %d: Felaktigt argument till %%patch -p: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "För många patchar!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "rad %d: Felaktigt argument till %%patch: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "rad %d: andra %%prep\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" "rad %d: Beroenden måste börja alfanumeriskt, med \"_\" eller \"/\": %s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "rad %d: Filnamn inte tillåtna: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "rad %d: Filnamn med version inte tillåtet: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "rad %d: Version krävs: %s\n" @@ -1173,47 +1174,47 @@ msgstr "rad %d: skriptprogram m msgid "line %d: Second %s\n" msgstr "rad %d: En andra %s\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "rad %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "Kan inte öppna %s: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "Oavslutat %%if\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean returnerar %d\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Fick ett %%else utan något %%if\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Fick ett %%endif utan något %%if\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "felformaterad %%include-sats\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "Hittade inga kompatibla arkitekturer att bygga\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "Paketet har ingen %%description: %s\n" @@ -1372,59 +1373,59 @@ msgstr " msgid "lookup i18N strings in specfile catalog" msgstr "slå upp översatta strängar i specfilkatalog" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "rad %d: Felaktigt tal: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "rad %d: Felaktigt no%s-tal: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "rad %d: Felaktigt %s-tal: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(fel 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Felaktigt magiskt tal" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Felaktigt/oläsbart huvud" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Huvudstorleken för stor" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Okänd filtyp" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "Saknad(e) hårdlänk(ar)" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "MD5-summan stämmer inte" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Internt fel" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "Ingen arkivfilen i huvud" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " misslyckades - " @@ -1433,52 +1434,52 @@ msgstr " misslyckades - " msgid "package %s was already added, replacing with %s\n" msgstr "paket %s är redan installerat" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "felaktig db-fil %s\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s JA (db-tillhandahållande)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "inga paket\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "ignorera paketnamnsrelation(er) [%d]\t%s -> %s\n" -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "========== noterar alla relationer\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" @@ -1486,199 +1487,200 @@ msgstr "" "========== tsort:erar paket (ordning, #föregångare, #efterföljare, träd, " "djup)\n" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== endast efterföljare (presentationsordning)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "LOOP:\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== fortsätter med tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(inte ett tal)" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "(inte base64)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "(felaktig typ)" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "(inte en klick)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() kunde inte returnera storlek: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() kunde inte returnera monteringspunkter: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "kunde inte ta status på %s: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "kunde inte öppna %s: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "filen %s är på en okänd enhet\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Kataloger ej uttryckligen inkluderade i paketet:\n" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "katalog %s skapad med rättigheter %04o.\n" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, 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:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s sparades som %s\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s rmdir av %s misslyckades: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s unlink av %s misslyckades: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s skapades som %s\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "fel när tämporärfil %s skapades\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead misslyckades\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "paket med versionsnummer 1 stöds inte av denna version av RPM\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature misslyckades\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ingen signatur tillgänglig\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead misslyckades\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Fread misslyckades: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "läs istället för standardmakrofil(er)" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "uteslutna sökvägar måste börja med /" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "omflyttningar måste börja med /" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "omflyttningar måste innehålla ett =" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "omflyttningar måste ha ett / efter =" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "återställning tar en tid-/datumstämpel som argument" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "felformaterat tid-/datumstämpelargument för återställning" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" "installera alla filer, även konfigurationer som annars kunde hoppats över" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1686,147 +1688,147 @@ msgstr "" "ta bort alla paket som matchar (normalt ger det ett fel om " "anger flera paket)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "kör inte paketskript" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "relokera filer i ej relokerbart paket" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "spara raderade paketfiler genom att spara dem i underkatalog" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "radera (avinstallera) paket" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "installera inte dokumentation" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "hoppa över filer med inledande " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "kortform för --replacepkgs --replacefiles" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "uppgradera paket om redan installerat/de" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" "skriv ut brädgårdar allteftersom paketet installeras (bra tillsammans med -v)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "verifiera inte paketarkitektur" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "verifiera inte paketets operativsystem" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "kontrollera inte diskutrymme före installation" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "installera dokumentation" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "installera paket" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "uppdatera databasen, men ändra inte filsystemet" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "verifiera inte paketberoenden" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "utför inte (eventuellt) %%pre-skript" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "utför inte (eventuellt) %%post-skript" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "utför inte (eventuellt) %%preun-skript" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "utför inte (eventuellt) %%postun-skript" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "verifiera inte paketberoenden" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "verifiera paketsignatur" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "kör inte skript utlösta av detta paket" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "kör inte %%triggerprein-skript" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "kör inte %%triggerin-skript" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "kör inte %%triggerun-skript" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "kör inte %%triggerpostun-skript" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1834,452 +1836,459 @@ msgstr "" "uppgradera till en gammal version av paketet (--force vid uppgraderingar gör " "detta automatiskt)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "skriv procent allt eftersom paketet installeras" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "flytta paketet till , om flyttbart" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "relokera filer från till " -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "spara raderade paketfiler genom ompaketering" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "installera även om paketet byter ut installerade filer" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "installera om ifall paketet redan är installerat" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till " -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "installera inte, men tala om ifall det skulle fungera eller inte" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "uppgradera paket" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "fråga/verifiera alla paket" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "rpm verifieringsläge" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "fråga/verifiera paket som äger fil" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "fråga/verifiera paket med filidentifierare" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "fråga/verifiera paket i grupp" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "fråga/verifiera paket med huvudidentifierare" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "fråga/verifiera en paketfil (t.ex. en binär *.rpm-fil)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "fråga/verifiera paket som med paketidentifierare" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "rpm frågeläge" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "fråga/verifiera paket med huvudidentifierare" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "visa kända frågetaggar" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "fråga en specfil" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "fråga/verifiera paket från installationstransaktion" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "fråga paket utlösta av paketet" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "rpm verifieringsläge" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "fråga/verifiera paket som behöver ett beroende" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "fråga/verifiera paket som tillhandahåller ett beroende" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "lista alla konfigurationsfiler" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "lista alla dokumentationsfiler" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "visa filinformation" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "lista filer i paketet" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "hoppa över %%ghost-filer" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "hoppa över %%license-filer" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "hoppa över %%readme-filer" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "använd följande frågeformat" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "ersätt översatta sektioner till specfil" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "visa tillstånd för de listade filerna" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "visa en utförlig fillistning" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "verifiera inte MD5-summor för filer" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "verifiera inte storlekar på filer" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "verifiera inte sökvägen i symboliska länkar" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "verifiera inte ägare till filer" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "verifiera inte grupper till filer" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "verifiera inte modifikationstiden för filer" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "verifiera inte rättigheter för filer" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "verifiera inte filerna i paketet" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "verifiera inte paketberoenden" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "utför inte (eventuellt) %verifyscript" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "verifiera inte huvudets SHA1-summa" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "verifiera inte MD5-summor för filer" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "signera ett paket (släng nuvarande signatur)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "verifiera paketsignatur" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "signera ett paket (släng nuvarande signatur)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "generera signatur" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "Datatyp %d stöds inte\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "kan inte skapa %%%s %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "kan inte skriva till %%%s %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "källpaket förväntades, fann binärpaket\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "källpaket innehåller ingen .spec-fil\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: kör (eventuellt) %s-skript\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, 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:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "användare %s finns inte - använder root\n" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "grupp %s finns inte - använder root\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "uppackning av arkiv misslyckades%s%s: %s\n" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " vid fil " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "%s misslyckades på fil %s: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "%s misslyckades: %s\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "fel format: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(innehåller inga filer)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normal " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "ersatt " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "oinstallerat " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "nätdelad " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(ej tillstnd) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(okänd %3d) " -#: lib/query.c:306 -msgid "(no state) " -msgstr "(ej tillstnd) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "paketet har varken filägare eller id-listor\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "paketet har varken filägare eller id-listor\n" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "kan inte fråga %s: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "misslyckades med att öppna %s: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "fråga av %s misslyckades\n" -#: lib/query.c:653 +#: lib/query.c:583 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:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "inga paket matchar %s: %s\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "inga paket\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupp %s innehåller inga paket\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "inga paketutlösare %s\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "felformaterad %s: %s\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "inga paket matchar %s: %s\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "inget paket behöver %s\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "inget paket tillhandahåller %s\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tillhör inget paket\n" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "paketpost nummer: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "post %u kunde inte läsas\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" @@ -2406,36 +2415,36 @@ msgstr " %s A %s\tB %s\n" msgid "package %s has unsatisfied %s: %s\n" msgstr "paket %s har ouppfyllda Requires: %s\n" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "========== omflyttningar\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "%5d utesluter %s\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d flyttar om %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "hoppar över multilib-sökväg %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "hoppar över %s %s\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "flyttar %s till %s\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "flyttar katalogen %s till %s\n" @@ -2529,7 +2538,7 @@ msgstr "Installerar %s\n" msgid "rollback %d packages to %s" msgstr "återställer (+%d,-%d) paket till %s" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "läsning misslyckades: %s (%d)\n" @@ -2774,117 +2783,117 @@ msgstr "Gammal PGP-signatur\n" 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:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "Kunde inte köra %s: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "pgp misslyckades\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "pgp misslyckades att skriva en signatur\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP signaturstorlek: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "kan inte läsa signaturen\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fick %d byte PGP-signatur\n" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "gpg misslyckades\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "gpg kunde inte skriva signatur\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG-signaturstorlek: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Felaktig %%_signature-spec i makrofil\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, 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:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Huvudstorleken för stor" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "verifiera inte huvudets SHA1-summa" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "hoppa över eventuella MD5-signaturer" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Ingen signatur\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "Trasig MD5-summa: STÖDS EJ\n" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" @@ -2895,17 +2904,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "saknas %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Ouppfyllda beroenden för %s-%s-%s: " @@ -2968,99 +2977,99 @@ msgstr "delat" msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "okänd db-flagga: \"%s\" ignorerad\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s har ogiltigt ogiltigt numeriskt värde, hoppar över\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s har för stort eller för litet \"long\"-värde, hoppar över\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s har för stort eller för litet heltalsvärde, hoppar över\n" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE antal måste vara 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "{ fattas efter %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "} fattas efter %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "tomt taggformat" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "tomt taggnamn" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "okänd tagg" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "] förväntades vid slutet på vektor" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "oväntad ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "oväntad }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "? förväntades i uttryck" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "{ förväntades efter ? i uttryck" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "} förväntades i uttryck" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr ": förväntades efter ? i deluttryck" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "{ förväntades efter : i uttryck" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "| förväntades vid slutet på uttryck" @@ -3081,255 +3090,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "generera huvuden kompatibla med (äldre) rpm[23]-paketering" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: okänt taggnamn: \"%s\" ignorerat\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "kan inte öppna %s-indexet med db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "kan inte öppna %s-indexet\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "ingen dbpath har satts\n" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "fel(%d) när post %s sparades i %s\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan inte läsa huvud vid 0x%x\n" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" från %s-indexet.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "tar bort %d poster från %s-indexet.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "fel(%d) när post %s sparades i %s\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "fel(%d) när post %s togs bort ur %s\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "fel(%d) vid allokering av ny paketinstans\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-indexet.\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "lägger till %d poster till %s-indexet.\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "fel(%d) när post %s sparades i %s\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "tar bort %s efter lyckad db3-ombyggnad.\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "tillfällig databas %s existerar redan\n" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "skapar katalog %s: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "kan inte lägga till post ursprungligen vid %u\n" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "byt ut filer i %s med filer från %s för att återställa" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== aktiva %d tomma %d\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(tom)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(tom)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "Makro %%%s har oavslutad kropp\n" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "Makro %%%s har otillåtet namn (%%define)\n" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "Makro %%%s har oavslutade flaggor\n" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "makro %%%s har tom kropp\n" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "Makro %%%s misslyckades att expandera\n" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "Makro %%%s har otillåtet namn (%%undefine)\n" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "Makro %%%s (%s) användes inte under nivå %d\n" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Okänd flagga %c i %s(%s)\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Rekursionsdjup(%d) större än max(%d)\n" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "Oavslutad %c: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Ett %% följs av ett makro som inte kan tolkas\n" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "Inget makro %%%.*s hittat, hoppar över\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "Målbuffert översvämmad\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "Fil %s: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "Filen %s är mindre än %u byte\n" @@ -3386,27 +3395,27 @@ msgstr "Avbruten under g msgid "Unknown or unexpected error" msgstr "Okänt eller oväntat fel" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "loggar in på %s som %s, lösenord %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(inget fel)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "ödesdigert fel: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "fel: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "varning: " @@ -3440,12 +3449,12 @@ msgstr "L msgid "error: %sport must be a number\n" msgstr "fel: %s-port måste vara ett tal\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "url-port måste vara ett tal\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "kunde inte skapa %s: %s\n" diff --git a/po/tr.po b/po/tr.po index dbde918..86918c2 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-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -20,44 +20,44 @@ msgstr "i msgid "Unable to open spec file %s: %s\n" msgstr "%s spec dosyasý açýlamadý: %s\n" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "tar veriyolu açýlamadý: %m\n" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "%s paketinden spec dosyasý okunamadý\n" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "%s %s olarak deðiþtirilemedi: %m\n" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "%s durum bilgileri alýnamadý: %m\n" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "%s bir normal bir dosya deðil.\n" -#: build.c:253 +#: build.c:255 #, 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:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "Hedef platformlar derleniyor: %s\n" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "%s için derleniyor\n" @@ -75,48 +75,48 @@ msgstr "paketten ba msgid "cannot re-open payload: %s\n" msgstr "payload %s tekrar açýlamýyor\n" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "Kullanýlan RPM sürümünü verir" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "daha az ayrýntýlý çýktý saðlar" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "daha ayrýntýlý çýktý saðlar" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 #, fuzzy msgid "print macro expansion of EXPR" msgstr "+ için makro açýlýmýný gösterir" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "standart çýktýyý 'a gönderir" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "Üst düzey dizin olarak kullanýlýr" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -132,23 +132,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "öntanýmlý rpmrc dosyasý yerine okunur" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "son rpmrc ve makro yapýlandýrmasýný gösterir" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "libio(3) API kullanýmýný iptal eder" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "protokol veri akýþýnda hata kontrolu" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "rpmio G/Ç hata kontrolu" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "URL arabellek kullanýmý hata kontrolu" @@ -182,12 +182,12 @@ msgid "Common options for all rpm modes:" msgstr "Tüm rpm kipleri için ortak seçenekler:" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "dosya %s: %s\n" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "RPM Sürüm %s\n" @@ -206,126 +206,126 @@ msgstr "Bu program GNU GPL ko msgid "Usage: %s {--help}\n" msgstr "Kullanýmý: %s {--help}\n" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "--rcfile seçeneði kaldýrýlmýþtý.\n" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "Yerine \"--macros \" kullanýn.\n" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "(%d) argümaný iþlenirken iç hata oluþtu :-(\n" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "sadece bir ana kip belirtilebilir" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "bir anda sadece bir tarz sorgulama/denetleme yapýlabilir" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "beklenmeyen sorgulama bayraklarý" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "beklenmeyen sorgulama biçemi" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "beklenmeyen sorgulama kaynaðý" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "--dbpath bir veritabaný kullanmayan iþlemler için verilmiþ" -#: rpmqv.c:742 +#: rpmqv.c:744 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:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" "dosyalar sadece paket kurulumu sýrasýnda yeni yerlerine yerleþtirilebilir" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" "--relocate ve --excludepath sadece yeni paket kurulumunda kullanýlabilir" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "--prefix sadece yeni paketlerin kurulmasý sýrasýnda kullanýlabilir" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "--prefix ile belirtilenler '/' ile baþlamalý" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "--hash (-h) sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "--percent sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "--replacefiles sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "--replacepkgs sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "--excludedocs sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "--includedocs sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "--excludedocs ve --includedocs bir arada kullanýlamaz" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "--ignorearch sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "--ignoreos sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "--ignoresize sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "--allmatches sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "--allfiles sadece paket kurulumu sýrasýnda kullanýlabilir" -#: rpmqv.c:810 +#: rpmqv.c:812 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:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" @@ -333,7 +333,7 @@ msgstr "" "betik iptal etme seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda " "kullanýlabilir" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" @@ -341,7 +341,7 @@ msgstr "" "tetikleme iptal seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda " "kullanýlabilir" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" @@ -349,7 +349,7 @@ msgstr "" "--nodeps sadece paket oluþturma, yeniden oluþturma, yeniden derleme, " "kurulum, kaldýrma ve denetleme iþlemlerinde kullanýlabilir" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" @@ -357,7 +357,7 @@ msgstr "" "--test sadece paket kurulumu, kaldýrýlmasý ve oluþturulmasý iþlemlerinde " "kullanýlabilir" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" @@ -365,106 +365,107 @@ msgstr "" "--root (-r) sadece kurulum, kaldýrma, sorgulama ve yeniden veritabaný " "oluþturma iþlemlerinde kullanýlabilir" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "--root (-r) ile verilenler '/' ile baþlamalý" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "imzalanacak dosya yok\n" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "%s dosyasý bulunamýyor\n" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "pgp bulunamadý: " -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "Anahtar parolasýný girin: " -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "Anahtar parolasý kontrolü baþarýsýz\n" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "Anahtar parolasý doðru.\n" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Makro dosyasýndaki %%_signature spec geçersiz.\n" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "--sign sadece paket oluþturulurken kullanýlabilir" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "icra baþarýsýz\n" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "yeniden oluþturmak için paket dosyalarý belirtilmemiþ" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "oluþturma için gerekli spec dosyasý belirtilmemiþ" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "oluþturma için gereken tar dosyalarý belirtilmemiþ" -#: rpmqv.c:1059 +#: rpmqv.c:1061 #, fuzzy msgid "no packages given for erase" msgstr "yüklenecek paket(ler) belirtilmedi" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "yüklenecek paket(ler) belirtilmedi" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "sorgulama için hiç argüman belirtilmedi" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "denetleme için hiç argüman belirtilmedi" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "--querytags ile beklenmeyen girdiler" -#: rpmqv.c:1153 +#: rpmqv.c:1155 #, fuzzy msgid "no arguments given" msgstr "sorgulama için hiç argüman belirtilmedi" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "Geçici dosya açýlamadý.\n" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "%s icra ediliyor: %s\n" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "%s 'in icrasý baþarýsýz (%s): %s\n" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "%s çýkýþýnda hata (%s)\n" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -519,184 +520,184 @@ msgstr "- dizgelerde desteklenmez\n" msgid "&& and || not suported for strings\n" msgstr "&& ve || dizgelerde desteklenmez\n" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "ifadede sözdizimi hatasý\n" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "TIMECHECK baþarýsýz: %s\n" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "%s içinde '(' yok: %s\n" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "%s içinde ')' yok: (%s\n" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "Andaç %s geçersiz: %s\n" -#: build/files.c:503 +#: build/files.c:505 #, fuzzy, c-format msgid "Missing %s in %s %s\n" msgstr "%s içinde '(' yok: %s\n" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "%s() boþluksuz yazýlmýþ: %s\n" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Sözdizimi hatasý: %s(%s)\n" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "mode spec hatalý: %s(%s)\n" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "dirmode spec hatalý: %s(%s)\n" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "yerel uzunluðu hatalý: \"%.*s\" (%%lang(%s))\n" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "%.*s yereli %%lang(%s) içinde tekrarlanmýþ\n" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "%%docdir için hit sýnýrý\n" -#: build/files.c:955 +#: build/files.c:957 #, 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:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "Bir satýrda 2 dosya: %s\n" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "Dosya \"/\" ile baþlamalý: %s\n" -#: build/files.c:1011 +#: build/files.c:1013 #, 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:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "Dosya iki kere gösterildi: %s\n" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "Sembolik bað BuildRoot gösteriyor: %s -> %s\n" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "Dosya önek (%s) ile uyumsuz: %s\n" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "Dosya bulunamadý: %s\n" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Kullanýcý/grup hatalý: %s\n" -#: build/files.c:1634 +#: build/files.c:1636 #, fuzzy, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "Dosya %4d: %07o %s.%s\t %s\n" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "Dosya \"/\" ile içermeli: %s\n" -#: build/files.c:1768 +#: build/files.c:1770 #, fuzzy, c-format msgid "Glob not permitted: %s\n" msgstr "satýr %d: Dosya adý uygun deðil: %s\n" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "Dosya glob tarafýndan bulunamadý: %s\n" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "%%files dosya %s dosyasýnda açýlamadý: %s\n" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "satýr: %s\n" -#: build/files.c:2234 +#: build/files.c:2236 #, 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:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "%s icra edilemedi: %s\n" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "%s ayrýlamadý: %s\n" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "%s baþarýsýz\n" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "tüm veri %s içine yazýlamadý\n" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "%s aranýyor: (%s kullanarak)...\n" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "%s bulunamadý:\n" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "Ýþlenen dosyalar: %s-%s-%s\n" @@ -725,161 +726,161 @@ msgstr "getGnameS: msgid "getGidS: too many gid's\n" msgstr "getGidS: çok fazla grup-kimliði\n" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Böyle bir makina yok: %s\n" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "%s dosyasýnda arþiv oluþturulamadý: %s\n" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "arþiv oluþturulamadý: %s\n" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "cpio_copy yazma hatasý:%s\n" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "cpio_copy okuma hatasý: %s\n" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "PreIn dosyasý açýlamadý: %s\n" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "PreUn dosyasý açýlamadý: %s\n" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "PostIn dosyasý açýlamadý: %s\n" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "PostUn dosyasý açýlamadý: %s\n" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "VerifyScript dosyasý açýlamadý: %s\n" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Trigger betik dosyasý açýlamadý: %s\n" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: %s açýlýrken: %s\n" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: %s okunurken: %s\n" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "%s: Fseek baþarýsýz: %s\n" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: %s bir RPM paketi deðil\n" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: %s baþlýðý okunuyor\n" -#: build/pack.c:483 +#: build/pack.c:485 #, fuzzy msgid "Unable to create immutable header region.\n" msgstr "%s'den baþlýk okunamadý: %s\n" -#: build/pack.c:502 +#: build/pack.c:504 #, fuzzy msgid "Unable to write temp header\n" msgstr "%s'e baþlýk yazýlamadý: %s\n" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "CSA verisi geçersiz\n" -#: build/pack.c:548 +#: build/pack.c:550 #, fuzzy msgid "Unable to write final header\n" msgstr "%s'e baþlýk yazýlamadý: %s\n" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "Ýmza üretiliyor: %d\n" -#: build/pack.c:586 +#: build/pack.c:588 #, fuzzy msgid "Unable to reload signature header.\n" msgstr "%s'den baþlýk okunamadý: %s\n" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "paket yazýlamadý: %s\n" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "sigtarget %s açýlamadý: %s\n" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "%s'den baþlýk okunamadý: %s\n" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "%s'e baþlýk yazýlamadý: %s\n" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "%s'den payload okunamadý: %s\n" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "%s'e payload yazýlamadý: %s\n" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "Yazýldý: %s\n" -#: build/pack.c:780 +#: build/pack.c:782 #, 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:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "%s dosyasý oluþturulamýyor: %s\n" @@ -954,123 +955,123 @@ msgstr "sat msgid "line %d: Second %%files list\n" msgstr "satýr %d: Ýkinci %%files listesi\n" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "Mimari dýþlandý: %s\n" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "Mimari içerilmedi: %s\n" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "OS dýþlandý: %s\n" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "OS içerilmedi: %s\n" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "Pakette %s alan mevcut olmalý: %s\n" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "Pakette %s girdi tekrarlanmýþ: %s\n" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "%s kýsayol simgesi açýlamadý: %s\n" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "%s kýsayol simgesi okunamadý: %s\n" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "bilinmeyen kýsayol simgesi türü: %s\n" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "satýr %d: Etiket sadece tek dizgecik alýr: %s\n" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "satýr %d: Etiket bozuk: %s\n" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "satýr %d: Etiket boþ: %s\n" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "satýr %d: %s içinde '-' karakteri kuraldýþý: %s\n" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot \"/\" olamaz: %s\n" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "satýr %d: Önekler \"/\" ile bitemez: %s\n" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "satýr %d: Docdir '/' ile baþlamalý: %s\n" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "satýr %d: Epoch/Serial alaný bir sayý olmalý: %s\n" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "satýr %d: %s hatalý: niteleyiciler: %s\n" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "satýr %d: BuildArchitecture biçimi hatalý: %s\n" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "Ýçsel hata: %d etiketi sahte\n" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "Paket özellikleri hatalý: %s\n" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "Paket zaten var: %s\n" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "satýr %d: Bilinmeyen etiket: %s\n" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "Spec dosyasý BuildRoot kullanamaz\n" @@ -1109,41 +1110,41 @@ msgstr "sat msgid "line %d: Bad %%setup option %s: %s\n" msgstr "satýr %d: %%setup seçeneði %s hatalý: %s\n" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "satýr %d: %%patch -b'ye argüman gerekli: %s\n" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "satýr %d: %%patch -z'ye argüman gerekli: %s\n" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "satýr %d: %%patch -p'ye argüman gerekli: %s\n" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "satýr %d: %%patch -p'nin argümaný hatalý: %s\n" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "Yamalar çok fazla!\n" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "satýr %d: %%patch argüman hatasý: %s\n" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "satýr %d: %%prep saniye\n" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" @@ -1151,17 +1152,17 @@ msgstr "" "satýr %d: Baðýmlýlýk kýsaltmalarý bir alfanümerik, '_' veya '/' ile " "baþlamalý: %s\n" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "satýr %d: Dosya adý uygun deðil: %s\n" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "satýr %d: Sürüm içeren dosya adý uygun deðil: %s\n" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "satýr %d: Sürüm gerekli: %s\n" @@ -1186,47 +1187,47 @@ msgstr "sat msgid "line %d: Second %s\n" msgstr "satýr %d: %s saniye\n" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "satýr %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "%%if kapanmamýþ\n" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean %d ile döner\n" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%if'siz bir %%else alýndý\n" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%if'siz bir %%endif alýndý\n" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "%%include deyimi bozuk\n" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "Kurgulamak için uyumlu mimari yok\n" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "Paket %%description içermiyor: %s\n" @@ -1393,59 +1394,59 @@ msgstr "hedef platforma zorlar" msgid "lookup i18N strings in specfile catalog" msgstr "spec dosyasýndaki i18n iletilerine bakar" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "satýr %d: Numara hatalý: %s\n" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "satýr %d: Hatalý no%s numarasý: %d\n" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "satýr %d: Hatalý %s numarasý: %s\n" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "(hata 0x%x)" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "Magic hatalý" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "Hatalý/okunamayan baþlýk" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "Baþlýk çok uzun" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "Bilinmeyen dosya türü" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "Sabit bað(lar) eksik" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "MD5 toplamý çeliþkili" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "Ýç hata" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr " baþarýsýz - " @@ -1454,52 +1455,52 @@ msgstr " ba msgid "package %s was already added, replacing with %s\n" msgstr "%s zaten kurulu" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s EVET (rpmrc saðlar)\n" -#: lib/depends.c:447 +#: lib/depends.c:436 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s EVET (rpmlib saðlar)\n" -#: lib/depends.c:468 +#: lib/depends.c:458 #, fuzzy msgid "(db files)" msgstr "db dosyasý %s hatalý\n" -#: lib/depends.c:480 +#: lib/depends.c:471 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s EVET (db saðlar)\n" -#: lib/depends.c:493 +#: lib/depends.c:484 #, fuzzy msgid "(db package)" msgstr "paket yok\n" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, 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:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "========== tsort baðýntýlarý kaydediliyor\n" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 #, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " @@ -1507,203 +1508,204 @@ msgid "" msgstr "" "========== paketler tsort'lanýyor (sýra, #öncüller, #ardýllar, derinlik)\n" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "========== sadece ardýllar (sunum sýrasý)\n" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "ÇEVRÝM:\n" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "========== tsort sürüyor ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "(bir sayý deðil)" -#: lib/formats.c:152 +#: lib/formats.c:156 #, fuzzy msgid "(not base64)" msgstr "(bir sayý deðil)" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 #, fuzzy msgid "(not a blob)" msgstr "(bir sayý deðil)" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "mntctl() sonuçlanan hatalý boyut nedeniyle baþarýsýz: %s\n" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "mntctl() sonuçlanan hatalý baðlantý yerleri nedeniyle baþarýsýz: %s\n" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "stat %s baþarýsýz: %s\n" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "%s dosyasýnýn bulunduðu aygýt anlaþýlamadý\n" -#: lib/fsm.c:330 +#: lib/fsm.c:334 #, fuzzy msgid "========== Directories not explictly included in package:\n" msgstr "========= Pakette bulunmayan dizinler:\n" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, fuzzy, c-format msgid "%10d %s\n" msgstr "%9d %s\n" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "%s dizin %04o izinleriyle oluþturuldu.\n" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "%s %s olarak kaydedildi\n" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, 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:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s / %s dizinin silinmesi baþarýsýz: %s\n" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s / %s bað kaldýrýlamadý: %s\n" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "%s %s olarak oluþturuldu\n" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "%s geçici dosyasý oluþturulurken hata\n" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead baþarýsýz\n" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "RPM'nin bu sürümünde paket sürümü 1 desteklenmiyor\n" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" "RPM'nin bu sürümünde sadece ilk sürüm rakamý <= 4 olan paketler " "destekleniyor\n" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature baþarýsýz\n" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ýmza bulundurmuyor\n" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr "%s: readLead baþarýsýz\n" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: Fread baþarýsýz: %s\n" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 #, fuzzy msgid "read instead of default file(s)" msgstr "öntanýmlý makro dosyasý yerine okunur" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "dýþlanan dosya yolu / ile baþlamalý" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "yeniden konumlandýrma iþlemleri / ile baþlamalý" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "yeniden konumlandýrma iþlemleri = içermelidir" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "yeniden konumlandýrma için = den sonra bir / gerekir" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 #, fuzzy msgid "malformed rollback time/date stamp argument" msgstr "tekrarlama zamaný bozuk" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "yapýlandýrmalarda atlanmýþ bile olsa tüm dosyalarý kurar" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" @@ -1711,148 +1713,148 @@ msgstr "" " ile eþlenen tüm paketleri kaldýrýr( ile çok sayýda paket " "belirtilmiþse normalde bir hata oluþur)" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "paket betikleri çalýþtýrýlmaz" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "yeniden konumlanamayan paketin dosyalarýný yeniden konumlandýrýr" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" "ismi deðiþtirilerek alt dizine kaydedilmek suretiyle silinen dosyalarý " "kaydeder" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "paketi kaldýrýr" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "+" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "belgeleri kurmaz" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr " ile baþlayan dosyalarý atlar " -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "--replacepkgs --replacefiles için kýsaltma" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "paket(ler) kurulu ise paket(ler)i günceller" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "+" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "paketin kurulma sürecini gösteren imler basar (-v ile)" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "paket mimarisi denetlenmez" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "paketin ait olduðu iþletim sistemini doðrulamaz" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "yüklemeden önce yeterli disk alaný kontrolu yapmaz" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "paket ile gelen belgeleri kurar" -#: lib/poptI.c:161 +#: lib/poptI.c:160 #, fuzzy msgid "install package(s)" msgstr "paketi kurar" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "paket baðýmlýlýklarýný denetlemez" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "paket kurulum sýrasýný baðýmlýlýklara göre düzenlemez" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "%%pre betiði (varsa) çalýþtýrýlmaz" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "%%post betiði (varsa) çalýþtýrýlmaz" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "%%preun betiði (varsa) çalýþtýrýlmaz" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "%%postun betiði (varsa) çalýþtýrýlmaz" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 #, fuzzy msgid "don't verify package digest(s)" msgstr "paket baðýmlýlýklarý doðrulanmaz" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 #, fuzzy msgid "don't verify package signature(s)" msgstr "paket imzasýný denetler" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "bu paket tarafýndan tetiklenen hiç bir betik çalýþtýrýlmaz" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "hiçbir %%triggerprein betiði çalýþtýrýlmaz" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "hiçbir %%triggerin betiði çalýþtýrýlmaz." -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "hiçbir %%triggerun betiði çalýþtýrýlmaz." -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "hiçbir %%triggerpostun betiði çalýþtýrýlmaz." -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" @@ -1860,459 +1862,466 @@ msgstr "" "paketin eski bir sürüme güncellenmesini saðlar (--force ayný iþi otomatik " "yapar)" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "kurulumun geliþimi yüzde olarak gösterilir" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "eðer deðitirilebiliyorsa paketin yerini 'e deðiþtirir" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "dosyalarý dizininden kaldýrýp dizinine yerleþtirir" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "=" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "yeniden paketleme sýrasýnda silinen paket dosyalarýný kaydeder" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "paket dosyalarý mevcut dosyalarla yer deðiþtirse bile paketi kurar" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "paketi yeniden kurar" -#: lib/poptI.c:235 +#: lib/poptI.c:234 #, fuzzy msgid "deinstall new, reinstall old, package(s), back to " msgstr "" "yeni paket(ler) kaldýrýlýr, geriye dönük eski paket(ler) yeniden kurulur" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "paket günceller" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "tüm paketleri sorgular/doðrular" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 #, fuzzy msgid "rpm checksig mode" msgstr "rpm denetleme kipi" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "dosyayý içeren paketleri sorgular/denetler" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" msgstr "dosyayý içeren paketleri sorgular/denetler" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "gruptaki paketleri sorgular/denetler" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" msgstr "dosyayý içeren paketleri sorgular/denetler" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" "bir paket dosyasýný sorgular/denetler (örn. bir çalýþtýrýlabilir *.rpm " "dosyasý)" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" msgstr "dosyayý içeren paketleri sorgular/denetler" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "rpm sorgulama kipi" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 #, fuzzy msgid "query/verify a header instance" msgstr "dosyayý içeren paketleri sorgular/denetler" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "tanýmlanmýþ sorgulama etiketlerini gösterir" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "bir spec dosyasýný sorgular" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 #, fuzzy msgid "query/verify package(s) from install transaction" msgstr "gruptaki paketleri sorgular/denetler" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "paket tarafýndan tetiklenen paketleri sorgular" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "rpm denetleme kipi" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "bir baðýmlýlýk gerektiren paketleri sorgular/denetler" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "bir baðýmlýlýðý saðlayan paketleri sorgular/denetler" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "tüm yapýlandýrma dosyalarýný listeler" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "tüm belgeleme dosyalarýný gösterir" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "temel dosya bilgilerini gösterir" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "paketteki dosyalarý gösterir" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "%%ghost dosyalarý atlanýr" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "%%license dosyalarý atlanýr" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "%%readme dosyalarý atlanýr" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "izleyen sorgulama biçimini kullanýr" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "spec dosyasýndaki i18n bölümleri yerine kullanýlýr" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "listelenmiþ dosyalarýn durumunu gösterir" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "ayrýntýlý dosya listesi gösterir" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "dosyalarýn uzunluklarý doðrulanmaz" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "dosyalarýn sembolik bað dosya yollarý doðrulanmaz" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "dosyalarýn sahipleri doðrulanmaz" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "dosyalarýn gruplarý doðrulanmaz" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "dosyalarýn deðiþiklik zamanlarý doðrulanmaz" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "dosyalarýn kipleri doðrulanmaz" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "paketteki dosyalar doðrulanamaz" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "paket baðýmlýlýklarý doðrulanmaz" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 #, fuzzy msgid "don't execute verify script(s)" msgstr "(varsa) %verifyscript çalýþtýrýlmaz" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" msgstr "Baþlýk SHA1 özümlemesi doðrulanmaz" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 #, fuzzy msgid "sign package(s) (identical to --resign)" msgstr "paketi imzalar (mevcut imza kaldýrýlýr)" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 #, fuzzy msgid "verify package signature(s)" msgstr "paket imzasýný denetler" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 #, fuzzy msgid "sign package(s) (identical to --addsign)" msgstr "paketi imzalar (mevcut imza kaldýrýlýr)" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "imza üretir" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "%d veri türü desteklenmiyor\n" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "%%%s dosyasý oluþturulamýyor: %s\n" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "%%%s dosyasýna yazýlamaz %s\n" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "kaynak paketi .spec dosyasý içermiyor\n" -#: lib/psm.c:736 +#: lib/psm.c:738 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n" -#: lib/psm.c:906 +#: lib/psm.c:908 #, 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:913 +#: lib/psm.c:915 #, 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:1253 +#: lib/psm.c:1238 #, 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:1375 +#: lib/psm.c:1360 #, 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:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "kullanýcý %s yok - root kullanýlacak\n" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "grup %s yok - root kullanýlacak\n" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, 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:1571 +#: lib/psm.c:1556 msgid " on file " msgstr " dosyada " -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, fuzzy, c-format msgid "%s failed on file %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, fuzzy, c-format msgid "%s failed: %s\n" msgstr "%s baþarýsýz\n" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "biçem yanlýþ: %s\n" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "(hiç dosya içermiyor)" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "normal " -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "yerine " -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "yüklenmedi " -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "að paylaþýmlý " -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "(durumsuz) " + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "(bilinmeyen %3d)" -#: lib/query.c:306 -msgid "(no state) " -msgstr "(durumsuz) " +#: lib/query.c:281 +#, fuzzy +msgid "package has not file owner/group lists\n" +msgstr "paket ne dosya sahibi ne de kimlik listesi içeriyor\n" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 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:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "%s sorgulanamýyor: %s\n" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "%s açýlamadý: %s\n" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "eski biçem kaynak paketleri sorgulanamaz\n" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:723 +#: lib/query.c:653 #, 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:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "paket yok\n" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s grubu hiç paket içermiyor\n" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, fuzzy, c-format msgid "malformed %s: %s\n" msgstr "%s okunamadý: %s.\n" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, fuzzy, c-format msgid "no package matches %s: %s\n" msgstr "%s tetikleyen paket yok\n" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "%s gerektiren paket yok\n" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "%s saðlayan paket yok\n" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "dosya %s: %s\n" -#: lib/query.c:931 +#: lib/query.c:861 #, 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:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "geçersiz paket numarasý: %s\n" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "paket kayýt numarasý: %u\n" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "%u. kayýt okunamadý\n" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "%s paketi kurulu deðil\n" @@ -2439,36 +2448,36 @@ 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/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "========== yeniden konumlama\n" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "%5d %s'i dýþlýyor\n" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "multilib dosya yolu dýþlanýyor %s%s\n" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "%s %s dýþlanýyor\n" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "%s %s'e konumlanýyor\n" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "%s dizini %s de yeniden konumlanýyor\n" @@ -2562,7 +2571,7 @@ msgstr "%s kuruluyor\n" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "okuma baþarýsýz: %s (%d)\n" @@ -2805,117 +2814,117 @@ msgstr "Eski PGP imzas msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Eski imza !!! Bunu nasýl aldýn!?\n" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, fuzzy, c-format msgid "Could not exec %s: %s\n" msgstr "%s icra edilemedi: %s\n" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "pgp hata verdi\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "pgp imzasýnýn yazýlmasý baþarýsýz\n" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP imza uzunluðu: %d\n" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "imza okunamadý\n" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "GPG imzasýnýn %d baytý alýndý\n" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "gpg hata verdi\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG imza uzunluðu: %d\n" -#: lib/signature.c:497 +#: lib/signature.c:499 #, 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:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "Makro dosyasýnda %%_signature spec geçersiz\n" -#: lib/signature.c:797 +#: lib/signature.c:799 #, 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:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n" -#: lib/signature.c:857 +#: lib/signature.c:859 #, fuzzy msgid "Header+Payload size: " msgstr "Baþlýk çok uzun" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 #, fuzzy msgid "Header SHA1 digest: " msgstr "Baþlýk SHA1 özümlemesi doðrulanmaz" -#: lib/signature.c:1138 +#: lib/signature.c:1140 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "tüm MD5 imzalarýný atlar" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 #, fuzzy msgid "V3 DSA signature: " msgstr "Ýmza yok\n" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "Ýmza: boyut(%d)+iz(%d)\n" @@ -2926,17 +2935,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "missingok flamasýndan dolayý %s atlandý\n" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "%s dizini dýþlanýyor\n" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "eksik %s" -#: lib/verify.c:397 +#: lib/verify.c:393 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: " @@ -2999,99 +3008,99 @@ msgstr "payla msgid "locked db index %s/%s\n" msgstr "kilitli db endeks %s/%s\n" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "tanýnmayan db seçeneði: \"%s\" yoksayýldý\n" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "%s geçersiz sayýsal deðer içeriyor, atlandý\n" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "%s ya çok büyük ya da çok küçük 'long' deðer içeriyor, atlandý\n" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "%s ya çok büyük ya da çok küçük 'integer' deðer içeriyor, atlandý\n" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "dataLength() RPM_STRING_TYPE sayýsý 1 olmalý.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "%% den sonraki { yok" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "%%{ den sonraki } yok" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "etiket biçemi boþ" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "etiket ismi boþ" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "bilinmeyen etiket" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "dizinin sonunda ] gerekli" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "beklenmeyen ]" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "beklenmeyen }" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "ifade içerisinde ? gerekli" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "ifade içerisinde ? dan sonra { gerekli" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "ifade içinde } gerekli" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "? alt ifadesinden sonra : gerekli" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "ifade içersinde : den sonra { gerekli" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "ifadenin sonunda | gerekli" @@ -3112,257 +3121,257 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "(eski) rpm[23] paketleme ile uyumlu baþlýklarý üretir" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: tanýmlanmamýþ etiket adý: \"%s\" yoksayýldý\n" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "%s indeksi db%d - %s (%d) kullanarak açýlamadý\n" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "%s indeksi açýlamadý\n" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "belirtilmiþ bir dbpath deðeri yok\n" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "%s: 0x%x de baþlýk okunamadý\n" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "\"%s\" %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "%d girdi %s indeksinden siliniyor.\n" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "yeni paket örneðini tutma hatasý(%d)\n" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "\"%s\" %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "%d girdi %s indeksine ekleniyor.\n" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "belirtilmiþ bir dbpath yok" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "geçici veritabaný %s zaten mevcut\n" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "%s dizini oluþturuluyor\n" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "%s dizini oluþturuluyor: %s\n" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "eski veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "yeni veritabaný dbapi %d ile açýlýyor\n" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "kayýt özgün olarak %u e eklenemedi\n" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n" "yerinde býrakýldý\n" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "%s dizini siliniyor\n" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s dizininin silinmesi baþarýsýz: %s\n" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== %d etkin %d boþ\n" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(boþ)" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(boþ)\n" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "%%%s makrosunun gövdesi sonlandýrýlmamýþ\n" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "%%%s makrosunun ismi kuraldýþý (%%define)\n" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "%%%s makrosunu seçenekleri sonlandýrýlmamýþ\n" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "%%%s makrosu boþ\n" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "%%%s makrosu geniþletmede baþarýsýz\n" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "%%%s makrosunun ismi kuraldýþý (%%define)\n" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "%%%s (%s) makrosu %d seviyenin altýnda kullanýlmadý\n" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "%c seçeneði %s(%s) de anlaþýlamadý\n" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Yineleme derinliði(%d) mümkün miktardan(%d) büyük\n" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "%c sonlandýrýlmamýþ: %s\n" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Bir ayrýþtýrýlamayan makro tarafýndan bir %% izlendi\n" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "%%%.*s makrosu bulunamadý, atlanýyor\n" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "Hedef tampon bellek taþtý\n" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "%s dosyasý: %s\n" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "%s dosyasý %u bayttan küçük\n" @@ -3419,27 +3428,27 @@ msgstr "Kesme i msgid "Unknown or unexpected error" msgstr "Bilinmeyen ya da beklenmeyen hata" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "%s sunucusuna %s olarak giriliyor, parola %s\n" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "(hata yok)" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "ölümcül hata: " #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "hata: " #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "uyarý: " @@ -3473,12 +3482,12 @@ msgstr "%s@%s i msgid "error: %sport must be a number\n" msgstr "hata: %sport bir sayý olmalý\n" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "url portu bir sayý olmalý\n" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "%s oluþturulamadý: %s\n" diff --git a/po/uk.po b/po/uk.po index 36f6580..afc7fa0 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/wa.po b/po/wa.po index 36f6580..afc7fa0 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/zh.po b/po/zh.po index 36f6580..afc7fa0 100644 --- a/po/zh.po +++ b/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index 36f6580..afc7fa0 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-07-01 13:41-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -23,44 +23,44 @@ msgstr "" msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:152 build.c:164 +#: build.c:154 build.c:166 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:171 +#: build.c:173 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:199 +#: build.c:201 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:239 +#: build.c:241 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:244 +#: build.c:246 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:253 +#: build.c:255 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:309 +#: build.c:311 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:324 +#: build.c:326 #, c-format msgid "Building for target %s\n" msgstr "" @@ -78,47 +78,47 @@ msgstr "" msgid "cannot re-open payload: %s\n" msgstr "" -#: rpmqv.c:114 lib/poptALL.c:135 +#: rpmqv.c:114 lib/poptALL.c:142 msgid "print the version of rpm being used" msgstr "" -#: rpmqv.c:117 lib/poptALL.c:131 +#: rpmqv.c:117 lib/poptALL.c:138 msgid "provide less detailed output" msgstr "" -#: rpmqv.c:119 lib/poptALL.c:133 +#: rpmqv.c:119 lib/poptALL.c:140 msgid "provide more detailed output" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:138 +#: rpmqv.c:121 lib/poptALL.c:145 msgid "define MACRO with value EXPR" msgstr "" -#: rpmqv.c:121 lib/poptALL.c:139 +#: rpmqv.c:121 lib/poptALL.c:146 msgid "'MACRO EXPR'" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:141 +#: rpmqv.c:123 lib/poptALL.c:148 msgid "print macro expansion of EXPR" msgstr "" -#: rpmqv.c:123 lib/poptALL.c:142 +#: rpmqv.c:123 lib/poptALL.c:149 msgid "'EXPR'" msgstr "" -#: rpmqv.c:125 lib/poptALL.c:144 +#: rpmqv.c:125 lib/poptALL.c:151 msgid "send stdout to " msgstr "" -#: rpmqv.c:125 lib/poptALL.c:145 +#: rpmqv.c:125 lib/poptALL.c:152 msgid "" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:147 +#: rpmqv.c:127 lib/poptALL.c:154 msgid "use as the top level directory" msgstr "" -#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221 +#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:220 msgid "" msgstr "" @@ -134,23 +134,23 @@ msgstr "" msgid "read instead of default rpmrc file(s)" msgstr "" -#: rpmqv.c:141 lib/poptALL.c:162 +#: rpmqv.c:141 lib/poptALL.c:169 msgid "display final rpmrc and macro configuration" msgstr "" -#: rpmqv.c:146 lib/poptALL.c:167 +#: rpmqv.c:146 lib/poptALL.c:174 msgid "disable use of libio(3) API" msgstr "" -#: rpmqv.c:149 lib/poptALL.c:171 +#: rpmqv.c:149 lib/poptALL.c:178 msgid "debug protocol data stream" msgstr "" -#: rpmqv.c:151 lib/poptALL.c:173 +#: rpmqv.c:151 lib/poptALL.c:180 msgid "debug rpmio I/O" msgstr "" -#: rpmqv.c:153 lib/poptALL.c:175 +#: rpmqv.c:153 lib/poptALL.c:182 msgid "debug URL cache handling" msgstr "" @@ -183,12 +183,12 @@ msgid "Common options for all rpm modes:" msgstr "" #. @-modfilesys -globs @ -#: rpmqv.c:222 lib/poptI.c:28 +#: rpmqv.c:222 lib/poptI.c:27 #, c-format msgid "%s: %s\n" msgstr "" -#: rpmqv.c:230 lib/poptALL.c:47 +#: rpmqv.c:230 lib/poptALL.c:46 #, c-format msgid "RPM version %s\n" msgstr "" @@ -206,248 +206,249 @@ msgstr "" msgid "Usage: %s {--help}\n" msgstr "" -#: rpmqv.c:608 +#: rpmqv.c:610 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:609 +#: rpmqv.c:611 msgid "Use \"--macros \" instead.\n" msgstr "" -#: rpmqv.c:615 +#: rpmqv.c:617 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706 +#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708 msgid "only one major mode may be specified" msgstr "" -#: rpmqv.c:685 +#: rpmqv.c:687 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:689 +#: rpmqv.c:691 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:692 +#: rpmqv.c:694 msgid "unexpected query format" msgstr "" -#: rpmqv.c:695 +#: rpmqv.c:697 msgid "unexpected query source" msgstr "" -#: rpmqv.c:736 +#: rpmqv.c:738 msgid "--dbpath given for operation that does not use a database" msgstr "" -#: rpmqv.c:742 +#: rpmqv.c:744 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:744 +#: rpmqv.c:746 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:747 +#: rpmqv.c:749 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:750 +#: rpmqv.c:752 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:753 +#: rpmqv.c:755 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:756 +#: rpmqv.c:758 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:759 +#: rpmqv.c:761 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:763 +#: rpmqv.c:765 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:768 +#: rpmqv.c:770 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:772 +#: rpmqv.c:774 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:776 +#: rpmqv.c:778 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:780 +#: rpmqv.c:782 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:784 +#: rpmqv.c:786 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:788 +#: rpmqv.c:790 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:792 +#: rpmqv.c:794 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:797 +#: rpmqv.c:799 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:801 +#: rpmqv.c:803 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:805 +#: rpmqv.c:807 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:810 +#: rpmqv.c:812 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:815 +#: rpmqv.c:817 msgid "" "script disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:820 +#: rpmqv.c:822 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:824 +#: rpmqv.c:826 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:829 +#: rpmqv.c:831 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:834 +#: rpmqv.c:836 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:846 +#: rpmqv.c:848 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:870 +#: rpmqv.c:872 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:875 +#: rpmqv.c:877 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:894 +#: rpmqv.c:896 msgid "pgp not found: " msgstr "" -#: rpmqv.c:899 +#: rpmqv.c:901 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:901 +#: rpmqv.c:903 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:905 +#: rpmqv.c:907 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:910 +#: rpmqv.c:912 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:917 +#: rpmqv.c:919 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:934 +#: rpmqv.c:936 msgid "exec failed\n" msgstr "" -#: rpmqv.c:967 +#: rpmqv.c:969 msgid "no packages files given for rebuild" msgstr "" -#: rpmqv.c:1035 +#: rpmqv.c:1037 msgid "no spec files given for build" msgstr "" -#: rpmqv.c:1037 +#: rpmqv.c:1039 msgid "no tar files given for build" msgstr "" -#: rpmqv.c:1059 +#: rpmqv.c:1061 msgid "no packages given for erase" msgstr "" -#: rpmqv.c:1100 +#: rpmqv.c:1102 msgid "no packages given for install" msgstr "" -#: rpmqv.c:1116 +#: rpmqv.c:1118 msgid "no arguments given for query" msgstr "" -#: rpmqv.c:1129 +#: rpmqv.c:1131 msgid "no arguments given for verify" msgstr "" -#: rpmqv.c:1137 +#: rpmqv.c:1139 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1153 +#: rpmqv.c:1155 msgid "no arguments given" msgstr "" -#: build/build.c:125 build/pack.c:495 +#: build/build.c:125 build/pack.c:497 msgid "Unable to open temp file.\n" msgstr "" -#: build/build.c:211 +#: build/build.c:213 #, c-format msgid "Executing(%s): %s\n" msgstr "" -#: build/build.c:219 +#. @=boundsread@ +#: build/build.c:223 #, c-format msgid "Exec of %s failed (%s): %s\n" msgstr "" -#: build/build.c:228 +#: build/build.c:232 #, c-format msgid "Bad exit status from %s (%s)\n" msgstr "" -#: build/build.c:328 +#: build/build.c:334 msgid "" "\n" "\n" @@ -499,184 +500,184 @@ msgstr "" msgid "&& and || not suported for strings\n" msgstr "" -#: build/expression.c:702 build/expression.c:749 +#: build/expression.c:702 build/expression.c:751 msgid "syntax error in expression\n" msgstr "" -#: build/files.c:281 +#: build/files.c:282 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:344 build/files.c:544 build/files.c:737 +#: build/files.c:346 build/files.c:546 build/files.c:739 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:355 build/files.c:674 build/files.c:748 +#: build/files.c:357 build/files.c:676 build/files.c:750 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:393 build/files.c:699 +#: build/files.c:395 build/files.c:701 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:503 +#: build/files.c:505 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:560 +#: build/files.c:562 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:598 +#: build/files.c:600 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:608 +#: build/files.c:610 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:620 +#: build/files.c:622 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:775 +#: build/files.c:777 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:786 +#: build/files.c:788 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:949 +#: build/files.c:951 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:955 +#: build/files.c:957 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:983 +#: build/files.c:985 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:998 +#: build/files.c:1000 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:1011 +#: build/files.c:1013 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1164 +#: build/files.c:1166 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1308 +#: build/files.c:1310 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1554 +#: build/files.c:1556 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1578 +#: build/files.c:1580 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1621 build/files.c:2246 build/parsePrep.c:50 +#: build/files.c:1623 build/files.c:2248 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1634 +#: build/files.c:1636 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1745 +#: build/files.c:1747 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1768 +#: build/files.c:1770 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1783 +#: build/files.c:1785 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1847 +#: build/files.c:1849 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1858 build/pack.c:155 +#: build/files.c:1860 build/pack.c:157 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2234 +#: build/files.c:2236 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2309 +#: build/files.c:2311 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2314 +#: build/files.c:2316 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2398 +#: build/files.c:2400 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2402 +#: build/files.c:2404 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2560 +#: build/files.c:2562 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2589 build/files.c:2603 +#: build/files.c:2591 build/files.c:2605 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2726 +#: build/files.c:2728 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -705,157 +706,157 @@ msgstr "" msgid "getGidS: too many gid's\n" msgstr "" -#: build/names.c:211 +#: build/names.c:213 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:88 +#: build/pack.c:90 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:91 +#: build/pack.c:93 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:113 +#: build/pack.c:115 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:120 +#: build/pack.c:122 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:223 +#: build/pack.c:225 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:230 +#: build/pack.c:232 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:237 +#: build/pack.c:239 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:244 +#: build/pack.c:246 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:252 +#: build/pack.c:254 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:267 +#: build/pack.c:269 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:298 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:306 +#: build/pack.c:308 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:315 build/pack.c:541 +#: build/pack.c:317 build/pack.c:543 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:343 +#: build/pack.c:345 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:352 +#: build/pack.c:354 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:483 +#: build/pack.c:485 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:502 +#: build/pack.c:504 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:512 +#: build/pack.c:514 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:548 +#: build/pack.c:550 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:568 +#: build/pack.c:570 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:586 +#: build/pack.c:588 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:594 +#: build/pack.c:596 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:630 lib/psm.c:1468 +#: build/pack.c:632 lib/psm.c:1453 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:645 +#: build/pack.c:647 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:656 +#: build/pack.c:658 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:670 +#: build/pack.c:672 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:680 +#: build/pack.c:682 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:686 +#: build/pack.c:688 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:711 lib/psm.c:1758 +#: build/pack.c:713 lib/psm.c:1743 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:780 +#: build/pack.c:782 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:797 +#: build/pack.c:799 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -930,123 +931,123 @@ msgstr "" msgid "line %d: Second %%files list\n" msgstr "" -#: build/parsePreamble.c:238 +#: build/parsePreamble.c:242 #, c-format msgid "Architecture is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:243 +#: build/parsePreamble.c:247 #, c-format msgid "Architecture is not included: %s\n" msgstr "" -#: build/parsePreamble.c:248 +#: build/parsePreamble.c:252 #, c-format msgid "OS is excluded: %s\n" msgstr "" -#: build/parsePreamble.c:253 +#: build/parsePreamble.c:257 #, c-format msgid "OS is not included: %s\n" msgstr "" -#: build/parsePreamble.c:275 +#: build/parsePreamble.c:280 #, c-format msgid "%s field must be present in package: %s\n" msgstr "" -#: build/parsePreamble.c:303 +#: build/parsePreamble.c:309 #, c-format msgid "Duplicate %s entries in package: %s\n" msgstr "" -#: build/parsePreamble.c:364 +#: build/parsePreamble.c:372 #, c-format msgid "Unable to open icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:382 +#: build/parsePreamble.c:390 #, c-format msgid "Unable to read icon %s: %s\n" msgstr "" -#: build/parsePreamble.c:395 +#: build/parsePreamble.c:403 #, c-format msgid "Unknown icon type: %s\n" msgstr "" -#: build/parsePreamble.c:440 +#: build/parsePreamble.c:448 #, c-format msgid "line %d: Tag takes single token only: %s\n" msgstr "" -#: build/parsePreamble.c:481 +#: build/parsePreamble.c:489 #, c-format msgid "line %d: Malformed tag: %s\n" msgstr "" #. Empty field -#: build/parsePreamble.c:489 +#: build/parsePreamble.c:497 #, c-format msgid "line %d: Empty tag: %s\n" msgstr "" -#: build/parsePreamble.c:512 build/parsePreamble.c:519 +#: build/parsePreamble.c:520 build/parsePreamble.c:527 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:580 build/parseSpec.c:417 +#: build/parsePreamble.c:588 build/parseSpec.c:423 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:593 +#: build/parsePreamble.c:601 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" msgstr "" -#: build/parsePreamble.c:605 +#: build/parsePreamble.c:613 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" msgstr "" -#: build/parsePreamble.c:617 +#: build/parsePreamble.c:625 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" msgstr "" -#: build/parsePreamble.c:657 build/parsePreamble.c:668 +#: build/parsePreamble.c:665 build/parsePreamble.c:676 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" msgstr "" -#: build/parsePreamble.c:694 +#: build/parsePreamble.c:702 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" msgstr "" -#: build/parsePreamble.c:703 +#: build/parsePreamble.c:711 #, c-format msgid "Internal error: Bogus tag %d\n" msgstr "" -#: build/parsePreamble.c:863 +#: build/parsePreamble.c:871 #, c-format msgid "Bad package specification: %s\n" msgstr "" -#: build/parsePreamble.c:869 +#: build/parsePreamble.c:877 #, c-format msgid "Package already exists: %s\n" msgstr "" -#: build/parsePreamble.c:896 +#: build/parsePreamble.c:904 #, c-format msgid "line %d: Unknown tag: %s\n" msgstr "" -#: build/parsePreamble.c:918 +#: build/parsePreamble.c:926 msgid "Spec file can't use BuildRoot\n" msgstr "" @@ -1085,57 +1086,57 @@ msgstr "" msgid "line %d: Bad %%setup option %s: %s\n" msgstr "" -#: build/parsePrep.c:481 +#: build/parsePrep.c:483 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" msgstr "" -#: build/parsePrep.c:490 +#: build/parsePrep.c:492 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" msgstr "" -#: build/parsePrep.c:502 +#: build/parsePrep.c:504 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:509 +#: build/parsePrep.c:511 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" msgstr "" -#: build/parsePrep.c:516 +#: build/parsePrep.c:518 msgid "Too many patches!\n" msgstr "" -#: build/parsePrep.c:520 +#: build/parsePrep.c:522 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" msgstr "" -#: build/parsePrep.c:556 +#: build/parsePrep.c:558 #, c-format msgid "line %d: second %%prep\n" msgstr "" -#: build/parseReqs.c:101 +#: build/parseReqs.c:102 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -#: build/parseReqs.c:112 +#: build/parseReqs.c:113 #, c-format msgid "line %d: File name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:144 +#: build/parseReqs.c:145 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" msgstr "" -#: build/parseReqs.c:175 +#: build/parseReqs.c:176 #, c-format msgid "line %d: Version required: %s\n" msgstr "" @@ -1160,47 +1161,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:151 +#: build/parseSpec.c:157 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:203 +#: build/parseSpec.c:209 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:219 +#: build/parseSpec.c:225 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:291 +#: build/parseSpec.c:297 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:300 +#: build/parseSpec.c:306 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:312 +#: build/parseSpec.c:318 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:326 build/parseSpec.c:335 +#: build/parseSpec.c:332 build/parseSpec.c:341 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:536 +#: build/parseSpec.c:542 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:594 +#: build/parseSpec.c:600 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -1353,59 +1354,59 @@ msgstr "" msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:237 +#: build/spec.c:238 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:243 +#: build/spec.c:244 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:305 +#: build/spec.c:307 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:203 +#: lib/cpio.c:207 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:206 +#: lib/cpio.c:210 msgid "Bad magic" msgstr "" -#: lib/cpio.c:207 +#: lib/cpio.c:211 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid "Header size too big" msgstr "" -#: lib/cpio.c:229 +#: lib/cpio.c:233 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:230 +#: lib/cpio.c:234 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:231 +#: lib/cpio.c:235 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:232 +#: lib/cpio.c:236 msgid "Internal error" msgstr "" -#: lib/cpio.c:233 +#: lib/cpio.c:237 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:244 +#: lib/cpio.c:248 msgid " failed - " msgstr "" @@ -1414,826 +1415,833 @@ msgstr "" msgid "package %s was already added, replacing with %s\n" msgstr "" -#: lib/depends.c:406 +#: lib/depends.c:393 msgid "(cached)" msgstr "" -#: lib/depends.c:431 +#: lib/depends.c:419 msgid "(rpmrc provides)" msgstr "" -#: lib/depends.c:447 +#: lib/depends.c:436 msgid "(rpmlib provides)" msgstr "" -#: lib/depends.c:468 +#: lib/depends.c:458 msgid "(db files)" msgstr "" -#: lib/depends.c:480 +#: lib/depends.c:471 msgid "(db provides)" msgstr "" -#: lib/depends.c:493 +#: lib/depends.c:484 msgid "(db package)" msgstr "" -#: lib/depends.c:834 +#: lib/depends.c:828 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:955 +#: lib/depends.c:950 #, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1231 +#: lib/depends.c:1228 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1337 +#: lib/depends.c:1334 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1430 +#: lib/depends.c:1427 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1500 +#: lib/depends.c:1497 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1535 +#: lib/depends.c:1532 msgid "========== continuing tsort ...\n" msgstr "" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1540 +#: lib/depends.c:1537 #, c-format msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" -#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:91 lib/formats.c:301 -#: rpmdb/header.c:3052 rpmdb/header.c:3075 rpmdb/header.c:3099 +#: lib/formats.c:31 lib/formats.c:57 lib/formats.c:92 lib/formats.c:305 +#: rpmdb/header.c:3130 rpmdb/header.c:3153 rpmdb/header.c:3177 msgid "(not a number)" msgstr "" -#: lib/formats.c:152 +#: lib/formats.c:156 msgid "(not base64)" msgstr "" -#: lib/formats.c:162 +#: lib/formats.c:166 msgid "(invalid type)" msgstr "" -#: lib/formats.c:228 lib/formats.c:274 +#: lib/formats.c:231 lib/formats.c:278 msgid "(not a blob)" msgstr "" -#: lib/fs.c:78 +#: lib/fs.c:77 #, c-format msgid "mntctl() failed to return size: %s\n" msgstr "" -#: lib/fs.c:93 +#: lib/fs.c:92 #, c-format msgid "mntctl() failed to return mount points: %s\n" msgstr "" -#: lib/fs.c:113 lib/fs.c:196 lib/fs.c:304 +#: lib/fs.c:112 lib/fs.c:197 lib/fs.c:307 #, c-format msgid "failed to stat %s: %s\n" msgstr "" -#: lib/fs.c:156 rpmio/url.c:518 +#: lib/fs.c:155 rpmio/url.c:520 #, c-format msgid "failed to open %s: %s\n" msgstr "" -#: lib/fs.c:327 +#: lib/fs.c:330 #, c-format msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:330 +#: lib/fsm.c:334 msgid "========== Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:332 +#: lib/fsm.c:336 #, c-format msgid "%10d %s\n" msgstr "" -#: lib/fsm.c:1231 +#: lib/fsm.c:1244 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1525 +#: lib/fsm.c:1539 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1652 lib/fsm.c:1784 +#: lib/fsm.c:1666 lib/fsm.c:1798 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1810 +#: lib/fsm.c:1824 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1816 +#: lib/fsm.c:1830 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1826 +#: lib/fsm.c:1840 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1846 +#: lib/fsm.c:1860 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:209 lib/misc.c:214 lib/misc.c:220 +#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219 #, c-format msgid "error creating temporary file %s\n" msgstr "" -#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 +#: lib/package.c:216 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/package.c:224 +#: lib/package.c:231 msgid "packaging version 1 is not supported by this version of RPM\n" msgstr "" -#: lib/package.c:232 +#: lib/package.c:239 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" msgstr "" -#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 +#: lib/package.c:248 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 +#: lib/package.c:252 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/package.c:291 lib/rpmchecksig.c:524 +#: lib/package.c:298 lib/rpmchecksig.c:524 #, c-format msgid "%s: headerRead failed\n" msgstr "" -#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697 +#: lib/package.c:333 lib/package.c:358 lib/package.c:388 lib/rpmchecksig.c:697 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 +#: lib/package.c:400 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553 #, c-format msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158 +#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165 msgid "read instead of default file(s)" msgstr "" -#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159 +#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166 msgid "" msgstr "" -#: lib/poptALL.c:236 +#. @-nullpass@ +#: lib/poptALL.c:253 #, c-format msgid "%s: option table misconfigured (%d)\n" msgstr "" -#: lib/poptI.c:51 +#: lib/poptI.c:50 msgid "exclude paths must begin with a /" msgstr "" -#: lib/poptI.c:65 +#: lib/poptI.c:64 msgid "relocations must begin with a /" msgstr "" -#: lib/poptI.c:68 +#: lib/poptI.c:67 msgid "relocations must contain a =" msgstr "" -#: lib/poptI.c:71 +#: lib/poptI.c:70 msgid "relocations must have a / following the =" msgstr "" -#: lib/poptI.c:85 +#: lib/poptI.c:84 msgid "rollback takes a time/date stamp argument" msgstr "" -#: lib/poptI.c:92 +#: lib/poptI.c:91 msgid "malformed rollback time/date stamp argument" msgstr "" -#: lib/poptI.c:112 +#: lib/poptI.c:111 msgid "install all files, even configurations which might otherwise be skipped" msgstr "" -#: lib/poptI.c:116 +#: lib/poptI.c:115 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -#: lib/poptI.c:122 lib/poptI.c:177 +#: lib/poptI.c:121 lib/poptI.c:176 msgid "do not execute package scriptlet(s)" msgstr "" -#: lib/poptI.c:126 +#: lib/poptI.c:125 msgid "relocate files in non-relocateable package" msgstr "" -#: lib/poptI.c:129 +#: lib/poptI.c:128 msgid "save erased package files by renaming into sub-directory" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "erase (uninstall) package" msgstr "" -#: lib/poptI.c:132 +#: lib/poptI.c:131 msgid "+" msgstr "" -#: lib/poptI.c:135 +#: lib/poptI.c:134 msgid "do not install documentation" msgstr "" -#: lib/poptI.c:137 +#: lib/poptI.c:136 msgid "skip files with leading component " msgstr "" -#: lib/poptI.c:138 +#: lib/poptI.c:137 msgid "" msgstr "" -#: lib/poptI.c:141 +#: lib/poptI.c:140 msgid "short hand for --replacepkgs --replacefiles" msgstr "" -#: lib/poptI.c:144 +#: lib/poptI.c:143 msgid "upgrade package(s) if already installed" msgstr "" -#: lib/poptI.c:145 lib/poptI.c:161 lib/poptI.c:242 +#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:241 msgid "+" msgstr "" -#: lib/poptI.c:147 +#: lib/poptI.c:146 msgid "print hash marks as package installs (good with -v)" msgstr "" -#: lib/poptI.c:150 +#: lib/poptI.c:149 msgid "don't verify package architecture" msgstr "" -#: lib/poptI.c:153 +#: lib/poptI.c:152 msgid "don't verify package operating system" msgstr "" -#: lib/poptI.c:156 +#: lib/poptI.c:155 msgid "don't check disk space before installing" msgstr "" -#: lib/poptI.c:158 +#: lib/poptI.c:157 msgid "install documentation" msgstr "" -#: lib/poptI.c:161 +#: lib/poptI.c:160 msgid "install package(s)" msgstr "" -#: lib/poptI.c:163 +#: lib/poptI.c:162 msgid "update the database, but do not modify the filesystem" msgstr "" -#: lib/poptI.c:165 +#: lib/poptI.c:164 msgid "do not verify package dependencies" msgstr "" -#: lib/poptI.c:168 +#: lib/poptI.c:167 msgid "do not reorder package installation to satisfy dependencies" msgstr "" -#: lib/poptI.c:173 +#: lib/poptI.c:172 msgid "do not suggest missing dependency resolution(s)" msgstr "" -#: lib/poptI.c:180 +#: lib/poptI.c:179 #, c-format msgid "do not execute %%pre scriptlet (if any)" msgstr "" -#: lib/poptI.c:183 +#: lib/poptI.c:182 #, c-format msgid "do not execute %%post scriptlet (if any)" msgstr "" -#: lib/poptI.c:186 +#: lib/poptI.c:185 #, c-format msgid "do not execute %%preun scriptlet (if any)" msgstr "" -#: lib/poptI.c:189 +#: lib/poptI.c:188 #, c-format msgid "do not execute %%postun scriptlet (if any)" msgstr "" -#: lib/poptI.c:192 lib/poptQV.c:273 lib/poptQV.c:310 +#: lib/poptI.c:191 lib/poptQV.c:274 lib/poptQV.c:311 msgid "don't verify package digest(s)" msgstr "" -#: lib/poptI.c:194 lib/poptQV.c:276 lib/poptQV.c:312 +#: lib/poptI.c:193 lib/poptQV.c:277 lib/poptQV.c:313 msgid "don't verify package signature(s)" msgstr "" -#: lib/poptI.c:198 +#: lib/poptI.c:197 msgid "do not execute any scriptlet(s) triggered by this package" msgstr "" -#: lib/poptI.c:201 +#: lib/poptI.c:200 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" msgstr "" -#: lib/poptI.c:204 +#: lib/poptI.c:203 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" msgstr "" -#: lib/poptI.c:207 +#: lib/poptI.c:206 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" msgstr "" -#: lib/poptI.c:210 +#: lib/poptI.c:209 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" msgstr "" -#: lib/poptI.c:214 +#: lib/poptI.c:213 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" msgstr "" -#: lib/poptI.c:218 +#: lib/poptI.c:217 msgid "print percentages as package installs" msgstr "" -#: lib/poptI.c:220 +#: lib/poptI.c:219 msgid "relocate the package to , if relocatable" msgstr "" -#: lib/poptI.c:223 +#: lib/poptI.c:222 msgid "relocate files from path to " msgstr "" -#: lib/poptI.c:224 +#: lib/poptI.c:223 msgid "=" msgstr "" -#: lib/poptI.c:227 +#: lib/poptI.c:226 msgid "save erased package files by repackaging" msgstr "" -#: lib/poptI.c:230 +#: lib/poptI.c:229 msgid "install even if the package replaces installed files" msgstr "" -#: lib/poptI.c:233 +#: lib/poptI.c:232 msgid "reinstall if the package is already present" msgstr "" -#: lib/poptI.c:235 +#: lib/poptI.c:234 msgid "deinstall new, reinstall old, package(s), back to " msgstr "" -#: lib/poptI.c:236 +#: lib/poptI.c:235 msgid "" msgstr "" -#: lib/poptI.c:238 +#: lib/poptI.c:237 msgid "don't install, but tell if it would work or not" msgstr "" -#: lib/poptI.c:241 +#: lib/poptI.c:240 msgid "upgrade package(s)" msgstr "" -#: lib/poptQV.c:96 +#: lib/poptQV.c:95 msgid "query/verify all packages" msgstr "" -#: lib/poptQV.c:98 +#: lib/poptQV.c:97 msgid "rpm checksig mode" msgstr "" -#: lib/poptQV.c:100 +#: lib/poptQV.c:99 msgid "query/verify package(s) owning file" msgstr "" -#: lib/poptQV.c:102 +#: lib/poptQV.c:101 msgid "query/verify package(s) with file identifier" msgstr "" -#: lib/poptQV.c:104 +#: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "" -#: lib/poptQV.c:106 +#: lib/poptQV.c:105 msgid "query/verify package(s) with header identifier" msgstr "" -#: lib/poptQV.c:108 +#: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "" -#: lib/poptQV.c:110 +#: lib/poptQV.c:109 msgid "query/verify package(s) with package identifier" msgstr "" -#: lib/poptQV.c:112 +#: lib/poptQV.c:111 msgid "rpm query mode" msgstr "" -#: lib/poptQV.c:114 +#: lib/poptQV.c:113 msgid "query/verify a header instance" msgstr "" -#: lib/poptQV.c:116 +#: lib/poptQV.c:115 msgid "display known query tags" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "query a spec file" msgstr "" -#: lib/poptQV.c:118 +#: lib/poptQV.c:117 msgid "" msgstr "" -#: lib/poptQV.c:120 +#: lib/poptQV.c:119 msgid "query/verify package(s) from install transaction" msgstr "" -#: lib/poptQV.c:122 +#: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" msgstr "" -#: lib/poptQV.c:124 +#: lib/poptQV.c:123 msgid "rpm verify mode" msgstr "" -#: lib/poptQV.c:126 +#: lib/poptQV.c:125 msgid "query/verify the package(s) which require a dependency" msgstr "" -#: lib/poptQV.c:128 +#: lib/poptQV.c:127 msgid "query/verify the package(s) which provide a dependency" msgstr "" -#: lib/poptQV.c:188 +#: lib/poptQV.c:189 msgid "list all configuration files" msgstr "" -#: lib/poptQV.c:190 +#: lib/poptQV.c:191 msgid "list all documentation files" msgstr "" -#: lib/poptQV.c:192 +#: lib/poptQV.c:193 msgid "dump basic file information" msgstr "" -#: lib/poptQV.c:194 +#: lib/poptQV.c:195 msgid "list files in package" msgstr "" -#: lib/poptQV.c:199 +#: lib/poptQV.c:200 #, c-format msgid "skip %%ghost files" msgstr "" -#: lib/poptQV.c:203 +#: lib/poptQV.c:204 #, c-format msgid "skip %%license files" msgstr "" -#: lib/poptQV.c:206 +#: lib/poptQV.c:207 #, c-format msgid "skip %%readme files" msgstr "" -#: lib/poptQV.c:212 +#: lib/poptQV.c:213 msgid "use the following query format" msgstr "" -#: lib/poptQV.c:214 +#: lib/poptQV.c:215 msgid "substitute i18n sections into spec file" msgstr "" -#: lib/poptQV.c:216 +#: lib/poptQV.c:217 msgid "display the states of the listed files" msgstr "" -#: lib/poptQV.c:218 +#: lib/poptQV.c:219 msgid "display a verbose file listing" msgstr "" -#: lib/poptQV.c:238 +#: lib/poptQV.c:239 msgid "don't verify MD5 digest of files" msgstr "" -#: lib/poptQV.c:241 +#: lib/poptQV.c:242 msgid "don't verify size of files" msgstr "" -#: lib/poptQV.c:244 +#: lib/poptQV.c:245 msgid "don't verify symlink path of files" msgstr "" -#: lib/poptQV.c:247 +#: lib/poptQV.c:248 msgid "don't verify owner of files" msgstr "" -#: lib/poptQV.c:250 +#: lib/poptQV.c:251 msgid "don't verify group of files" msgstr "" -#: lib/poptQV.c:253 +#: lib/poptQV.c:254 msgid "don't verify modification time of files" msgstr "" -#: lib/poptQV.c:256 lib/poptQV.c:259 +#: lib/poptQV.c:257 lib/poptQV.c:260 msgid "don't verify mode of files" msgstr "" -#: lib/poptQV.c:262 +#: lib/poptQV.c:263 msgid "don't verify files in package" msgstr "" -#: lib/poptQV.c:264 tools/rpmgraph.c:274 +#: lib/poptQV.c:265 tools/rpmgraph.c:274 msgid "don't verify package dependencies" msgstr "" -#: lib/poptQV.c:266 lib/poptQV.c:270 +#: lib/poptQV.c:267 lib/poptQV.c:271 msgid "don't execute verify script(s)" msgstr "" -#: lib/poptQV.c:281 +#: lib/poptQV.c:282 msgid "don't verify GPG V3 DSA signature(s)" msgstr "" -#: lib/poptQV.c:284 +#: lib/poptQV.c:285 msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" -#: lib/poptQV.c:299 +#: lib/poptQV.c:300 msgid "sign package(s) (identical to --resign)" msgstr "" -#: lib/poptQV.c:301 +#: lib/poptQV.c:302 msgid "verify package signature(s)" msgstr "" -#: lib/poptQV.c:303 +#: lib/poptQV.c:304 msgid "import an armored public key" msgstr "" -#: lib/poptQV.c:305 +#: lib/poptQV.c:306 msgid "sign package(s) (identical to --addsign)" msgstr "" -#: lib/poptQV.c:307 +#: lib/poptQV.c:308 msgid "generate signature" msgstr "" +#. @=boundsread@ #. @-modfilesys@ -#: lib/psm.c:259 rpmdb/header.c:388 rpmdb/header_internal.c:163 +#: lib/psm.c:261 rpmdb/header.c:401 rpmdb/header_internal.c:164 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:460 +#: lib/psm.c:462 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:466 +#: lib/psm.c:468 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:497 +#: lib/psm.c:499 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:616 +#: lib/psm.c:618 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:736 +#: lib/psm.c:738 #, c-format msgid "%s: running %s scriptlet\n" msgstr "" -#: lib/psm.c:906 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:913 +#: lib/psm.c:915 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1253 +#: lib/psm.c:1238 #, c-format msgid "%s: %s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1375 +#: lib/psm.c:1360 #, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -#: lib/psm.c:1519 +#: lib/psm.c:1504 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1528 +#: lib/psm.c:1513 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1570 +#: lib/psm.c:1555 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1571 +#: lib/psm.c:1556 msgid " on file " msgstr "" -#: lib/psm.c:1766 +#: lib/psm.c:1751 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1769 +#: lib/psm.c:1754 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:129 lib/rpmts.c:283 +#: lib/query.c:124 lib/rpmts.c:283 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:228 +#. @-boundswrite@ +#: lib/query.c:183 msgid "(contains no files)" msgstr "" -#: lib/query.c:289 +#: lib/query.c:248 msgid "normal " msgstr "" -#: lib/query.c:292 +#: lib/query.c:251 msgid "replaced " msgstr "" -#: lib/query.c:295 +#: lib/query.c:254 msgid "not installed " msgstr "" -#: lib/query.c:298 +#: lib/query.c:257 msgid "net shared " msgstr "" -#: lib/query.c:301 +#: lib/query.c:260 +msgid "(no state) " +msgstr "" + +#: lib/query.c:263 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:306 -msgid "(no state) " +#: lib/query.c:281 +msgid "package has not file owner/group lists\n" msgstr "" -#: lib/query.c:325 lib/query.c:381 +#: lib/query.c:314 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:476 +#: lib/query.c:406 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493 +#: lib/query.c:565 lib/query.c:599 lib/rpminstall.c:362 lib/rpminstall.c:493 #: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:647 +#: lib/query.c:577 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:653 +#: lib/query.c:583 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:679 lib/rpminstall.c:506 +#: lib/query.c:609 lib/rpminstall.c:506 #, c-format msgid "%s: not a package manifest: %s\n" msgstr "" -#: lib/query.c:723 +#: lib/query.c:653 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:744 +#: lib/query.c:674 msgid "no packages\n" msgstr "" -#: lib/query.c:764 +#: lib/query.c:694 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:774 +#: lib/query.c:704 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:788 lib/query.c:810 lib/query.c:831 lib/query.c:866 +#: lib/query.c:718 lib/query.c:740 lib/query.c:761 lib/query.c:796 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:798 lib/query.c:816 lib/query.c:841 lib/query.c:871 +#: lib/query.c:728 lib/query.c:746 lib/query.c:771 lib/query.c:801 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:882 +#: lib/query.c:812 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:893 +#: lib/query.c:823 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:927 +#: lib/query.c:857 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:931 +#: lib/query.c:861 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:958 +#: lib/query.c:888 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:961 +#: lib/query.c:891 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:966 +#: lib/query.c:896 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:977 lib/rpminstall.c:660 +#: lib/query.c:907 lib/rpminstall.c:660 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -2356,36 +2364,36 @@ msgstr "" msgid "package %s has unsatisfied %s: %s\n" msgstr "" -#: lib/rpmfi.c:561 +#: lib/rpmfi.c:598 msgid "========== relocations\n" msgstr "" -#: lib/rpmfi.c:565 +#: lib/rpmfi.c:602 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/rpmfi.c:568 +#: lib/rpmfi.c:605 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/rpmfi.c:638 +#: lib/rpmfi.c:675 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/rpmfi.c:704 +#: lib/rpmfi.c:741 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/rpmfi.c:714 +#: lib/rpmfi.c:751 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/rpmfi.c:793 +#: lib/rpmfi.c:830 #, c-format msgid "relocating directory %s to %s\n" msgstr "" @@ -2478,7 +2486,7 @@ msgstr "" msgid "rollback %d packages to %s" msgstr "" -#: lib/rpmlead.c:51 +#: lib/rpmlead.c:53 #, c-format msgid "read failed: %s (%d)\n" msgstr "" @@ -2720,113 +2728,113 @@ msgstr "" msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:248 +#: lib/signature.c:250 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" #. @=boundsread@ -#: lib/signature.c:335 lib/signature.c:444 lib/signature.c:721 -#: lib/signature.c:760 +#: lib/signature.c:337 lib/signature.c:446 lib/signature.c:723 +#: lib/signature.c:762 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:351 +#: lib/signature.c:353 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:358 +#: lib/signature.c:360 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:364 +#: lib/signature.c:366 #, c-format msgid "PGP sig size: %d\n" msgstr "" #. @=boundswrite@ -#: lib/signature.c:382 lib/signature.c:492 +#: lib/signature.c:384 lib/signature.c:494 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:387 +#: lib/signature.c:389 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:461 +#: lib/signature.c:463 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:468 +#: lib/signature.c:470 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:474 +#: lib/signature.c:476 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:497 +#: lib/signature.c:499 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:765 lib/signature.c:820 +#: lib/signature.c:767 lib/signature.c:822 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:797 +#: lib/signature.c:799 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:812 +#: lib/signature.c:814 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:857 +#: lib/signature.c:859 msgid "Header+Payload size: " msgstr "" -#: lib/signature.c:895 +#: lib/signature.c:897 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:946 +#: lib/signature.c:948 msgid "Header SHA1 digest: " msgstr "" -#: lib/signature.c:1138 +#: lib/signature.c:1140 msgid "V3 RSA/MD5 signature: " msgstr "" -#: lib/signature.c:1250 +#: lib/signature.c:1252 msgid "Header " msgstr "" -#: lib/signature.c:1251 +#: lib/signature.c:1253 msgid "V3 DSA signature: " msgstr "" -#: lib/signature.c:1327 +#: lib/signature.c:1329 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1354 +#: lib/signature.c:1356 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:1358 +#: lib/signature.c:1360 #, c-format msgid "Signature: UNKNOWN (%d)\n" msgstr "" @@ -2837,17 +2845,17 @@ msgid "%s skipped due to missingok flag\n" msgstr "" #. @innercontinue@ -#: lib/transaction.c:907 +#: lib/transaction.c:910 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/verify.c:297 +#: lib/verify.c:292 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:397 +#: lib/verify.c:393 #, c-format msgid "Unsatisifed dependencies for %s: " msgstr "" @@ -2910,99 +2918,99 @@ msgstr "" msgid "locked db index %s/%s\n" msgstr "" -#: rpmdb/dbconfig.c:396 +#: rpmdb/dbconfig.c:401 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" msgstr "" -#: rpmdb/dbconfig.c:434 +#: rpmdb/dbconfig.c:439 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:443 +#: rpmdb/dbconfig.c:448 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "" -#: rpmdb/dbconfig.c:452 +#: rpmdb/dbconfig.c:457 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "" #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:351 +#: rpmdb/header.c:360 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2248 +#: rpmdb/header.c:2310 msgid "missing { after %" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2278 +#: rpmdb/header.c:2340 msgid "missing } after %{" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2292 +#: rpmdb/header.c:2354 msgid "empty tag format" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2306 +#: rpmdb/header.c:2368 msgid "empty tag name" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2323 +#: rpmdb/header.c:2385 msgid "unknown tag" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2350 +#: rpmdb/header.c:2412 msgid "] expected at end of array" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2368 +#: rpmdb/header.c:2430 msgid "unexpected ]" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2372 +#: rpmdb/header.c:2434 msgid "unexpected }" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2441 +#: rpmdb/header.c:2503 msgid "? expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2450 +#: rpmdb/header.c:2512 msgid "{ expected after ? in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2463 rpmdb/header.c:2508 +#: rpmdb/header.c:2525 rpmdb/header.c:2570 msgid "} expected in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2473 +#: rpmdb/header.c:2535 msgid ": expected following ? subexpression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2493 +#: rpmdb/header.c:2555 msgid "{ expected after : in expression" msgstr "" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2518 +#: rpmdb/header.c:2580 msgid "| expected at end of expression" msgstr "" @@ -3023,255 +3031,255 @@ msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:166 +#: rpmdb/rpmdb.c:169 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:240 +#: rpmdb/rpmdb.c:245 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:262 +#: rpmdb/rpmdb.c:267 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:705 +#: rpmdb/rpmdb.c:721 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049 -#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841 +#: rpmdb/rpmdb.c:1011 rpmdb/rpmdb.c:1140 rpmdb/rpmdb.c:1189 rpmdb/rpmdb.c:2065 +#: rpmdb/rpmdb.c:2170 rpmdb/rpmdb.c:2857 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:1388 +#: rpmdb/rpmdb.c:1404 #, c-format msgid "error(%d) storing record #%d into %s\n" msgstr "" -#: rpmdb/rpmdb.c:1972 +#: rpmdb/rpmdb.c:1988 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2237 +#: rpmdb/rpmdb.c:2253 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2298 +#: rpmdb/rpmdb.c:2314 #, c-format msgid "error(%d) setting header #%d record for %s removal\n" msgstr "" -#: rpmdb/rpmdb.c:2409 +#: rpmdb/rpmdb.c:2425 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2413 +#: rpmdb/rpmdb.c:2429 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2440 +#: rpmdb/rpmdb.c:2456 #, c-format msgid "error(%d) setting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:2461 +#: rpmdb/rpmdb.c:2477 #, c-format msgid "error(%d) storing record \"%s\" into %s\n" msgstr "" -#: rpmdb/rpmdb.c:2471 +#: rpmdb/rpmdb.c:2487 #, c-format msgid "error(%d) removing record \"%s\" from %s\n" msgstr "" -#: rpmdb/rpmdb.c:2613 +#: rpmdb/rpmdb.c:2629 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2817 +#: rpmdb/rpmdb.c:2833 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2821 +#: rpmdb/rpmdb.c:2837 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2857 +#: rpmdb/rpmdb.c:2873 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3196 +#: rpmdb/rpmdb.c:3212 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3231 +#: rpmdb/rpmdb.c:3247 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3274 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3262 +#: rpmdb/rpmdb.c:3278 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3268 +#: rpmdb/rpmdb.c:3284 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3270 +#: rpmdb/rpmdb.c:3286 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3277 +#: rpmdb/rpmdb.c:3293 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3288 +#: rpmdb/rpmdb.c:3304 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3312 +#: rpmdb/rpmdb.c:3328 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:3352 +#: rpmdb/rpmdb.c:3368 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3370 +#: rpmdb/rpmdb.c:3386 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3378 +#: rpmdb/rpmdb.c:3394 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3380 +#: rpmdb/rpmdb.c:3396 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3390 +#: rpmdb/rpmdb.c:3406 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3392 +#: rpmdb/rpmdb.c:3408 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:229 +#: rpmio/macro.c:230 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:366 +#: rpmio/macro.c:367 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:409 +#: rpmio/macro.c:410 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:647 +#: rpmio/macro.c:648 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:680 +#: rpmio/macro.c:681 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:686 +#: rpmio/macro.c:687 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:691 +#: rpmio/macro.c:692 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:697 +#: rpmio/macro.c:698 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:732 +#: rpmio/macro.c:733 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:850 +#: rpmio/macro.c:851 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:971 +#: rpmio/macro.c:972 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1167 +#: rpmio/macro.c:1168 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1237 rpmio/macro.c:1254 +#: rpmio/macro.c:1238 rpmio/macro.c:1255 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1295 +#: rpmio/macro.c:1296 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1424 +#: rpmio/macro.c:1425 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1495 +#: rpmio/macro.c:1496 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1690 rpmio/macro.c:1696 +#: rpmio/macro.c:1691 rpmio/macro.c:1697 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1699 +#: rpmio/macro.c:1700 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" @@ -3328,27 +3336,27 @@ msgstr "" msgid "Unknown or unexpected error" msgstr "" -#: rpmio/rpmio.c:1381 +#: rpmio/rpmio.c:1389 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "" -#: rpmio/rpmlog.c:58 +#: rpmio/rpmlog.c:59 msgid "(no error)" msgstr "" #. !< RPMLOG_EMERG -#: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#: rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 rpmio/rpmlog.c:132 msgid "fatal error: " msgstr "" #. !< RPMLOG_CRIT -#: rpmio/rpmlog.c:132 +#: rpmio/rpmlog.c:133 msgid "error: " msgstr "" #. !< RPMLOG_ERR -#: rpmio/rpmlog.c:133 +#: rpmio/rpmlog.c:134 msgid "warning: " msgstr "" @@ -3382,12 +3390,12 @@ msgstr "" msgid "error: %sport must be a number\n" msgstr "" -#: rpmio/url.c:471 +#: rpmio/url.c:473 msgid "url port must be a number\n" msgstr "" #. XXX Fstrerror -#: rpmio/url.c:538 +#: rpmio/url.c:540 #, c-format msgid "failed to create %s: %s\n" msgstr "" diff --git a/popt/po/cs.po b/popt/po/cs.po index 9bc30c7..1f046f4 100644 --- a/popt/po/cs.po +++ b/popt/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-07-24 00:03+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" diff --git a/popt/po/da.po b/popt/po/da.po index f120c24..eb5513d 100644 --- a/popt/po/da.po +++ b/popt/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: Sun Jan 21 2001 04:30:32+0200\n" "Last-Translator: Martin Hansen \n" "Language-Team: Dansk \n" diff --git a/popt/po/de.po b/popt/po/de.po index c409116..1adc6f2 100644 --- a/popt/po/de.po +++ b/popt/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/es.po b/popt/po/es.po index 642d3f7..9e3b1e7 100644 --- a/popt/po/es.po +++ b/popt/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: Leandro Lucarella \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/eu_ES.po b/popt/po/eu_ES.po index c409116..1adc6f2 100644 --- a/popt/po/eu_ES.po +++ b/popt/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/fi.po b/popt/po/fi.po index c409116..1adc6f2 100644 --- a/popt/po/fi.po +++ b/popt/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/fr.po b/popt/po/fr.po index c409116..1adc6f2 100644 --- a/popt/po/fr.po +++ b/popt/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/gl.po b/popt/po/gl.po index 17e7fba..17e686b 100644 --- a/popt/po/gl.po +++ b/popt/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-01-17 01:01+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" diff --git a/popt/po/hu.po b/popt/po/hu.po index 2eed893..b00c165 100644 --- a/popt/po/hu.po +++ b/popt/po/hu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2000-08-03 23:26+0200\n" "Last-Translator: László Németh \n" "Language-Team: Hungarian\n" diff --git a/popt/po/id.po b/popt/po/id.po index c409116..1adc6f2 100644 --- a/popt/po/id.po +++ b/popt/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/is.po b/popt/po/is.po index f3e12cc..046d542 100644 --- a/popt/po/is.po +++ b/popt/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-06-08 01:35+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" diff --git a/popt/po/it.po b/popt/po/it.po index c409116..1adc6f2 100644 --- a/popt/po/it.po +++ b/popt/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/ja.po b/popt/po/ja.po index c409116..1adc6f2 100644 --- a/popt/po/ja.po +++ b/popt/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/ko.po b/popt/po/ko.po index 981711f..50c4eac 100644 --- a/popt/po/ko.po +++ b/popt/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-09-06 20:06+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" diff --git a/popt/po/no.po b/popt/po/no.po index d4b4f03..e3c9c5e 100644 --- a/popt/po/no.po +++ b/popt/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-06-27 11:05+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" diff --git a/popt/po/pl.po b/popt/po/pl.po index c409116..1adc6f2 100644 --- a/popt/po/pl.po +++ b/popt/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/popt.pot b/popt/po/popt.pot index 4f52fea..a7319ec 100644 --- a/popt/po/popt.pot +++ b/popt/po/popt.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/pt.po b/popt/po/pt.po index ab49c28..1c048a8 100644 --- a/popt/po/pt.po +++ b/popt/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2002-02-13 18:32+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" diff --git a/popt/po/pt_BR.po b/popt/po/pt_BR.po index c409116..1adc6f2 100644 --- a/popt/po/pt_BR.po +++ b/popt/po/pt_BR.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/ro.po b/popt/po/ro.po index b9faa77..6957fa2 100644 --- a/popt/po/ro.po +++ b/popt/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2000-06-14 23:23+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" diff --git a/popt/po/ru.po b/popt/po/ru.po index 4792ff5..96b9112 100644 --- a/popt/po/ru.po +++ b/popt/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-07-05 21:00-0500\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" diff --git a/popt/po/sk.po b/popt/po/sk.po index 6ea8c62..61a9c28 100644 --- a/popt/po/sk.po +++ b/popt/po/sk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-08-04 21:40+0200\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" diff --git a/popt/po/sl.po b/popt/po/sl.po index 9b7fff9..a5898e0 100644 --- a/popt/po/sl.po +++ b/popt/po/sl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2000-09-05 12:30+0200\n" "Last-Translator: Roman Maurer \n" "Language-Team: Slovenian \n" diff --git a/popt/po/sr.po b/popt/po/sr.po index c409116..1adc6f2 100644 --- a/popt/po/sr.po +++ b/popt/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/sv.po b/popt/po/sv.po index 2f0ea05..e5e7c13 100644 --- a/popt/po/sv.po +++ b/popt/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2001-07-12 22:26+0100\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" diff --git a/popt/po/tr.po b/popt/po/tr.po index 6768a6c..50d51c4 100644 --- a/popt/po/tr.po +++ b/popt/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 2000-02-11 13:01+0200\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" diff --git a/popt/po/uk.po b/popt/po/uk.po index 858ca1b..b2d5068 100644 --- a/popt/po/uk.po +++ b/popt/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-09-30 16:54+0200\n" "Last-Translator: Yuri Syrota \n" "Language-Team: Ukrainian \n" diff --git a/popt/po/wa.po b/popt/po/wa.po index 536653d..32a5f64 100644 --- a/popt/po/wa.po +++ b/popt/po/wa.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-03-18 23:11+0100\n" "Last-Translator: Nobody yet\n" "Language-Team: walon \n" diff --git a/popt/po/zh.po b/popt/po/zh.po index c409116..1adc6f2 100644 --- a/popt/po/zh.po +++ b/popt/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/popt/po/zh_CN.GB2312.po b/popt/po/zh_CN.GB2312.po index 831017d..c26ec2c 100644 --- a/popt/po/zh_CN.GB2312.po +++ b/popt/po/zh_CN.GB2312.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-06-24 13:05-0400\n" +"POT-Creation-Date: 2002-07-03 09:55-0400\n" "PO-Revision-Date: 1999-11-11 05:04+0800\n" "Last-Translator: Dillion Chen \n" "Language-Team: TLDN\n" diff --git a/rpm.spec.in b/rpm.spec.in index 9a17245..0acacaf 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -17,7 +17,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.38 +Release: 0.39 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -514,6 +514,9 @@ fi %{__prefix}/include/popt.h %changelog +* Wed Jul 3 2002 Jeff Johnson 4.1-0.39 +- use rpmfi in showQueryPackage(), eliminating headerGetEntry(). + * Sun Jun 30 2002 Jeff Johnson 4.1-0.38 - turn off annoying gpg secmem warning. - warn only once for each NOKEY/UNTRUSTED key id. diff --git a/rpmdb/header.c b/rpmdb/header.c index 6efe6aa..35a9021 100644 --- a/rpmdb/header.c +++ b/rpmdb/header.c @@ -542,6 +542,7 @@ static /*@only@*/ /*@null@*/ void * doHeaderUnload(Header h, /*@out@*/ int * lengthPtr) /*@modifies h, *lengthPtr @*/ /*@requires maxSet(lengthPtr) >= 0 @*/ + /*@ensures maxRead(result) == (*lengthPtr) @*/ { int_32 * ei = NULL; entryInfo pe; @@ -1279,9 +1280,11 @@ int headerWrite(FD_t fd, /*@null@*/ Header h, enum hMagic magicp) return 1; switch (magicp) { case HEADER_MAGIC_YES: +/*@-boundsread@*/ /*@-sizeoftype@*/ nb = Fwrite(header_magic, sizeof(char), sizeof(header_magic), fd); /*@=sizeoftype@*/ +/*@=boundsread@*/ if (nb != sizeof(header_magic)) goto exit; break; diff --git a/rpmio/rpmio.h b/rpmio/rpmio.h index bb028c4..a05e2a5 100644 --- a/rpmio/rpmio.h +++ b/rpmio/rpmio.h @@ -61,7 +61,7 @@ typedef ssize_t (*fdio_read_function_t) (void *cookie, char *buf, size_t nbytes) /*@globals errno, fileSystem @*/ /*@modifies *cookie, errno, fileSystem @*/ /*@requires maxSet(buf) >= (nbytes - 1) @*/ - /*@ensures maxRead(buf) >= nbytes @*/ ; + /*@ensures maxRead(buf) == result @*/ ; /** */ @@ -235,16 +235,23 @@ struct FDIO_s { /** * fread(3) clone. */ +/*@-incondefs@*/ size_t Fread(/*@out@*/ void * buf, size_t size, size_t nmemb, FD_t fd) /*@globals fileSystem @*/ - /*@modifies fd, *buf, fileSystem @*/; + /*@modifies fd, *buf, fileSystem @*/ + /*@requires maxSet(buf) >= (nmemb - 1) @*/ + /*@ensures maxRead(buf) == result @*/; +/*@=incondefs@*/ /** * fwrite(3) clone. */ +/*@-incondefs@*/ size_t Fwrite(const void * buf, size_t size, size_t nmemb, FD_t fd) /*@globals fileSystem @*/ - /*@modifies fd, fileSystem @*/; + /*@modifies fd, fileSystem @*/ + /*@requires maxRead(buf) >= nmemb @*/; +/*@=incondefs@*/ /** * fseek(3) clone. @@ -360,7 +367,7 @@ int Readlink(const char * path, /*@out@*/ char * buf, size_t bufsiz) /*@globals errno, fileSystem @*/ /*@modifies *buf, errno, fileSystem @*/ /*@requires maxSet(buf) >= (bufsiz - 1) @*/ - /*@ensures result <= bufsiz @*/; + /*@ensures maxRead(buf) <= bufsiz @*/; /*@=incondefs@*/ /** @@ -474,7 +481,7 @@ ssize_t fdRead(void * cookie, /*@out@*/ char * buf, size_t count) /*@globals errno, fileSystem @*/ /*@modifies *cookie, *buf, errno, fileSystem @*/ /*@requires maxSet(buf) >= (count - 1) @*/ - /*@ensures maxRead(buf) >= count @*/ ; + /*@ensures maxRead(buf) == result @*/ ; #define fdRead(_fd, _buf, _count) fdio->read((_fd), (_buf), (_count)) /*@=incondefs@*/ -- 2.7.4