From cc646a80a15a62355ef29d157cfc782573aac935 Mon Sep 17 00:00:00 2001 From: jbj Date: Wed, 28 Feb 2001 15:49:23 +0000 Subject: [PATCH] Merge scriptlet handling into psm.c, remove from API. CVS patchset: 4587 CVS date: 2001/02/28 15:49:23 --- Doxyfile.in | 2 - lib/Makefile.am | 4 +- lib/psm.c | 605 ++++++++++++++++++++++++++++++++++++++++-------- lib/psm.h | 48 +++- lib/scriptlet.c | 474 ------------------------------------- lib/scriptlet.h | 41 ---- lib/verify.c | 2 +- po/POTFILES.in | 1 - po/cs.po | 184 +++++++-------- po/da.po | 184 +++++++-------- po/de.po | 184 +++++++-------- po/es.po | 184 +++++++-------- po/eu_ES.po | 184 +++++++-------- po/fi.po | 184 +++++++-------- po/fr.po | 184 +++++++-------- po/gl.po | 184 +++++++-------- po/hu.po | 184 +++++++-------- po/id.po | 184 +++++++-------- po/is.po | 184 +++++++-------- po/it.po | 184 +++++++-------- po/ja.po | 186 +++++++-------- po/ko.po | 184 +++++++-------- po/no.po | 184 +++++++-------- po/pl.po | 184 +++++++-------- po/pt.po | 184 +++++++-------- po/pt_BR.po | 184 +++++++-------- po/ro.po | 184 +++++++-------- po/rpm.pot | 32 +-- po/ru.po | 184 +++++++-------- po/sk.po | 184 +++++++-------- po/sl.po | 186 +++++++-------- po/sr.po | 184 +++++++-------- po/sv.po | 184 +++++++-------- po/tr.po | 184 +++++++-------- po/uk.po | 184 +++++++-------- po/wa.po | 184 +++++++-------- po/zh.po | 184 +++++++-------- po/zh_CN.GB2312.po | 184 +++++++-------- popt/po/cs.po | 6 +- popt/po/da.po | 6 +- popt/po/de.po | 6 +- popt/po/es.po | 6 +- popt/po/eu_ES.po | 6 +- popt/po/fi.po | 6 +- popt/po/fr.po | 6 +- popt/po/gl.po | 6 +- popt/po/hu.po | 6 +- popt/po/id.po | 6 +- popt/po/is.po | 6 +- popt/po/it.po | 6 +- popt/po/ja.po | 6 +- popt/po/ko.po | 6 +- popt/po/no.po | 6 +- popt/po/pl.po | 6 +- popt/po/pt.po | 6 +- popt/po/pt_BR.po | 6 +- popt/po/ro.po | 6 +- popt/po/ru.po | 6 +- popt/po/sk.po | 6 +- popt/po/sl.po | 6 +- popt/po/sr.po | 6 +- popt/po/sv.po | 6 +- popt/po/tr.po | 6 +- popt/po/uk.po | 6 +- popt/po/wa.po | 6 +- popt/po/zh.po | 6 +- popt/po/zh_CN.GB2312.po | 6 +- 67 files changed, 3319 insertions(+), 3404 deletions(-) delete mode 100644 lib/scriptlet.c delete mode 100644 lib/scriptlet.h diff --git a/Doxyfile.in b/Doxyfile.in index 4f5e251..32b1472 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -315,8 +315,6 @@ INPUT = \ ./lib/rpmlib.h \ ./lib/rpmlibprov.c \ ./lib/rpmrc.c \ - ./lib/scriptlet.c \ - ./lib/scriptlet.h \ ./lib/signature.c \ ./lib/signature.h \ ./lib/stringbuf.c \ diff --git a/lib/Makefile.am b/lib/Makefile.am index 5c6d58d..83faf1a 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -13,7 +13,7 @@ pkginc_HEADERS = \ noinst_HEADERS = \ cpio.h depends.h falloc.h fprint.h fsm.h hash.h \ md5.h psm.h \ - rpmdb.h rpmlead.h scriptlet.h signature.h + rpmdb.h rpmlead.h signature.h mylibpaths = -L$(top_builddir)/lib/.libs -L$(top_builddir)/rpmio/.libs \ -L$(top_builddir)/popt/.libs @@ -27,7 +27,7 @@ librpm_la_SOURCES = \ md5.c md5sum.c misc.c package.c problems.c \ poptBT.c poptQV.c psm.c query.c \ rpmchecksig.c rpmdb.c rpminstall.c \ - rpmlead.c rpmlibprov.c rpmrc.c scriptlet.c signature.c stringbuf.c \ + rpmlead.c rpmlibprov.c rpmrc.c signature.c stringbuf.c \ tagName.c tagtable.c transaction.c verify.c librpm_la_LDFLAGS = @libdb3@ @libdb2@ @libdb1@ librpm_la_LIBADD = $(DBLIBOBJS) diff --git a/lib/psm.c b/lib/psm.c index 162e41b..71a10e3 100644 --- a/lib/psm.c +++ b/lib/psm.c @@ -867,135 +867,546 @@ exit: return rc; } +static char * SCRIPT_PATH = "PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin"; + +/** + * Return scriptlet name from tag. + * @param tag scriptlet tag + * @return name of scriptlet + */ +static /*@observer@*/ const char * const tag2sln(int tag) +{ + switch (tag) { + case RPMTAG_PREIN: return "%pre"; + case RPMTAG_POSTIN: return "%post"; + case RPMTAG_PREUN: return "%preun"; + case RPMTAG_POSTUN: return "%postun"; + case RPMTAG_VERIFYSCRIPT: return "%verify"; + } + return "%unknownscript"; +} + /** - * Enter and leave a chroot. + * Run scriptlet with args. + * + * Run a script with an interpreter. If the interpreter is not specified, + * /bin/sh will be used. If the interpreter is /bin/sh, then the args from + * the header will be ignored, passing instead arg1 and arg2. + * * @param psm package state machine data - * @return 0 on sucess or not performed, chroot(2) rc otherwise + * @param h header + * @param sln name of scriptlet section + * @param progArgc no. of args from header + * @param progArgv args from header, progArgv[0] is the interpreter to use + * @param script scriptlet from header + * @param arg1 no. instances of package installed after scriptlet exec + * (-1 is no arg) + * @param arg2 ditto, but for the target package + * @return 0 on success, 1 on error */ -static int psmChroot(PSM_t psm, int enter) +static int runScript(PSM_t psm, Header h, + const char * sln, + int progArgc, const char ** progArgv, + const char * script, int arg1, int arg2) { const rpmTransactionSet ts = psm->ts; TFI_t fi = psm->fi; + HGE_t hge = fi->hge; + HFD_t hfd = fi->hfd; + const char ** argv = NULL; + int argc = 0; + const char ** prefixes = NULL; + int numPrefixes; + int_32 ipt; + const char * oldPrefix; + int maxPrefixLength; + int len; + char * prefixBuf = NULL; + pid_t child; + int status = 0; + const char * fn = NULL; + int i; + int freePrefixes = 0; + FD_t out; int rc = 0; + const char *n, *v, *r; - if (enter) { - /* Change root directory if requested and not already done. */ - if (ts->rootDir && !ts->chrootDone && !fi->chrootDone) { - static int _loaded = 0; + if (!progArgv && !script) + return 0; - /* - * This loads all of the name services libraries, in case we - * don't have access to them in the chroot(). - */ - if (!_loaded) { - (void)getpwnam("root"); - endpwent(); - _loaded++; + if (!progArgv) { + argv = alloca(5 * sizeof(char *)); + argv[0] = "/bin/sh"; + argc = 1; + } else { + argv = alloca((progArgc + 4) * sizeof(char *)); + memcpy(argv, progArgv, progArgc * sizeof(char *)); + argc = progArgc; + } + + headerNVR(h, &n, &v, &r); + if (hge(h, RPMTAG_INSTPREFIXES, &ipt, (void **) &prefixes, &numPrefixes)) { + freePrefixes = 1; + } else if (hge(h, RPMTAG_INSTALLPREFIX, NULL, (void **) &oldPrefix, NULL)) { + prefixes = &oldPrefix; + numPrefixes = 1; + } else { + numPrefixes = 0; + } + + maxPrefixLength = 0; + for (i = 0; i < numPrefixes; i++) { + len = strlen(prefixes[i]); + if (len > maxPrefixLength) maxPrefixLength = len; + } + prefixBuf = alloca(maxPrefixLength + 50); + + if (script) { + FD_t fd; + if (makeTempFile((!ts->chrootDone ? ts->rootDir : "/"), &fn, &fd)) { + if (freePrefixes) free(prefixes); + return 1; + } + + if (rpmIsDebug() && + (!strcmp(argv[0], "/bin/sh") || !strcmp(argv[0], "/bin/bash"))) + (void)Fwrite("set -x\n", sizeof(char), 7, fd); + + (void)Fwrite(script, sizeof(script[0]), strlen(script), fd); + Fclose(fd); + + { const char * sn = fn; + if (!ts->chrootDone && + !(ts->rootDir[0] == '/' && ts->rootDir[1] == '\0')) + { + sn += strlen(ts->rootDir)-1; + } + argv[argc++] = sn; + } + + if (arg1 >= 0) { + char *av = alloca(20); + sprintf(av, "%d", arg1); + argv[argc++] = av; + } + if (arg2 >= 0) { + char *av = alloca(20); + sprintf(av, "%d", arg2); + argv[argc++] = av; + } + } + + argv[argc] = NULL; + + if (ts->scriptFd != NULL) { + if (rpmIsVerbose()) { + out = fdDup(Fileno(ts->scriptFd)); + } else { + out = Fopen("/dev/null", "w.fdio"); + if (Ferror(out)) { + out = fdDup(Fileno(ts->scriptFd)); + } + } + } else { + out = fdDup(STDOUT_FILENO); + out = fdLink(out, "runScript persist"); + } + + if (!(child = fork())) { + const char * rootDir; + int pipes[2]; + + pipes[0] = pipes[1] = 0; + /* make stdin inaccessible */ + pipe(pipes); + close(pipes[1]); + dup2(pipes[0], STDIN_FILENO); + close(pipes[0]); + + if (ts->scriptFd != NULL) { + if (Fileno(ts->scriptFd) != STDERR_FILENO) + dup2(Fileno(ts->scriptFd), STDERR_FILENO); + if (Fileno(out) != STDOUT_FILENO) + dup2(Fileno(out), STDOUT_FILENO); + /* make sure we don't close stdin/stderr/stdout by mistake! */ + if (Fileno(out) > STDERR_FILENO && Fileno(out) != Fileno(ts->scriptFd)) { + Fclose (out); + } + if (Fileno(ts->scriptFd) > STDERR_FILENO) { + Fclose (ts->scriptFd); + } + } + + { const char *ipath = rpmExpand("PATH=%{_install_script_path}", NULL); + const char *path = SCRIPT_PATH; + + if (ipath && ipath[5] != '%') + path = ipath; + doputenv(path); + if (ipath) free((void *)ipath); + } + + for (i = 0; i < numPrefixes; i++) { + sprintf(prefixBuf, "RPM_INSTALL_PREFIX%d=%s", i, prefixes[i]); + doputenv(prefixBuf); + + /* backwards compatibility */ + if (i == 0) { + sprintf(prefixBuf, "RPM_INSTALL_PREFIX=%s", prefixes[i]); + doputenv(prefixBuf); } + } + rootDir = ts->rootDir; + switch(urlIsURL(rootDir)) { + case URL_IS_PATH: + rootDir += sizeof("file://") - 1; + rootDir = strchr(rootDir, '/'); + /*@fallthrough@*/ + case URL_IS_UNKNOWN: + if (!ts->chrootDone && !(rootDir[0] == '/' && rootDir[1] == '\0')) { + /*@-unrecog@*/ chroot(rootDir); /*@=unrecog@*/ + } chdir("/"); - /*@-unrecog@*/ - rc = chroot(ts->rootDir); - /*@=unrecog@*/ - fi->chrootDone = ts->chrootDone = 1; + execv(argv[0], (char *const *)argv); + break; + default: + break; } + + _exit(-1); + /*@notreached@*/ + } + + if (waitpid(child, &status, 0) < 0) { + rpmError(RPMERR_SCRIPT, + _("execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"), + sln, n, v, r, strerror (errno)); + /* XXX what to do here? */ + rc = 0; } else { - /* Restore root directory if changed. */ - if (fi->chrootDone) { - /*@-unrecog@*/ - rc = chroot("."); - /*@=unrecog@*/ - fi->chrootDone = ts->chrootDone = 0; - chdir(ts->currDir); + if (!WIFEXITED(status) || WEXITSTATUS(status)) { + rpmError(RPMERR_SCRIPT, + _("execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"), + sln, n, v, r, WEXITSTATUS(status)); + rc = 1; + } + } + + if (freePrefixes) prefixes = hfd(prefixes, ipt); + + Fclose(out); /* XXX dup'd STDOUT_FILENO */ + + if (script) { + if (!rpmIsDebug()) unlink(fn); + free((void *)fn); + } + + return rc; +} + +/** + * Retrieve and run scriptlet from header. + * @param psm package state machine data + * @return 0 on success + */ +static int runInstScript(PSM_t psm) +{ + const rpmTransactionSet ts = psm->ts; + TFI_t fi = psm->fi; + HGE_t hge = fi->hge; + HFD_t hfd = fi->hfd; + void ** programArgv; + int programArgc; + const char ** argv; + int_32 ptt, stt; + const char * script; + int rc; + + if (ts->transFlags & RPMTRANS_FLAG_NOSCRIPTS) + return 0; + + /* + * headerGetEntry() sets the data pointer to NULL if the entry does + * not exist. + */ + hge(fi->h, psm->progTag, &ptt, (void **) &programArgv, &programArgc); + hge(fi->h, psm->scriptTag, &stt, (void **) &script, NULL); + + if (programArgv && ptt == RPM_STRING_TYPE) { + argv = alloca(sizeof(char *)); + *argv = (const char *) programArgv; + } else { + argv = (const char **) programArgv; + } + + rc = runScript(psm, fi->h, tag2sln(psm->scriptTag), programArgc, argv, + script, psm->scriptArg, -1); + programArgv = hfd(programArgv, ptt); + script = hfd(script, stt); + return rc; +} + +/** + * @param psm package state machine data + * @param sourceH + * @param triggeredH + * @param arg2 + * @param triggersAlreadyRun + * @return + */ +static int handleOneTrigger(PSM_t psm, Header sourceH, Header triggeredH, + int arg2, char * triggersAlreadyRun) +{ + const rpmTransactionSet ts = psm->ts; + TFI_t fi = psm->fi; + HGE_t hge = fi->hge; + HFD_t hfd = fi->hfd; + const char ** triggerNames; + const char ** triggerEVR; + const char ** triggerScripts; + const char ** triggerProgs; + int_32 * triggerFlags; + int_32 * triggerIndices; + int_32 tnt, tvt, tft; + const char * triggerPackageName; + const char * sourceName; + int numTriggers; + int rc = 0; + int i; + int skip; + + if (!hge(triggeredH, RPMTAG_TRIGGERNAME, &tnt, + (void **) &triggerNames, &numTriggers)) + return 0; + + headerNVR(sourceH, &sourceName, NULL, NULL); + + hge(triggeredH, RPMTAG_TRIGGERFLAGS, &tft, (void **) &triggerFlags, NULL); + hge(triggeredH, RPMTAG_TRIGGERVERSION, &tvt, (void **) &triggerEVR, NULL); + + for (i = 0; i < numTriggers; i++) { + int_32 tit, tst, tpt; + + if (!(triggerFlags[i] & psm->sense)) continue; + if (strcmp(triggerNames[i], sourceName)) continue; + + /* + * 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(triggerNames[i]); + if (!strncmp(triggerEVR[i], triggerNames[i], skip) && + (triggerEVR[i][skip] == '-')) + skip++; + else + skip = 0; + + if (!headerMatchesDepFlags(sourceH, triggerNames[i], + triggerEVR[i] + skip, triggerFlags[i])) + continue; + + hge(triggeredH, RPMTAG_TRIGGERINDEX, &tit, + (void **) &triggerIndices, NULL); + hge(triggeredH, RPMTAG_TRIGGERSCRIPTS, &tst, + (void **) &triggerScripts, NULL); + hge(triggeredH, RPMTAG_TRIGGERSCRIPTPROG, &tpt, + (void **) &triggerProgs, NULL); + + headerNVR(triggeredH, &triggerPackageName, NULL, NULL); + + { int arg1; + int index; + + arg1 = rpmdbCountPackages(ts->rpmdb, triggerPackageName); + if (arg1 < 0) { + rc = 1; /* XXX W2DO? same as "execution of script failed" */ + } else { + arg1 += psm->countCorrection; + index = triggerIndices[i]; + if (!triggersAlreadyRun || !triggersAlreadyRun[index]) { + rc = runScript(psm, triggeredH, "%trigger", 1, + triggerProgs + index, triggerScripts[index], + arg1, arg2); + if (triggersAlreadyRun) triggersAlreadyRun[index] = 1; + } + } + } + + triggerIndices = hfd(triggerIndices, tit); + triggerScripts = hfd(triggerScripts, tst); + triggerProgs = hfd(triggerProgs, tpt); + + /* + * Each target/source header pair can only result in a single + * script being run. + */ + break; + } + + triggerNames = hfd(triggerNames, tnt); + triggerFlags = hfd(triggerFlags, tft); + triggerEVR = hfd(triggerEVR, tvt); + + return rc; +} + +/** + * Run trigger scripts in the database that are fired by this header. + * @param psm package state machine data + * @return 0 on success, 1 on error + */ +static int runTriggers(PSM_t psm) +{ + const rpmTransactionSet ts = psm->ts; + TFI_t fi = psm->fi; + int numPackage; + int rc = 0; + + numPackage = rpmdbCountPackages(ts->rpmdb, fi->name) + psm->countCorrection; + if (numPackage < 0) + return 1; + + { Header triggeredH; + rpmdbMatchIterator mi; + int countCorrection = psm->countCorrection; + + psm->countCorrection = 0; + mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_TRIGGERNAME, fi->name, 0); + while((triggeredH = rpmdbNextIterator(mi)) != NULL) { + rc |= handleOneTrigger(psm, fi->h, triggeredH, numPackage, NULL); + } + + rpmdbFreeIterator(mi); + psm->countCorrection = countCorrection; + } + + return rc; +} + +/** + * Run triggers from this header that are fired by headers in the database. + * @param psm package state machine data + * @return 0 on success, 1 on error + */ +static int runImmedTriggers(PSM_t psm) +{ + const rpmTransactionSet ts = psm->ts; + TFI_t fi = psm->fi; + HGE_t hge = fi->hge; + HFD_t hfd = fi->hfd; + const char ** triggerNames; + int numTriggers; + int_32 * triggerIndices; + int_32 tnt, tit; + int numTriggerIndices; + char * triggersRun; + int rc = 0; + + if (!hge(fi->h, RPMTAG_TRIGGERNAME, &tnt, + (void **) &triggerNames, &numTriggers)) + return 0; + + hge(fi->h, RPMTAG_TRIGGERINDEX, &tit, (void **) &triggerIndices, + &numTriggerIndices); + triggersRun = alloca(sizeof(*triggersRun) * numTriggerIndices); + memset(triggersRun, 0, sizeof(*triggersRun) * numTriggerIndices); + + { Header sourceH = NULL; + int i; + + for (i = 0; i < numTriggers; i++) { + rpmdbMatchIterator mi; + + if (triggersRun[triggerIndices[i]]) continue; + + mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_NAME, triggerNames[i], 0); + + while((sourceH = rpmdbNextIterator(mi)) != NULL) { + rc |= handleOneTrigger(psm, sourceH, fi->h, + rpmdbGetIteratorCount(mi), + triggersRun); + } + + rpmdbFreeIterator(mi); } } + triggerIndices = hfd(triggerNames, tit); + triggerNames = hfd(triggerNames, tnt); return rc; } -int psmStage(PSM_t psm, fileStage stage) +int psmStage(PSM_t psm, pkgStage stage) { - const char * const cur = fileStageString(stage); + const rpmTransactionSet ts = psm->ts; + TFI_t fi = psm->fi; int rc = psm->rc; int i; switch (stage) { - case FSM_UNKNOWN: - break; - case FSM_PKGINSTALL: - break; - case FSM_PKGERASE: - break; - case FSM_PKGSAVE: - break; - case FSM_PKGCOMMIT: - break; - case FSM_PKGBUILD: - break; - case FSM_CREATE: - break; - case FSM_INIT: - break; - case FSM_PRE: + case PSM_UNKNOWN: break; - case FSM_MAP: + case PSM_INIT: break; - case FSM_MKDIRS: + case PSM_PRE: break; - case FSM_RMDIRS: + case PSM_PROCESS: break; - case FSM_PROCESS: + case PSM_POST: break; - case FSM_POST: + case PSM_UNDO: break; - case FSM_MKLINKS: + case PSM_FINI: break; - case FSM_NOTIFY: + case PSM_NOTIFY: break; - case FSM_UNDO: + case PSM_COMMIT: break; - case FSM_FINI: + case PSM_CREATE: break; - case FSM_COMMIT: + case PSM_DESTROY: break; - case FSM_DESTROY: + + case PSM_CHROOT_IN: + /* Change root directory if requested and not already done. */ + if (ts->rootDir && !ts->chrootDone && !psm->chrootDone) { + static int _loaded = 0; + + /* + * This loads all of the name services libraries, in case we + * don't have access to them in the chroot(). + */ + if (!_loaded) { + (void)getpwnam("root"); + endpwent(); + _loaded++; + } + + chdir("/"); + /*@-unrecog@*/ + rc = chroot(ts->rootDir); + /*@=unrecog@*/ + psm->chrootDone = ts->chrootDone = 1; + } break; - case FSM_VERIFY: + case PSM_CHROOT_OUT: + /* Restore root directory if changed. */ + if (psm->chrootDone) { + /*@-unrecog@*/ + rc = chroot("."); + /*@=unrecog@*/ + psm->chrootDone = ts->chrootDone = 0; + chdir(ts->currDir); + } break; - - case FSM_UNLINK: - case FSM_RENAME: - case FSM_MKDIR: - case FSM_RMDIR: - case FSM_CHOWN: - case FSM_LCHOWN: - case FSM_CHMOD: - case FSM_UTIME: - case FSM_SYMLINK: - case FSM_LINK: - case FSM_MKFIFO: - case FSM_MKNOD: - case FSM_LSTAT: - case FSM_STAT: - case FSM_READLINK: + case PSM_SCRIPT: + rc = runInstScript(psm); break; - case FSM_CHROOT: + case PSM_TRIGGER: break; - case FSM_NEXT: - case FSM_EAT: - case FSM_POS: - case FSM_PAD: - case FSM_TRAILER: - case FSM_HREAD: - case FSM_HWRITE: - case FSM_DREAD: - case FSM_DWRITE: - case FSM_ROPEN: - case FSM_READ: - case FSM_RCLOSE: - case FSM_WOPEN: - case FSM_WRITE: - case FSM_WCLOSE: default: break; } @@ -1096,7 +1507,7 @@ int installBinaryPackage(PSM_t psm) } /* Change root directory if requested and not already done. */ - (void) psmChroot(psm, 1); + (void) psmStage(psm, PSM_CHROOT_IN); if (fi->fc > 0 && !(ts->transFlags & RPMTRANS_FLAG_JUSTDB)) { @@ -1109,7 +1520,7 @@ int installBinaryPackage(PSM_t psm) } /* Restore root directory if changed. */ - (void) psmChroot(psm, 0); + (void) psmStage(psm, PSM_CHROOT_OUT); if (fi->fc > 0 && fi->fstates) { headerAddEntry(fi->h, RPMTAG_FILESTATES, RPM_CHAR_TYPE, @@ -1183,7 +1594,7 @@ int installBinaryPackage(PSM_t psm) exit: /* Restore root directory if changed. */ - (void) psmChroot(psm, 0); + (void) psmStage(psm, PSM_CHROOT_OUT); if (oldH) headerFree(oldH); @@ -1231,7 +1642,7 @@ assert(fi->type == TR_REMOVED); } /* Change root directory if requested and not already done. */ - (void) psmChroot(psm, 1); + (void) psmStage(psm, PSM_CHROOT_IN); if (!(ts->transFlags & RPMTRANS_FLAG_NOTRIGGERS)) { /* run triggers from this package which are keyed on installed @@ -1245,8 +1656,6 @@ assert(fi->type == TR_REMOVED); } /* run triggers which are set off by the removal of this package */ - psm->sense = RPMSENSE_TRIGGERUN; - psm->countCorrection = -1; rc = runTriggers(psm); if (rc) { rc = 1; @@ -1302,7 +1711,7 @@ assert(fi->type == TR_REMOVED); exit: /* Restore root directory if changed. */ - (void) psmChroot(psm, 0); + (void) psmStage(psm, PSM_CHROOT_OUT); if (!rc && !(ts->transFlags & RPMTRANS_FLAG_TEST)) rpmdbRemove(ts->rpmdb, ts->id, fi->record); @@ -1437,7 +1846,7 @@ assert(fi->type == TR_REMOVED); if (rc) goto exit; /* Change root directory if requested and not already done. */ - (void) psmChroot(psm, 1); + (void) psmStage(psm, PSM_CHROOT_IN); /* Write the payload into the package. */ { FD_t cfd; @@ -1463,7 +1872,7 @@ assert(fi->type == TR_REMOVED); exit: /* Restore root directory if changed. */ - (void) psmChroot(psm, 0); + (void) psmStage(psm, PSM_CHROOT_OUT); if (h) headerFree(h); if (oh) headerFree(oh); diff --git a/lib/psm.h b/lib/psm.h index b44ba35..924c457 100644 --- a/lib/psm.h +++ b/lib/psm.h @@ -6,18 +6,10 @@ #include #include "depends.h" -#include "scriptlet.h" #include "fsm.h" /** */ -typedef enum rollbackDir_e { - ROLLBACK_SAVE = 1, /*!< Save files. */ - ROLLBACK_RESTORE = 2, /*!< Restore files. */ -} rollbackDir; - -/** - */ struct sharedFile { int mainFileNumber; int secRecOffset; @@ -72,7 +64,6 @@ struct transactionFileInfo_s { int dnlmax; /*!< Length (in bytes) of longest dir name. */ int astriplen; int striplen; - int chrootDone; unsigned int archiveSize; mode_t dperms; /*!< Directory perms (0755) if not mapped. */ mode_t fperms; /*!< File perms (0644) if not mapped. */ @@ -97,16 +88,49 @@ struct transactionFileInfo_s { /** */ +#define PSM_VERBOSE 0x8000 +#define PSM_INTERNAL 0x4000 +#define PSM_SYSCALL 0x2000 +#define PSM_DEAD 0x1000 +#define _fv(_a) ((_a) | PSM_VERBOSE) +#define _fi(_a) ((_a) | PSM_INTERNAL) +#define _fs(_a) ((_a) | (PSM_INTERNAL | PSM_SYSCALL)) +#define _fd(_a) ((_a) | (PSM_INTERNAL | PSM_DEAD)) +typedef enum pkgStage_e { + PSM_UNKNOWN = 0, + PSM_INIT = 1, + PSM_PRE = 2, + PSM_PROCESS = 3, + PSM_POST = 4, + PSM_UNDO = 5, + PSM_FINI = 6, + PSM_NOTIFY = 7, + PSM_COMMIT = 8, + PSM_CREATE = 9, + PSM_DESTROY = 10, + PSM_CHROOT_IN= 11, + PSM_CHROOT_OUT=12, + PSM_SCRIPT = 13, + PSM_TRIGGER = 14, +} pkgStage; +#undef _fv +#undef _fi +#undef _fs +#undef _fd + +/** + */ struct psm_s { rpmTransactionSet ts; TFI_t fi; - int scriptTag; /*!< Scriptlet tag. */ + int scriptTag; /*!< Scriptlet data tag. */ int progTag; /*!< Scriptlet interpreter tag. */ int scriptArg; /*!< No. of installed instances. */ int sense; /*!< One of RPMSENSE_TRIGGER{IN,UN,POSTUN}. */ int countCorrection; /*!< 0 if installing, -1 if removing. */ + int chrootDone; /*!< Was chroot(2) done by pkgStage? */ int rc; - fileStage stage; + pkgStage stage; }; #ifdef __cplusplus @@ -167,7 +191,7 @@ int repackage(PSM_t psm) /** */ -int psmStage(PSM_t psm, fileStage stage) +int psmStage(PSM_t psm, pkgStage stage) /*@modifies psm @*/; #ifdef __cplusplus diff --git a/lib/scriptlet.c b/lib/scriptlet.c deleted file mode 100644 index 3ab047b..0000000 --- a/lib/scriptlet.c +++ /dev/null @@ -1,474 +0,0 @@ -/** \ingroup rpmtrans payload - * \file lib/scriptlet.c - */ - -#include "system.h" - -#include -#include -#include /* XXX for rpmExpand */ - -#include "depends.h" /* XXX for headerMatchesDepFlags */ -#include "psm.h" -#include "scriptlet.h" -#include "misc.h" /* XXX for makeTempFile, doputenv */ -#include "debug.h" - -/*@access Header @*/ /* XXX compared with NULL */ -/*@access PSM_t @*/ - -static char * SCRIPT_PATH = "PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin"; - -/** - * Return scriptlet name from tag. - * @param tag scriptlet tag - * @return name of scriptlet - */ -static /*@observer@*/ const char * const tag2sln(int tag) -{ - switch (tag) { - case RPMTAG_PREIN: return "%pre"; - case RPMTAG_POSTIN: return "%post"; - case RPMTAG_PREUN: return "%preun"; - case RPMTAG_POSTUN: return "%postun"; - case RPMTAG_VERIFYSCRIPT: return "%verify"; - } - return "%unknownscript"; -} - -/** - * Run scriptlet with args. - * - * Run a script with an interpreter. If the interpreter is not specified, - * /bin/sh will be used. If the interpreter is /bin/sh, then the args from - * the header will be ignored, passing instead arg1 and arg2. - * - * @param psm package state machine data - * @param h header - * @param sln name of scriptlet section - * @param progArgc no. of args from header - * @param progArgv args from header, progArgv[0] is the interpreter to use - * @param script scriptlet from header - * @param arg1 no. instances of package installed after scriptlet exec - * (-1 is no arg) - * @param arg2 ditto, but for the target package - * @return 0 on success, 1 on error - */ -static int runScript(PSM_t psm, Header h, - const char * sln, - int progArgc, const char ** progArgv, - const char * script, int arg1, int arg2) -{ - const rpmTransactionSet ts = psm->ts; - TFI_t fi = psm->fi; - HGE_t hge = fi->hge; - HFD_t hfd = fi->hfd; - const char ** argv = NULL; - int argc = 0; - const char ** prefixes = NULL; - int numPrefixes; - int_32 ipt; - const char * oldPrefix; - int maxPrefixLength; - int len; - char * prefixBuf = NULL; - pid_t child; - int status = 0; - const char * fn = NULL; - int i; - int freePrefixes = 0; - FD_t out; - int rc = 0; - const char *n, *v, *r; - - if (!progArgv && !script) - return 0; - - if (!progArgv) { - argv = alloca(5 * sizeof(char *)); - argv[0] = "/bin/sh"; - argc = 1; - } else { - argv = alloca((progArgc + 4) * sizeof(char *)); - memcpy(argv, progArgv, progArgc * sizeof(char *)); - argc = progArgc; - } - - headerNVR(h, &n, &v, &r); - if (hge(h, RPMTAG_INSTPREFIXES, &ipt, (void **) &prefixes, &numPrefixes)) { - freePrefixes = 1; - } else if (hge(h, RPMTAG_INSTALLPREFIX, NULL, (void **) &oldPrefix, NULL)) { - prefixes = &oldPrefix; - numPrefixes = 1; - } else { - numPrefixes = 0; - } - - maxPrefixLength = 0; - for (i = 0; i < numPrefixes; i++) { - len = strlen(prefixes[i]); - if (len > maxPrefixLength) maxPrefixLength = len; - } - prefixBuf = alloca(maxPrefixLength + 50); - - if (script) { - FD_t fd; - if (makeTempFile((!ts->chrootDone ? ts->rootDir : "/"), &fn, &fd)) { - if (freePrefixes) free(prefixes); - return 1; - } - - if (rpmIsDebug() && - (!strcmp(argv[0], "/bin/sh") || !strcmp(argv[0], "/bin/bash"))) - (void)Fwrite("set -x\n", sizeof(char), 7, fd); - - (void)Fwrite(script, sizeof(script[0]), strlen(script), fd); - Fclose(fd); - - { const char * sn = fn; - if (!ts->chrootDone && - !(ts->rootDir[0] == '/' && ts->rootDir[1] == '\0')) - { - sn += strlen(ts->rootDir)-1; - } - argv[argc++] = sn; - } - - if (arg1 >= 0) { - char *av = alloca(20); - sprintf(av, "%d", arg1); - argv[argc++] = av; - } - if (arg2 >= 0) { - char *av = alloca(20); - sprintf(av, "%d", arg2); - argv[argc++] = av; - } - } - - argv[argc] = NULL; - - if (ts->scriptFd != NULL) { - if (rpmIsVerbose()) { - out = fdDup(Fileno(ts->scriptFd)); - } else { - out = Fopen("/dev/null", "w.fdio"); - if (Ferror(out)) { - out = fdDup(Fileno(ts->scriptFd)); - } - } - } else { - out = fdDup(STDOUT_FILENO); - out = fdLink(out, "runScript persist"); - } - - if (!(child = fork())) { - const char * rootDir; - int pipes[2]; - - pipes[0] = pipes[1] = 0; - /* make stdin inaccessible */ - pipe(pipes); - close(pipes[1]); - dup2(pipes[0], STDIN_FILENO); - close(pipes[0]); - - if (ts->scriptFd != NULL) { - if (Fileno(ts->scriptFd) != STDERR_FILENO) - dup2(Fileno(ts->scriptFd), STDERR_FILENO); - if (Fileno(out) != STDOUT_FILENO) - dup2(Fileno(out), STDOUT_FILENO); - /* make sure we don't close stdin/stderr/stdout by mistake! */ - if (Fileno(out) > STDERR_FILENO && Fileno(out) != Fileno(ts->scriptFd)) { - Fclose (out); - } - if (Fileno(ts->scriptFd) > STDERR_FILENO) { - Fclose (ts->scriptFd); - } - } - - { const char *ipath = rpmExpand("PATH=%{_install_script_path}", NULL); - const char *path = SCRIPT_PATH; - - if (ipath && ipath[5] != '%') - path = ipath; - doputenv(path); - if (ipath) free((void *)ipath); - } - - for (i = 0; i < numPrefixes; i++) { - sprintf(prefixBuf, "RPM_INSTALL_PREFIX%d=%s", i, prefixes[i]); - doputenv(prefixBuf); - - /* backwards compatibility */ - if (i == 0) { - sprintf(prefixBuf, "RPM_INSTALL_PREFIX=%s", prefixes[i]); - doputenv(prefixBuf); - } - } - - rootDir = ts->rootDir; - switch(urlIsURL(rootDir)) { - case URL_IS_PATH: - rootDir += sizeof("file://") - 1; - rootDir = strchr(rootDir, '/'); - /*@fallthrough@*/ - case URL_IS_UNKNOWN: - if (!ts->chrootDone && !(rootDir[0] == '/' && rootDir[1] == '\0')) { - /*@-unrecog@*/ chroot(rootDir); /*@=unrecog@*/ - } - chdir("/"); - execv(argv[0], (char *const *)argv); - break; - default: - break; - } - - _exit(-1); - /*@notreached@*/ - } - - if (waitpid(child, &status, 0) < 0) { - rpmError(RPMERR_SCRIPT, - _("execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"), - sln, n, v, r, strerror (errno)); - /* XXX what to do here? */ - rc = 0; - } else { - if (!WIFEXITED(status) || WEXITSTATUS(status)) { - rpmError(RPMERR_SCRIPT, - _("execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"), - sln, n, v, r, WEXITSTATUS(status)); - rc = 1; - } - } - - if (freePrefixes) prefixes = hfd(prefixes, ipt); - - Fclose(out); /* XXX dup'd STDOUT_FILENO */ - - if (script) { - if (!rpmIsDebug()) unlink(fn); - free((void *)fn); - } - - return rc; -} - -int runInstScript(PSM_t psm) -{ - const rpmTransactionSet ts = psm->ts; - TFI_t fi = psm->fi; - HGE_t hge = fi->hge; - HFD_t hfd = fi->hfd; - void ** programArgv; - int programArgc; - const char ** argv; - int_32 ptt, stt; - const char * script; - int rc; - - if (ts->transFlags & RPMTRANS_FLAG_NOSCRIPTS) - return 0; - - /* - * headerGetEntry() sets the data pointer to NULL if the entry does - * not exist. - */ - hge(fi->h, psm->progTag, &ptt, (void **) &programArgv, &programArgc); - hge(fi->h, psm->scriptTag, &stt, (void **) &script, NULL); - - if (programArgv && ptt == RPM_STRING_TYPE) { - argv = alloca(sizeof(char *)); - *argv = (const char *) programArgv; - } else { - argv = (const char **) programArgv; - } - - rc = runScript(psm, fi->h, tag2sln(psm->scriptTag), programArgc, argv, - script, psm->scriptArg, -1); - programArgv = hfd(programArgv, ptt); - script = hfd(script, stt); - return rc; -} - -/** - * @param psm package state machine data - * @param sourceH - * @param triggeredH - * @param arg2 - * @param triggersAlreadyRun - * @return - */ -static int handleOneTrigger(PSM_t psm, Header sourceH, Header triggeredH, - int arg2, char * triggersAlreadyRun) -{ - const rpmTransactionSet ts = psm->ts; - TFI_t fi = psm->fi; - HGE_t hge = fi->hge; - HFD_t hfd = fi->hfd; - const char ** triggerNames; - const char ** triggerEVR; - const char ** triggerScripts; - const char ** triggerProgs; - int_32 * triggerFlags; - int_32 * triggerIndices; - int_32 tnt, tvt, tft; - const char * triggerPackageName; - const char * sourceName; - int numTriggers; - int rc = 0; - int i; - int skip; - - if (!hge(triggeredH, RPMTAG_TRIGGERNAME, &tnt, - (void **) &triggerNames, &numTriggers)) - return 0; - - headerNVR(sourceH, &sourceName, NULL, NULL); - - hge(triggeredH, RPMTAG_TRIGGERFLAGS, &tft, (void **) &triggerFlags, NULL); - hge(triggeredH, RPMTAG_TRIGGERVERSION, &tvt, (void **) &triggerEVR, NULL); - - for (i = 0; i < numTriggers; i++) { - int_32 tit, tst, tpt; - - if (!(triggerFlags[i] & psm->sense)) continue; - if (strcmp(triggerNames[i], sourceName)) continue; - - /* - * 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(triggerNames[i]); - if (!strncmp(triggerEVR[i], triggerNames[i], skip) && - (triggerEVR[i][skip] == '-')) - skip++; - else - skip = 0; - - if (!headerMatchesDepFlags(sourceH, triggerNames[i], - triggerEVR[i] + skip, triggerFlags[i])) - continue; - - hge(triggeredH, RPMTAG_TRIGGERINDEX, &tit, - (void **) &triggerIndices, NULL); - hge(triggeredH, RPMTAG_TRIGGERSCRIPTS, &tst, - (void **) &triggerScripts, NULL); - hge(triggeredH, RPMTAG_TRIGGERSCRIPTPROG, &tpt, - (void **) &triggerProgs, NULL); - - headerNVR(triggeredH, &triggerPackageName, NULL, NULL); - - { int arg1; - int index; - - arg1 = rpmdbCountPackages(ts->rpmdb, triggerPackageName); - if (arg1 < 0) { - rc = 1; /* XXX W2DO? same as "execution of script failed" */ - } else { - arg1 += psm->countCorrection; - index = triggerIndices[i]; - if (!triggersAlreadyRun || !triggersAlreadyRun[index]) { - rc = runScript(psm, triggeredH, "%trigger", 1, - triggerProgs + index, triggerScripts[index], - arg1, arg2); - if (triggersAlreadyRun) triggersAlreadyRun[index] = 1; - } - } - } - - triggerIndices = hfd(triggerIndices, tit); - triggerScripts = hfd(triggerScripts, tst); - triggerProgs = hfd(triggerProgs, tpt); - - /* - * Each target/source header pair can only result in a single - * script being run. - */ - break; - } - - triggerNames = hfd(triggerNames, tnt); - triggerFlags = hfd(triggerFlags, tft); - triggerEVR = hfd(triggerEVR, tvt); - - return rc; -} - -int runTriggers(PSM_t psm) -{ - const rpmTransactionSet ts = psm->ts; - TFI_t fi = psm->fi; - int numPackage; - int rc = 0; - - numPackage = rpmdbCountPackages(ts->rpmdb, fi->name) + psm->countCorrection; - if (numPackage < 0) - return 1; - - { Header triggeredH; - rpmdbMatchIterator mi; - int countCorrection = psm->countCorrection; - - psm->countCorrection = 0; - mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_TRIGGERNAME, fi->name, 0); - while((triggeredH = rpmdbNextIterator(mi)) != NULL) { - rc |= handleOneTrigger(psm, fi->h, triggeredH, numPackage, NULL); - } - - rpmdbFreeIterator(mi); - psm->countCorrection = countCorrection; - } - - return rc; -} - -int runImmedTriggers(PSM_t psm) -{ - const rpmTransactionSet ts = psm->ts; - TFI_t fi = psm->fi; - HGE_t hge = fi->hge; - HFD_t hfd = fi->hfd; - const char ** triggerNames; - int numTriggers; - int_32 * triggerIndices; - int_32 tnt, tit; - int numTriggerIndices; - char * triggersRun; - int rc = 0; - - if (!hge(fi->h, RPMTAG_TRIGGERNAME, &tnt, - (void **) &triggerNames, &numTriggers)) - return 0; - - hge(fi->h, RPMTAG_TRIGGERINDEX, &tit, (void **) &triggerIndices, - &numTriggerIndices); - triggersRun = alloca(sizeof(*triggersRun) * numTriggerIndices); - memset(triggersRun, 0, sizeof(*triggersRun) * numTriggerIndices); - - { Header sourceH = NULL; - int i; - - for (i = 0; i < numTriggers; i++) { - rpmdbMatchIterator mi; - - if (triggersRun[triggerIndices[i]]) continue; - - mi = rpmdbInitIterator(ts->rpmdb, RPMTAG_NAME, triggerNames[i], 0); - - while((sourceH = rpmdbNextIterator(mi)) != NULL) { - rc |= handleOneTrigger(psm, sourceH, fi->h, - rpmdbGetIteratorCount(mi), - triggersRun); - } - - rpmdbFreeIterator(mi); - } - } - triggerIndices = hfd(triggerNames, tit); - triggerNames = hfd(triggerNames, tnt); - return rc; -} diff --git a/lib/scriptlet.h b/lib/scriptlet.h deleted file mode 100644 index 7ca3564..0000000 --- a/lib/scriptlet.h +++ /dev/null @@ -1,41 +0,0 @@ -#ifndef H_SCRIPTLET -#define H_SCRIPTLET - -/** \file lib/scriptlet.h - */ - -#include - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Retrieve and run scriptlet from header. - * @param psm package state machine data - * @return 0 on success - */ -int runInstScript(PSM_t psm) - /*@modifies psm @*/; - -/** - * Run trigger scripts in the database that are fired by this header. - * @param psm package state machine data - * @return 0 on success, 1 on error - */ -int runTriggers(PSM_t psm) - /*@modifies psm @*/; - -/** - * Run triggers from this header that are fired by headers in the database. - * @param psm package state machine data - * @return 0 on success, 1 on error - */ -int runImmedTriggers(PSM_t psm) - /*@modifies psm @*/; - -#ifdef __cplusplus -} -#endif - -#endif /* H_SCRIPTLET */ diff --git a/lib/verify.c b/lib/verify.c index 008a222..8810f91 100644 --- a/lib/verify.c +++ b/lib/verify.c @@ -299,7 +299,7 @@ int rpmVerifyScript(const char * rootDir, Header h, FD_t scriptFd) psm->fi = fi; psm->scriptTag = RPMTAG_VERIFYSCRIPT; psm->progTag = RPMTAG_VERIFYSCRIPTPROG; - rc = runInstScript(psm); + rc = psmStage(psm, PSM_SCRIPT); freeFi(fi); fi = _free(fi); rpmtransFree(ts); diff --git a/po/POTFILES.in b/po/POTFILES.in index 48f8d50..74cc045 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -51,7 +51,6 @@ lib/rpmdb.c lib/rpminstall.c lib/rpmlead.c lib/rpmrc.c -lib/scriptlet.c lib/signature.c lib/stringbuf.c lib/transaction.c diff --git a/po/cs.po b/po/cs.po index 3e187ed..fd68f2f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-08-23 22:24+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -1886,7 +1886,7 @@ msgstr "Generuji podpis: %d\n" msgid "Could not open %s: %s\n" msgstr "Nemohu otevøít %s: %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nemohu zapsat balíèek: %s" @@ -1916,7 +1916,7 @@ msgstr "Nemohu p msgid "Unable to write payload to %s: %s\n" msgstr "Nemohu zapsat balíèek %s: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "Zapsáno: %s\n" @@ -2593,27 +2593,27 @@ msgstr " msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varování: %s ulo¾eno jako %s" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "nemohu odstranit %s - adresáø není prázdný" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s selhalo: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otevøení %s selhalo: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varování: %s vytvoøeno jako %s" @@ -3063,18 +3063,28 @@ msgstr "zdrojov msgid "source package expected, binary found\n" msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d" + +#: lib/psm.c:1090 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "balíèek: %s-%s-%s test souborù = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "spou¹tím pøípadný postinstalaèní skript\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "pøeskakuji %s - pøenos selhal - %s\n" @@ -3221,67 +3231,67 @@ msgstr "%s: Fwrite selhalo: %s\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread selhalo: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead selhalo\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: RPM v1.0 nelze podepsat\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Nemohu znovu podepsat RPM v2.0\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature selhalo\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Není dostupný ¾ádný podpis\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: writeLead selhalo: %s\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmWriteSignature selhalo: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Není dostupný ¾ádný podpis (RPM v1.0)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "NENÍ OK" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr " (CHYBÍ KLÍÈ:" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr " (NEDÙVÌRYHODNÝ KLÍÈ:" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "OK" @@ -3340,105 +3350,105 @@ msgstr "chyba(%d) p msgid "%s: cannot read header at 0x%x\n" msgstr "%s: nemohu èíst hlavièku na 0x%x" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuji \"%s\" z indexu %s.\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuji %d polo¾ek z indexu %s.\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba(%d) pøi alokaci nové instance balíèku" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "pøidávám \"%s\" do indexu %s\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "pøidávám %d polo¾ek do indexu %s.\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "nebyla nastavena dbpath" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "databázi %s pøevádím do %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáze %s ji¾ existuje" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "vytváøím adresáø %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytváøím adresáø %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "otevírám starou databázi s dbapi %d\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "otevírám novou databázi s dbapi %d\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databázi je chybný -- vynechávám." -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "nemohu pøidat záznam - pùvodnì u %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "databázi nelze zvovu vytvoøit; pùvodní databáze zùstává na svém místì\n" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "starou databázi nelze nahradit novou databází!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "pro obnovení nahraïte soubory v %s soubory z %s" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "ma¾u adresáø %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nemohu odstranit adresáø %s: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3654,16 +3664,6 @@ msgstr "Nezn msgid "Please contact rpm-list@redhat.com\n" msgstr "Zkontaktujte prosím rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n" @@ -3678,163 +3678,163 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "Velikost podpisu: %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Chybí podpis\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Starý PGP podpis\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starý (pouze interní) podpis! Jak jste to získali!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Velikost podpisu: %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Nemohu spustit pgp (%s)" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp selhalo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp selhalo pøi zápisu podpisu" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "Velikost podpisu PGP: %d\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "nemohu èíst podpis" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Pøeèteno %d bajtù PGP podpisu\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Nemohu spustit gpg" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg selhalo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg selhalo pøi zápisu podpisu" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "Velikost GPG podpisu: %d\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Pøeèteno %d bajtù GPG podpisu\n" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "Generuji PGP podpis.\n" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "Generuji GPG podpis.\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Nemohu spustit pgp. Vynechte kontroly PGP pomocí --nopgp." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Nelze spustit gpg. Vynechte kontroly GPG pomocí --nogpg." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Nemohu spustit pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "©patná %%_signature spec v souboru maker.\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vyøazen: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "pøemís»uji %s do %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "vynechávám soubor %s%s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "vynechávám soubor %s%s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "pøemís»uji %s do %s\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "pøemís»uji adresáø %s do %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "vynechávám adresáø %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n" @@ -3848,25 +3848,25 @@ msgstr "nekontrolovat soubory v bal msgid "do not execute %verifyscript (if any)" msgstr "nespou¹tìt ¾ádné etapy" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" "balíèek neobsahuje ani u¾ivatelská jména ani seznam id (nemìlo by se nikdy " "stát)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "balíèek neobsahuje ani jména skupin ani seznam id (nemìlo by se nikdy stát)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "chybí %s\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: " diff --git a/po/da.po b/po/da.po index ddf9338..5375092 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-03-07 05:17+01:00\n" "Last-Translator: K. Christiansen \n" "Language-Team: Danish/Dansk \n" @@ -1834,7 +1834,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Kan ikke åbne spec-fil %s: %s\n" @@ -1864,7 +1864,7 @@ msgstr "Kan ikke msgid "Unable to write payload to %s: %s\n" msgstr "Kan ikke åbne spec-fil %s: %s\n" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2507,27 +2507,27 @@ msgstr "%6d %s\n" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr " ... som %s\n" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "fjernelse af %s fejlede: %s" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "fjernelse af %s fejlede: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "fjernelse af %s fejlede: %s" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2954,18 +2954,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3110,67 +3120,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "IKKE OK" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "OK" @@ -3225,104 +3235,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "RPM-database eksisterer allerede" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "opretter kataloget %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "opretter kataloget %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "fjener kataloget %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3537,16 +3547,6 @@ msgstr "Ukendt system: %s\n" msgid "Please contact rpm-list@redhat.com\n" msgstr "Kontakt venligst rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3561,152 +3561,152 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp fejlede" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg fejlede" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3719,20 +3719,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/de.po b/po/de.po index 82bf1c3..857de91 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -2053,7 +2053,7 @@ msgid "Could not open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" # , c-format -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nicht möglich %s zu schreiben" @@ -2088,7 +2088,7 @@ msgstr "Nicht m msgid "Unable to write payload to %s: %s\n" msgstr "Nicht möglich %s zu schreiben" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2774,27 +2774,27 @@ msgstr " msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kann Datei %s nicht öffnen: " -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, 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:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Entfernen von %s fehlgeschlagen: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kann Datei %s nicht öffnen: " @@ -3265,19 +3265,29 @@ msgstr "Anfrage nach Paket, das die Datei besitzt" msgid "source package expected, binary found\n" msgstr "" +#: lib/psm.c:1083 +#, 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:1090 +#, 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:927 lib/psm.c:1101 +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "Keine Stufen ausführen" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n" @@ -3429,68 +3439,68 @@ msgstr "%s: msgid "%s: Fread failed: %s\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: Kann v1.0-RPM nicht signieren\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: »rpmReadSignature« fehlgeschlagen\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Keine Signatur verfügbar\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: »readLead« fehlgeschlagen\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: »rpmReadSignature« fehlgeschlagen\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 #, fuzzy msgid " (MISSING KEYS:" msgstr " (FEHLENDE SCHLüSSEL)" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3548,108 +3558,108 @@ msgid "%s: cannot read header at 0x%x\n" msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen" # FIXME -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" # FIXME -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "Fehler beim Suchen nach Paket %s\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # FIXME -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Fehler beim Löschen des Eintrags %s nach %s" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "»dbpath« ist nicht gesetzt" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "die temporäre Datenbank %s existiert schon" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" # , c-format -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3873,16 +3883,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "Ausführung des Skripts fehlgeschlagen" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "Ausführung des Skripts fehlgeschlagen" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3897,169 +3897,169 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Keine Signatur verfügbar\n" -#: lib/signature.c:165 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Alte Signatur (nur intern)! Wie bist du daran gekommen!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp fehlgeschlagen" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "nicht möglich, die Signatur zu lesen" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Konnte pgp nicht durchführen" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "pgp fehlgeschlagen" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp fehlgeschlagen beim Schreiben der Signatur" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Konnte pgp nicht durchführen" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" # , c-format -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Hole %s heraus\n" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "kann Datei %s nicht öffnen: " # , c-format -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Hole %s heraus\n" # , c-format -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Hole %s heraus\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -4074,20 +4074,20 @@ msgstr "Paket installieren" msgid "do not execute %verifyscript (if any)" msgstr "Keine Stufen ausführen" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "fehlende { nach %{" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: " diff --git a/po/es.po b/po/es.po index 877d056..17a24b9 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/eu_ES.po b/po/eu_ES.po index 69e8f98..623ba49 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/fi.po b/po/fi.po index eb4ffd4..3085849 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -1983,7 +1983,7 @@ msgstr "generoi PGP-allekirjoitus" msgid "Could not open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "%s:n kirjoitus ei onnistu" @@ -2013,7 +2013,7 @@ msgstr "%s:n kirjoitus ei onnistu" msgid "Unable to write payload to %s: %s\n" msgstr "%s:n kirjoitus ei onnistu" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2671,27 +2671,27 @@ msgstr "en voinut avata %s: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, 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:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s:n rmdir epäonnistui: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "en voinut avata tiedostoa %s: " @@ -3154,18 +3154,28 @@ msgstr "kysy pakettia, jonka omistuksessa on" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, 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:1090 +#, 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:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paketti %s-%s-%s sisältää jaettuja tiedostoja\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "älä suorita mitään vaiheita" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n" @@ -3315,68 +3325,68 @@ msgstr "%s: readLead ep msgid "%s: Fread failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead epäonnistui\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature epäonnistui\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: readLead epäonnistui\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmReadSignature epäonnistui\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 #, fuzzy msgid " (MISSING KEYS:" msgstr "(PUUTTUVAT AVAIMET)" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3432,104 +3442,104 @@ msgstr "virhe etsitt msgid "%s: cannot read header at 0x%x\n" msgstr "en voi lukea headeria %d:stä päivittäessä" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "virhe etsittäessä pakettia %s\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "virhe poistettaessa tietuetta %s %s:stä" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "dbpath ei ole asetettu" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "väliaikainen tietokanta %s on jo olemassa" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "en voi lisätä tietuetta %d:stä" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3748,16 +3758,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "skriptin ajo epäonnistui" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "skriptin ajo epäonnistui" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3772,166 +3772,166 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Ei allekirjoitusta saatavilla\n" -#: lib/signature.c:165 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp epäonnistui" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "en voinut lukea allekirjoitusta" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "En voinut ajaa pgp:tä" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "pgp epäonnistui" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "pgp ei voinut kirjoittaa allekirjoitusta" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "En voinut ajaa pgp:tä" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "en voinut avata tiedostoa %s: " -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Haen: %s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "virhe luotaessa hakemistoa %s: %s" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3946,20 +3946,20 @@ msgstr "asenna paketti" msgid "do not execute %verifyscript (if any)" msgstr "älä suorita mitään vaiheita" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "puuttuva '{' '%':n jälkeen" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:" diff --git a/po/fr.po b/po/fr.po index 24679a9..33dffe1 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,5 +1,5 @@ msgid "" -msgstr "POT-Creation-Date: 2001-02-19 11:19-0500\n" +msgstr "POT-Creation-Date: 2001-02-28 10:48-0500\n" #: build.c:25 #, fuzzy, c-format @@ -2003,7 +2003,7 @@ msgstr " --sign - gen msgid "Could not open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -2033,7 +2033,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "Unable to write payload to %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2689,27 +2689,27 @@ msgstr "impossible d'ouvrir: %s\n" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "La construction a échoué.\n" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "La construction a échoué.\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "impossible d'ouvrir: %s\n" @@ -3179,18 +3179,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "aucun package n'a été spécifié pour l'installation" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3339,67 +3349,67 @@ msgstr "impossible d'ouvrir: %s\n" msgid "%s: Fread failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3454,104 +3464,104 @@ msgstr "aucun package n'a msgid "%s: cannot read header at 0x%x\n" msgstr "aucun package n'a été spécifié pour la désinstallation" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3768,16 +3778,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3792,160 +3792,160 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr " --sign - genère une signature PGP" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "La construction a échoué.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "La construction a échoué.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr " --sign - genère une signature PGP" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr " --sign - genère une signature PGP" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "impossible d'ouvrir: %s\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "impossible d'ouvrir: %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3958,20 +3958,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/gl.po b/po/gl.po index 877d056..17a24b9 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/hu.po b/po/hu.po index 877d056..17a24b9 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/id.po b/po/id.po index 877d056..17a24b9 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/is.po b/po/is.po index fca8052..6a020be 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-08-02 13:00+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -1837,7 +1837,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Get ekki opnað spec skrána %s: %s\n" @@ -1867,7 +1867,7 @@ msgstr "Get ekki opna msgid "Unable to write payload to %s: %s\n" msgstr "Get ekki opnað spec skrána %s: %s\n" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2510,27 +2510,27 @@ msgstr "Skr msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "gat ekki búið til %s: %s\n" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Get ekki opnað spec skrána %s: %s\n" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Get ekki opnað spec skrána %s: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "gat ekki búið til %s: %s\n" @@ -2959,18 +2959,28 @@ msgstr "fyrirspurn msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3115,67 +3125,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3230,104 +3240,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3542,16 +3552,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3566,150 +3566,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "gat ekki búið til %s: %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3722,20 +3722,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/it.po b/po/it.po index 877d056..17a24b9 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/ja.po b/po/ja.po index 07ef32e..92c1dfa 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -88,7 +88,7 @@ msgstr " # build root [BuildRoot] # net share [¥Í¥Ã¥È¶¦Í­] # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë] -# $Id: ja.po,v 1.157 2001/02/27 21:30:29 jbj Exp $ +# $Id: ja.po,v 1.158 2001/02/28 15:49:25 jbj Exp $ #: rpm.c:200 rpmqv.c:356 #, c-format msgid "rpm: %s\n" @@ -1969,7 +1969,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" @@ -1999,7 +1999,7 @@ msgstr " msgid "Unable to write payload to %s: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "½ñ¤­¹þ¤ßÃæ: %s\n" @@ -2679,27 +2679,27 @@ msgstr "%d msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹" @@ -3174,18 +3174,28 @@ msgstr " msgid "source package expected, binary found\n" msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" + +#: lib/psm.c:1090 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - žÁ÷¼ºÇÔ - %s\n" @@ -3334,68 +3344,68 @@ msgstr "%s: Fwrite msgid "%s: Fread failed: %s\n" msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: v1.0 ¤Î RPM ¤Ë¤Ï½ð̾¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤­¤Þ¤»¤ó\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 #, fuzzy msgid " (MISSING KEYS:" msgstr " (¥­¡¼¤Îʶ¼º) " -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr " (¿®Íê¤Ç¤­¤Ê¤¤¸°:" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3451,106 +3461,106 @@ msgstr " msgid "%s: cannot read header at 0x%x\n" msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "" "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3766,16 +3776,6 @@ msgstr " msgid "Please contact rpm-list@redhat.com\n" msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3791,169 +3791,169 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "½ð̾¥µ¥¤¥º: %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "¸Å¤¤ PGP ½ð̾\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾! ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "½ð̾¥µ¥¤¥º: %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó(%s)" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp ¼ºÇÔ" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg ¼ºÇÔ" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" -#: lib/signature.c:389 +#: lib/signature.c:384 #, fuzzy, c-format msgid "GPG sig size: %d\n" msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, fuzzy, c-format msgid "Got %d bytes of GPG sig\n" msgstr "GPG ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "PGP ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n" "PGP ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nopgp ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£" -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n" "GPG ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nogpg ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£" -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n" @@ -3968,26 +3968,26 @@ msgstr " msgid "do not execute %verifyscript (if any)" msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" "¥Ñ¥Ã¥±¡¼¥¸¤Ï ¥æ¡¼¥¶Ì¾¤È id " "¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id " "¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:" diff --git a/po/ko.po b/po/ko.po index 877d056..17a24b9 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/no.po b/po/no.po index 1d8eab1..38ad8a0 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-08-17 20:22+02:00\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -1856,7 +1856,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" @@ -1886,7 +1886,7 @@ msgstr "Kunne ikke msgid "Unable to write payload to %s: %s\n" msgstr "Kunne ikke åpne spec fil %s: %s\n" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2531,27 +2531,27 @@ msgstr "Fil %s: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "kunne ikke opprette %s: %s\n" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "lesing feilet: %s (%d)" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "lesing feilet: %s (%d)" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "lesing feilet: %s (%d)" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "kunne ikke opprette %s: %s\n" @@ -2986,18 +2986,28 @@ msgstr "sp msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "ikke kjør noen steg" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3142,67 +3152,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3257,104 +3267,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3570,16 +3580,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3594,150 +3594,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "kunne ikke opprette %s: %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3751,20 +3751,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "ikke kjør noen steg" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "mangler andre ':' ved %s:%d" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/pl.po b/po/pl.po index f707736..3663b10 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -1964,7 +1964,7 @@ msgstr "Generowanie sygnatury: %d\n" msgid "Could not open %s: %s\n" msgstr "Nie mo¿na otworzyæ %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" @@ -1994,7 +1994,7 @@ msgstr "Nie mo msgid "Unable to write payload to %s: %s\n" msgstr "Nie mo¿na zapisaæ pakietu: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -2664,27 +2664,27 @@ msgstr "linia %d: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "ostrze¿enie: %s zapisany jako %s" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, 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:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "skasowanie katalogu %s nie powiod³o siê" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "ostrze¿enie: %s utworzony jako %s" @@ -3140,18 +3140,28 @@ msgstr "pakiet msgid "source package expected, binary found\n" msgstr "spodziewany pakiet ¼ród³owy a nie binarny" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, 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:1090 +#, 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:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "pakiet: %s-%s-%s test plików = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "%s pomijany - transmisja %s nie powiod³a siê\n" @@ -3300,67 +3310,67 @@ msgstr "%s: readLead nie powiod msgid "%s: Fread failed: %s\n" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature nie powiod³o siê\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Sygnatura nie jest dostêpna\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: readLead nie powiod³o siê\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmReadSignature nie powiod³o siê\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "NIE DOBRZE" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr " (BRAK KLUCZY:" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "(NIEWIARYGODNE KLUCZE:" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "OK" @@ -3419,105 +3429,105 @@ msgstr "b msgid "%s: cannot read header at 0x%x\n" msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "usuwanie indeksu grupy\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "usuwanie indeksu nazw\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "b³±d szukania pakietu %s\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "zmiana nazwy %s na %s\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "¶cie¿ka bazy danych nie zosta³a podana" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "odbudowywujê bazê danych w rootdir %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tymczasowa baza danych %s ju¿ istnieje" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otwieranie starej bazy danych\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otwieranie nowej bazy danych\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 #, 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" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "zamiana starej bazy na now± nie powiod³a siê!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "naprawcze zastêpowanie plików w %s plikami z %s" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3733,16 +3743,6 @@ msgstr "Nieznany system: %s\n" msgid "Please contact rpm-list@redhat.com\n" msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, 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/scriptlet.c:236 -#, 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/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n" @@ -3757,165 +3757,165 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Brak sygnatury\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Stara sygnatura PGP\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stara (tylko wewnêtrzna) sygnatura! Sk±d Ty to wzi±³e¶!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Rozmiar sygnatury: %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Nie mo¿na uruchomiæ pgp" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp nie powiod³o siê" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "zapisanie sygnatury przez pgp nie powiod³o siê" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "rozmiar sygnatury PGP: %d\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "nie mo¿na odczytaæ sygnatury" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Mam %d bajtów sygnatury PGP\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Nie mo¿na uruchomiæ gpg" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg nie powiod³o siê" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "zapisanie sygnatury przez gpg nie powiod³o siê" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "rozmiar sygnatury GPG: %d\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Mam %d bajtów sygnatury GPG\n" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "Generowanie sygnatury: %d\n" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "Generowanie sygnatury: %d\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Nie mo¿na uruchomiæ pgp. U¿yj --nopgp aby pomin±æ sprawdz. PGP" -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Nie mo¿na uruchomiæ gpg. U¿yj --nopgp aby pomin±æ sprawdz. GPG" -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Nie mo¿na uruchomiæ pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "B³êdny %%_signature spec w pliku makra.\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Ten OS nie jest wspierany: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "wy³±czanie %s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "wy³±czanie %s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "przesuwanie %s do %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "tworzenie katalogu: %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s pominiêty z powodu flagi missingok\n" @@ -3929,26 +3929,26 @@ msgstr "nie sprawdzaj plik msgid "do not execute %verifyscript (if any)" msgstr "nie wykonuj ¿adnych etapów" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" "pakiet nie specyfikuje ani nazwy u¿ytkownika ani list id (to nie powinno siê " "zdarzyæ)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê " "zdarzyæ)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "brak %s\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: " diff --git a/po/pt.po b/po/pt.po index f37deab..65d38a1 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-08-01 21:11+01:00\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -1807,7 +1807,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "não consigo abrir ficheiro spec %s: %s\n" @@ -1837,7 +1837,7 @@ msgstr "n msgid "Unable to write payload to %s: %s\n" msgstr "não consigo abrir ficheiro spec %s: %s\n" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2482,27 +2482,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "não consigo abrir ficheiro spec %s: %s\n" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "não consigo abrir ficheiro spec %s: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2930,18 +2930,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3086,67 +3096,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3205,104 +3215,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3521,16 +3531,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3545,150 +3545,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3701,20 +3701,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 0a633b5..6d65ee8 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ # Revised by Arnaldo Carvalho de Melo , 1998. # msgid "" -msgstr "POT-Creation-Date: 2001-02-19 11:19-0500\n" +msgstr "POT-Creation-Date: 2001-02-28 10:48-0500\n" # , c-format #: build.c:25 @@ -2057,7 +2057,7 @@ msgid "Could not open %s: %s\n" msgstr "Não consegui abrir: %s\n" # , c-format -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Não consegui abrir: %s\n" @@ -2092,7 +2092,7 @@ msgstr "N msgid "Unable to write payload to %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2799,29 +2799,29 @@ msgid "%s directory created with perms %04o.\n" msgstr "" # , c-format -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Não consegui abrir: %s\n" # , c-format -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "Não consegui abrir: %s\n" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "Construção falhou.\n" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "Construção falhou.\n" # , c-format -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Não consegui abrir: %s\n" @@ -3285,18 +3285,28 @@ msgstr "pesquise o pacote ao qual pertence" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "não foi passado pacote para instalação" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "não execute nenhum estágio" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3449,68 +3459,68 @@ msgstr "N msgid "%s: Fread failed: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" # , c-format -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3570,93 +3580,93 @@ msgstr "n msgid "%s: cannot read header at 0x%x\n" msgstr "não foi passado pacote para desinstalação" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" # , c-format -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "não foi passado pacote para instalação" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" # , c-format -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "reconstrua o banco de dados a partir de um banco de dados existente" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" # , c-format -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "Não consegui abrir: %s\n" # , c-format -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, 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" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, 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" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" @@ -3669,18 +3679,18 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "RPM versão %s\n" # , c-format -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "Não consegui abrir: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3918,16 +3928,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3942,124 +3942,124 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" # , c-format -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Não consegui ler o arquivo spec de %s\n" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "Construção falhou.\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" # , c-format -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Não consegui ler o arquivo spec de %s\n" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "Construção falhou.\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gere assinatura PGP" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "gere assinatura PGP" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "gere assinatura PGP" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" # , c-format -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Não consegui ler o arquivo spec de %s\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" @@ -4071,13 +4071,13 @@ msgstr "" # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "RPM versão %s\n" # , c-format -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "Não consegui abrir: %s\n" @@ -4090,7 +4090,7 @@ msgstr "N # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "RPM versão %s\n" @@ -4103,18 +4103,18 @@ msgstr "RPM vers # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "RPM versão %s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" # , c-format -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "Não consegui abrir: %s\n" @@ -4127,12 +4127,12 @@ msgstr "N # "Content-Type: text/plain; charset=ISO-8859-1\n" # "Content-Transfer-Encoding: 8-bit\n" # , c-format -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "RPM versão %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -4147,20 +4147,20 @@ msgstr "instale pacote" msgid "do not execute %verifyscript (if any)" msgstr "não execute nenhum estágio" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/ro.po b/po/ro.po index 735434a..4d2842b 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -1803,7 +1803,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1833,7 +1833,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2476,27 +2476,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2920,18 +2920,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3076,67 +3086,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3191,104 +3201,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3503,16 +3513,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3527,150 +3527,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3683,20 +3683,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index a89b712..623ba49 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-02-28 08:53-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1421 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1477 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:1021 lib/psm.c:1202 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:1085 lib/psm.c:1154 lib/psm.c:1257 lib/psm.c:1283 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:1093 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:233 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:240 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index b1e7f2c..0134665 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-08-08 01:20+0300\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -1902,7 +1902,7 @@ msgstr " msgid "Could not open %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s" @@ -1932,7 +1932,7 @@ msgstr " msgid "Unable to write payload to %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ %s: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "úÁÐÉÓÁÎ: %s\n" @@ -2610,27 +2610,27 @@ msgstr " msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "×ÎÉÍÁÎÉÅ: %s ÓÏÈÒÁÎÅÎ ËÁË %s" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "×ÎÉÍÁÎÉÅ: %s ÓÏÚÄÁÎ ËÁË %s" @@ -3080,18 +3080,28 @@ msgstr " msgid "source package expected, binary found\n" msgstr "ÏÂÎÁÒÕÖÅÎ Ä×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d" + +#: lib/psm.c:1090 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "×ÙÐÏÌÎÑÅÔÓÑ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n" @@ -3238,67 +3248,67 @@ msgstr "%s: msgid "%s: Fread failed: %s\n" msgstr "%s: ÏÛÉÂËÁ Fread: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: ÏÛÉÂËÁ readLead\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: ÏÛÉÂËÁ writeLead: %s\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: ÏÛÉÂËÁ rpmWriteSignature: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "îå Oë" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr " (ïôóõôóô÷õàô ëìàþé:" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr " (îåô äï÷åòéñ ë ëìàþáí:" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "Oë" @@ -3357,105 +3367,105 @@ msgstr " msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ." -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3671,16 +3681,6 @@ msgstr " msgid "Please contact rpm-list@redhat.com\n" msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "ÎÅÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n" @@ -3695,168 +3695,168 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ: %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "óÔÁÒÁÑ ÐÏÄÐÉÓØ PGP\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ: %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "î×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp (%s)" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "ÏÛÉÂËÁ pgp" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "ÏÛÉÂËÁ gpg" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ GPG\n" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ PGP.\n" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ GPG.\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" "î×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp. éÓÐÏÌØÚÕÊÔÅ --nopgp ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ PGP " "ÐÏÄÐÉÓÅÊ." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg. éÓÐÏÌØÚÕÊÔÅ --nogpg ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ GPG " "ÐÏÄÐÉÓÅÊ." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "ïó ÉÓËÌÀÞÅÎÁ: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "ÉÓËÌÀÞÁÀ ÆÁÊÌ %s%s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "ÉÓËÌÀÞÁÀ ÆÁÊÌ %s%s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n" @@ -3870,22 +3870,22 @@ msgstr " msgid "do not execute %verifyscript (if any)" msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ×" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÄÏÌÖÎÏ ÂÙÔØ)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÇÒÕÐÐ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÄÏÌÖÎÏ ÂÙÔØ)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: " diff --git a/po/sk.po b/po/sk.po index 9231db7..d5b04d0 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -1970,7 +1970,7 @@ msgstr "Vytv msgid "Could not open %s: %s\n" msgstr "Otvorenie %s zlyhalo\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" @@ -2000,7 +2000,7 @@ msgstr "Nie je mo msgid "Unable to write payload to %s: %s\n" msgstr "Nie je mo¾né zapísa» balík: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "Zapísané: %s\n" @@ -2669,27 +2669,27 @@ msgstr "riadok %d: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varovanie: %s uchovaný ako %s" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, 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:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir %s zlyhalo: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varovanie: %s vytvorené ako %s" @@ -3143,18 +3143,28 @@ msgstr "zdrojov msgid "source package expected, binary found\n" msgstr "oèakávaný zdrojový balík, nájdený binárny" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "vykonanie skriptu zlyhalo" + +#: lib/psm.c:1090 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "vykonanie skriptu zlyhalo" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "balík: %s-%s-%s test súborov = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "%s vynechané - prenos zlyhal - %s\n" @@ -3303,67 +3313,67 @@ msgstr "%s: readLead zlyhalo\n" msgid "%s: Fread failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead zlyhalo\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: Nie je mo¾né podpísa» v1.0 RPM\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature zlyhalo\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Podpis nie je k dispozícii\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: readLead zlyhalo\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmReadSignature zlyhalo\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "NIE JE V PORIADKU" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr " (CHÝBAJÚCE K¥ÚÈE):" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr " (NEDÔVERUJE SA K¥ÚÈOM: " -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "V PORIADKU" @@ -3422,105 +3432,105 @@ msgstr "chyba pri h msgid "%s: cannot read header at 0x%x\n" msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstraòuje sa index skupín\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstraòuje sa index názvov\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "chyba pri hµadaní balíka %s\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "premenováva sa %s na %s\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "nebola nastavená ¾iadna dbpath" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "znovu sa vytvára databáza v adresári %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "doèasná databáza %s u¾ existuje" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "otvára sa stará databáza\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "otvára sa nová databáza\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "nie je mo¾né prida» záznam pôvodne na %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 #, fuzzy msgid "failed to rebuild database: original database remains in place\n" msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "nepodarilo sa nahradi» starú databázu novou!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, fuzzy, c-format msgid "replace files in %s with files from %s to recover" msgstr "nahradí súbory v %s súbormi z %s kvôli obnove" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "nepodarilo sa odstráni» adresár %s: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3736,16 +3746,6 @@ msgstr "Nezn msgid "Please contact rpm-list@redhat.com\n" msgstr "Kontaktujte prosím rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "vykonanie skriptu zlyhalo" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "vykonanie skriptu zlyhalo" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n" @@ -3760,165 +3760,165 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "Veµkos» podpisu: %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Podpis nie je k dispozícii\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Starý PGP podpis\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Starý (iba interný) podpis! Ako ste sa k tomu dostali?!" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Veµkos» podpisu: %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Nie je mo¾né spusti» pgp" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp zlyhalo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp sa nepodarilo zapísa» podpis" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "Veµkos» PGP podpisu: %d\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "nie je mo¾né preèíta» podpis" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Nie je mo¾né spusti» gpg" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg zlyhalo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg sa nepodarilo zapísa» podpis" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "Veµkos» GPG podpisu: %d\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Preèítaný GPG podpis obsahuje %d bajtov\n" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Nie je mo¾né spusti» pgp. Pou¾ite --nopgp pre vynechanie PGP kontrol." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Nie je mo¾né spusti» gpg. Pou¾ite --nogpg pre vynechanie GPG kontrol." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Nie je mo¾né spusti» pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy 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:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je vynechaný: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "vynecháva sa %s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "vynecháva sa %s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "presúva sa %s do %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "vytvára sa adresár %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s vynechané kvôli príznaku missingok\n" @@ -3933,26 +3933,26 @@ msgstr "zobrazi msgid "do not execute %verifyscript (if any)" msgstr "nevykona» ¾iadne etapy" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" "v balíku chýba tak meno pou¾ívateµa, ako aj zoznamy identifikácií (nemalo by " "sa nikdy sta»)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa " "nikdy sta»)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "chýbajúce %s\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: " diff --git a/po/sl.po b/po/sl.po index 4ad99a2..899001c 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.142 2001/02/27 21:30:31 jbj Exp $ +# $Id: sl.po,v 1.143 2001/02/28 15:49:30 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -1955,7 +1955,7 @@ msgstr "Izdelujemo podpis: %d\n" msgid "Could not open %s: %s\n" msgstr "Ni mo¾no odpreti %s: %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ni mo¾no zapisati paketa: %s" @@ -1985,7 +1985,7 @@ msgstr "Ikone %s ni mo msgid "Unable to write payload to %s: %s\n" msgstr "Ni mo¾no zapisati paketa %s: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "Zapisano: %s\n" @@ -2664,27 +2664,27 @@ msgstr "vrstica %d: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "opozorilo: %s shranjen kot %s" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, 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:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "odstranitev imenika %s je bila neuspe¹na: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "opozorilo: %s ustvarjen kot %s" @@ -3140,18 +3140,28 @@ msgstr "izvorni paket ne vsebuje datoteke .spec" msgid "source package expected, binary found\n" msgstr "prièakovan je bil izvorni paket, najden binarni" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, 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:1090 +#, 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:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paket: %s-%s-%s datoteke test = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n" @@ -3299,67 +3309,67 @@ msgstr "%s: pisanje Fwrite je bilo neuspe msgid "%s: Fread failed: %s\n" msgstr "%s: branje Fread je bilo neuspe¹no: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead je bil neuspe¹en\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: Podpis RPM v1.0 ni mo¾en\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Sprememba podpisa RPM v2.0 ni mo¾na\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature je bil neuspe¹en\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Podpis ni na voljo\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: writeLead je bil neuspe¹en: %s\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmWriteSignature je bilo neuspe¹no: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Podpis ni na voljo (RPM v1.0)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "NI DOBRO" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr " (MANJKAJOÈI KLJUÈI:" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr " (NEPREVERJENI KLJUÈI:" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "V REDU" @@ -3417,107 +3427,107 @@ msgstr "napaka(%d) pri msgid "%s: cannot read header at 0x%x\n" msgstr "%s: ni mo¾no prebrati glave pri 0x%x" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "odstranjevanje \"%s\" iz kazala %s.\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "odstranjevanje %d vnosov iz kazala %s\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "napaka(%d) pri iskanju paketa %s\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, fuzzy, c-format msgid "adding \"%s\" to %s index.\n" msgstr "dodajanje \"%s\" v kazalo %s.\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "dodajanje %d vnosov v kazalo %s.\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "dbpath ni nastavljena" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "zaèasna podatkovna zbirka %s ¾e obstaja" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "ustvarjanje imenika: %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "ustvarjanje imenika: %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "odpiranje stare podatkovne zbirke\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno." -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "zapisa ni mo¾no dodati na %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 #, 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" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, 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" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "odstranjevanje imenika: %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspe¹na odstranitev imenika %s: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3733,16 +3743,6 @@ msgstr "Neznan sistem: %s\n" msgid "Please contact rpm-list@redhat.com\n" msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, 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/scriptlet.c:236 -#, 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/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n" @@ -3757,163 +3757,163 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "Dol¾. podpisa : %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Podpis manjka\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Stari podpis PGP\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Dol¾. podpisa : %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Ni mo¾no pognati pgp (%s)" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp je bil neuspe¹en" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp je bil neuspe¹en pri zapisu podpisa" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "Dol¾. podpisa PGP: %d\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "branje podpisa je bilo neuspe¹no" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Prebrano %d bajtov podpisa PGP\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Ni mo¾no pognati gpg" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg je bil neuspe¹en" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg je boil neuspe¹en pri zapisu podpisa" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "Dol¾. podpisa GnuPG: %d\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Prebrano %d bajtov podpisa GnuPG\n" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "Ustvarjanje podpisa s PGP.\n" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "Ustvarjanje podpisa z GnuPG.\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Ni mo¾no pognati pgp. Preverjanja PGP lahko preskoèite z --nopgp" -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Ni mo¾no pognati gpg. Preverjanja GnuPG lahko preskoèite z --nogpg" -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Ni mo¾no pognati pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "Neveljaven %%_signature v makro-datoteki.\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS je izkljuèen: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "premikanje %s v %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "izkljuèevanje datoteke %s%s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "premikanje %s v %s\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "premiokanje imenika %s v %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "izkljuèevanje imenika %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n" @@ -3927,24 +3927,24 @@ msgstr "brez preverjanja datotek v paketu" msgid "do not execute %verifyscript (if any)" msgstr "brez izvajanja katerekoli stopen izgradnje" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" "v paketu manjka tako seznam uporabnikov kot identitet (to se ne sme zgoditi)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "v paketu manjka tako seznam skupin kot identitet (to se ne sme zgoditi)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "manjka %s\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: " diff --git a/po/sr.po b/po/sr.po index 1af33c3..fdb49cd 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" "From: Erik Troan \n" @@ -1955,7 +1955,7 @@ msgstr "napravi PGP potpis" msgid "Could not open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Ne mogu da upi¹em %s" @@ -1985,7 +1985,7 @@ msgstr "Ne mogu da upi msgid "Unable to write payload to %s: %s\n" msgstr "Ne mogu da upi¹em %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2643,27 +2643,27 @@ msgstr "neuspelo otvaranje %s: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, 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:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "neuspela komanda rmdir %s: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "Ne mogu da otvorim datoteku %s: " @@ -3124,18 +3124,28 @@ msgstr "upit nad paketom koji ima " msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, 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:1090 +#, 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:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n" @@ -3285,68 +3295,68 @@ msgstr "%s: Neuspeo 'readLead'\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: Ne mogu da potpi¹em v1.0 RPM\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: Neuspelo 'rpmReadSignature'\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: Neuspeo 'readLead'\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: Neuspelo 'rpmReadSignature'\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 #, fuzzy msgid " (MISSING KEYS:" msgstr " (NEDOSTAJUÆI KLJUÈEVI)" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3402,104 +3412,104 @@ msgstr "gre msgid "%s: cannot read header at 0x%x\n" msgstr "ne mogu da proèitam zaglavlje na %d za proveru" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "gre¹ka kod potrage za paketom %s\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "gre¹ka uklanjanja sloga %s u %s" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "dbpath nije odreðen" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "privremena baza podataka %s veæ postoji" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "ne mogu da dodam slog originalno na %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3718,16 +3728,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "neuspelo izvr¹avanje skripta" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "neuspelo izvr¹avanje skripta" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3742,166 +3742,166 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Potpis nije na raspolaganju\n" -#: lib/signature.c:165 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "napravi PGP potpis" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Stari (interni) potpis! Odakle vam!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Ne mogu da izvr¹im PGP" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "PGP omanuo" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "PGP nije uspeo da zapi¹e potpis" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "ne mogu da proèitam potpis" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Ne mogu da izvr¹im PGP" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "PGP omanuo" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "PGP nije uspeo da zapi¹e potpis" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "napravi PGP potpis" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "napravi PGP potpis" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Ne mogu da izvr¹im PGP" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "Ne mogu da otvorim datoteku %s: " -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "Pribavljam %s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "gre¹ka kod kreiranja direktorijuma %s: %s" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3916,20 +3916,20 @@ msgstr "instaliraj paket" msgid "do not execute %verifyscript (if any)" msgstr "nemoj izvr¹iti nijednu fazu" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "nedostaje { posle %" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: " diff --git a/po/sv.po b/po/sv.po index 6135671..77511e5 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: 2000-10-09 22:31+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -1882,7 +1882,7 @@ msgstr "Genererar signatur: %d\n" msgid "Could not open %s: %s\n" msgstr "Kunde inte öppna %s: %s\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "Kunde inte skriva paket: %s" @@ -1912,7 +1912,7 @@ msgstr "Kan inte l msgid "Unable to write payload to %s: %s\n" msgstr "Kan inte skriva paket %s: %s" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "Skrev: %s\n" @@ -2588,27 +2588,27 @@ msgstr "rad %d: %s" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "varning: %s sparades som %s" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "kan inte ta bort %s - katalogen är inte tom" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "rmdir av %s misslyckades: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "misslyckades öppna %s: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "varning: %s skapades som %s" @@ -3061,18 +3061,28 @@ msgstr "k msgid "source package expected, binary found\n" msgstr "källpaket förväntades, fann binärpaket" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d" + +#: lib/psm.c:1090 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d" + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "paket: %s-%s-%s filtest = %d\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "kör (eventuellt) postinstallationsskript\n" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "hoppar över %s - överföring misslyckades - %s\n" @@ -3219,67 +3229,67 @@ msgstr "%s: Fwrite misslyckades: %s\n" msgid "%s: Fread failed: %s\n" msgstr "%s: Fread misslyckades: %s\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: readLead misslyckades\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: Kan inte signera v1.0 RPM\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: Kan inte signera om v2.0 RPM\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: rpmReadSignature misslyckades\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ingen signatur tillgänglig\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: writeLead misslyckades: %s\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: rpmWriteSignature misslyckades: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "EJ OK" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr " (SAKNADE NYCKLAR:" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr " (EJ BETRODDA NYCKLAR:" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "OK" @@ -3338,104 +3348,104 @@ msgstr "fel(%d) n msgid "%s: cannot read header at 0x%x\n" msgstr "%s: kan inte läsa huvud vid 0x%x" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "tar bort \"%s\" från %s-indexet.\n" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "tar bort %d poster från %s-indexet.\n" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "fel(%d) vid allokering av ny paketinstans" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "lägger till \"%s\" till %s-indexet.\n" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "lägger till %d poster till %s-indexet.\n" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "ingen dbpath har satts" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "bygger om databas %s till %s\n" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "tillfällig databas %s existerar redan" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "skapar katalog %s\n" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "skapar katalog %s\n" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "öppnar gammal databas med dbapi %d\n" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "öppnar ny databas med dbapi %d\n" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "post nummer %d i databasen är felaktig -- hoppar över den." -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "kan inte lägga till post ursprungligen vid %d" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "kunde inte ersätta gammal databas med ny databas!\n" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "byt ut filer i %s med filer från %s för att återställa" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "tar bort katalog %s\n" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "kunde inte ta bort katalogen %s: %s\n" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3651,16 +3661,6 @@ msgstr "Ok msgid "Please contact rpm-list@redhat.com\n" msgstr "Var god kontakta rpm-list@redhat.com\n" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d" - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n" @@ -3675,163 +3675,163 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "Signaturstorlek : %d\n" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "Ingen signatur\n" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "Gammal PGP-signatur\n" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Gammal (endast intern) signatur! Hur fick du tag i den!?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, fuzzy, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "Signaturstorlek : %d\n" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "Kunde inte köra pgp (%s)" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "pgp misslyckades" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "pgp misslyckades att skriva en signatur" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "PGP signaturstorlek: %d\n" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "kan inte läsa signaturen" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Fick %d byte PGPsignatur\n" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "Kunde inte köra gpg" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "gpg misslyckades" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "gpg kunde inte skriva signatur" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "GPG signaturstorlek: %d\n" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Fick %d byte GPGsignatur\n" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "Genererar signatur med PGP.\n" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "Genererar signatur med GPG.\n" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "Kunde inte köra pgp. Använd --nopgp för att hoppa över PGPkontroll." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "Kunde inte köra gpg. Använd --nogpg för att hoppa över GPGkontroll." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "Kunde inte köra pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 #, fuzzy msgid "Invalid %%_signature spec in macro file\n" msgstr "Felaktig %%_signature spec i makrofil.\n" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "OS är uteslutet: %s" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "flyttar %s till %s\n" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "hoppar över %s%s\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "hoppar över %s%s\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "flyttar %s till %s\n" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "flyttar katalogen %s till %s\n" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "hoppar över katalogen %s\n" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s överhoppad på grund av missingok-flagga\n" @@ -3845,24 +3845,24 @@ msgstr "verifiera inte filerna i paketet" msgid "do not execute %verifyscript (if any)" msgstr "utför inga steg" -#: lib/verify.c:239 +#: lib/verify.c:249 #, fuzzy msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" "paket saknar både användarnamn och id-listor (detta borde aldrig inträffa)" -#: lib/verify.c:257 +#: lib/verify.c:267 #, fuzzy msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" "paket saknar både gruppnamn och id-listor (detta borde aldrig inträffa)" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "saknas %s\n" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "Ouppfyllda beroenden för %s-%s-%s: " diff --git a/po/tr.po b/po/tr.po index 9996697..1478f10 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1996,7 +1996,7 @@ msgstr "PGP-imzas msgid "Could not open %s: %s\n" msgstr "%s 'ye eriþimde hata oluþtu\n" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, fuzzy, c-format msgid "Unable to write package: %s\n" msgstr "%s 'nin yazýlmasý mümkün deðil" @@ -2026,7 +2026,7 @@ msgstr "%s 'nin yaz msgid "Unable to write payload to %s: %s\n" msgstr "%s 'nin yazýlmasý mümkün deðil" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2685,27 +2685,27 @@ msgstr "%s a msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, fuzzy, c-format msgid "%s saved as %s\n" msgstr "%s dosyasý açýlamýyor: " -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, fuzzy, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "%s silinemedi - belirtilen dizin boþ deðil" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, fuzzy, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, fuzzy, c-format msgid "%s unlink of %s failed: %s\n" msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, fuzzy, c-format msgid "%s created as %s\n" msgstr "%s dosyasý açýlamýyor: " @@ -3170,18 +3170,28 @@ msgstr " isimli dosyay msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "betik (script) çalýþtýrýlamadý " + +#: lib/psm.c:1090 +#, fuzzy, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "betik (script) çalýþtýrýlamadý " + +#: lib/psm.c:1432 lib/psm.c:1613 #, fuzzy, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, fuzzy, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "adýmlarýn hiçbirini çalýþtýrmaz" -#: lib/psm.c:998 +#: lib/psm.c:1504 #, fuzzy msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n" @@ -3331,68 +3341,68 @@ msgstr "%s: 'readLead' hata verdi\n" msgid "%s: Fread failed: %s\n" msgstr "%s: 'readLead' hata verdi\n" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "%s: 'readLead' hata verdi\n" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "%s: v1.0-RPM (eski sürüm) imzalanamýyor\n" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "%s: v2.0-RPM (eski sürüm) yeniden imzalanamýyor\n" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: 'rpmReadSignature' hata verdi\n" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "%s: Ýmza bulunmuyor\n" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, fuzzy, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: 'readLead' hata verdi\n" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: 'rpmReadSignature' hata verdi\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 #, fuzzy msgid " (MISSING KEYS:" msgstr " (EKSÝK ANAHTARLAR)" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3448,104 +3458,104 @@ msgstr "%s pakedi aran msgid "%s: cannot read header at 0x%x\n" msgstr "%d kaydýndan baþlýk bilgisi okunamadý" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, fuzzy, c-format msgid "removing %d entries from %s index.\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, fuzzy, c-format msgid "error(%d) allocating new package instance\n" msgstr "%s pakedi aranýrken hata oluþtu\n" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, fuzzy, c-format msgid "adding %d entries to %s index.\n" msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "dbpath deðeri girilmemiþ" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, fuzzy, c-format msgid "rebuilding database %s into %s\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, fuzzy, c-format msgid "temporary database %s already exists\n" msgstr "geçici veritabaný %s mevcut" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, fuzzy, c-format msgid "creating directory %s\n" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, fuzzy, c-format msgid "creating directory %s: %s\n" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, fuzzy, c-format msgid "opening old database with dbapi %d\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, fuzzy, c-format msgid "opening new database with dbapi %d\n" msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, fuzzy, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, fuzzy, c-format msgid "cannot add record originally at %d\n" msgstr "%d de yer alan kayýt saklayamýyor" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, fuzzy, c-format msgid "removing directory %s\n" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, fuzzy, c-format msgid "failed to remove directory %s: %s\n" msgstr "%s açýlamadý: %s" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3764,16 +3774,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "betik (script) çalýþtýrýlamadý " - -#: lib/scriptlet.c:236 -#, fuzzy, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "betik (script) çalýþtýrýlamadý " - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3788,166 +3788,166 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 #, fuzzy msgid "No signature\n" msgstr "%s: Ýmza bulunmuyor\n" -#: lib/signature.c:165 +#: lib/signature.c:160 #, fuzzy msgid "Old PGP signature\n" msgstr "PGP-imzasý yaratýr" -#: lib/signature.c:176 +#: lib/signature.c:171 #, fuzzy msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Eski imza !!! Eee bunu nasýl baþardýn bakiiim ?" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, fuzzy, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "PGP çalýþtýrýlamadý" -#: lib/signature.c:300 +#: lib/signature.c:295 #, fuzzy msgid "pgp failed\n" msgstr "PGP hata verdi" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 #, fuzzy msgid "pgp failed to write signature\n" msgstr "PGP imzasýnýn yazýlmasý sýrasýnda hata oluþtu" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 #, fuzzy msgid "unable to read the signature\n" msgstr "imzayý okumak mümkün olmadý" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 #, fuzzy msgid "Couldn't exec gpg\n" msgstr "PGP çalýþtýrýlamadý" -#: lib/signature.c:377 +#: lib/signature.c:372 #, fuzzy msgid "gpg failed\n" msgstr "PGP hata verdi" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 #, fuzzy msgid "gpg failed to write signature\n" msgstr "PGP imzasýnýn yazýlmasý sýrasýnda hata oluþtu" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 #, fuzzy msgid "Generating signature using PGP.\n" msgstr "PGP-imzasý yaratýr" -#: lib/signature.c:439 +#: lib/signature.c:434 #, fuzzy msgid "Generating signature using GPG.\n" msgstr "PGP-imzasý yaratýr" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 #, fuzzy msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn." -#: lib/signature.c:653 +#: lib/signature.c:648 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn." -#: lib/signature.c:741 +#: lib/signature.c:736 #, fuzzy msgid "Couldn't exec pgp\n" msgstr "PGP çalýþtýrýlamadý" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý" -#: lib/signature.c:790 +#: lib/signature.c:785 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, fuzzy, c-format msgid "%5d exclude %s\n" msgstr "%s alýnýyor\n" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, fuzzy, c-format msgid "%5d relocate %s -> %s\n" msgstr "%s dosyasý açýlamýyor: " -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, fuzzy, c-format msgid "excluding multilib path %s%s\n" msgstr "%s alýnýyor\n" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, fuzzy, c-format msgid "excluding %s %s\n" msgstr "%s alýnýyor\n" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, fuzzy, c-format msgid "relocating directory %s to %s\n" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, fuzzy, c-format msgid "excluding directory %s\n" msgstr "%s dizinin oluþturulmasýnda hata: %s" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3962,20 +3962,20 @@ msgstr "paket y msgid "do not execute %verifyscript (if any)" msgstr "adýmlarýn hiçbirini çalýþtýrmaz" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, fuzzy, c-format msgid "missing %s" msgstr "% den sonra eksik {" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "%s-%s-%s 'nin baðýmlýlýk sorunlarý: " diff --git a/po/uk.po b/po/uk.po index 877d056..17a24b9 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/wa.po b/po/wa.po index 877d056..17a24b9 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/zh.po b/po/zh.po index 877d056..17a24b9 100644 --- a/po/zh.po +++ b/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index 877d056..17a24b9 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.1\n" -"POT-Creation-Date: 2001-02-19 11:19-0500\n" +"POT-Creation-Date: 2001-02-28 10:48-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1808,7 +1808,7 @@ msgstr "" msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:484 lib/psm.c:1304 +#: build/pack.c:484 lib/psm.c:1830 #, c-format msgid "Unable to write package: %s\n" msgstr "" @@ -1838,7 +1838,7 @@ msgstr "" msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:566 lib/psm.c:1360 +#: build/pack.c:566 lib/psm.c:1886 #, c-format msgid "Wrote: %s\n" msgstr "" @@ -2481,27 +2481,27 @@ msgstr "" msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1344 lib/fsm.c:1461 +#: lib/fsm.c:1345 lib/fsm.c:1462 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1486 +#: lib/fsm.c:1487 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1491 +#: lib/fsm.c:1492 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1500 +#: lib/fsm.c:1501 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1517 +#: lib/fsm.c:1518 #, c-format msgid "%s created as %s\n" msgstr "" @@ -2925,18 +2925,28 @@ msgstr "" msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:927 lib/psm.c:1101 +#: lib/psm.c:1083 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" +msgstr "" + +#: lib/psm.c:1090 +#, c-format +msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" +msgstr "" + +#: lib/psm.c:1432 lib/psm.c:1613 #, c-format msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" #. XXX WTFO? erase failures are not cause for stopping. -#: lib/psm.c:991 lib/psm.c:1059 lib/psm.c:1151 lib/psm.c:1176 +#: lib/psm.c:1496 lib/psm.c:1565 lib/psm.c:1666 lib/psm.c:1692 #, c-format msgid "%s: running %s script(s) (if any)\n" msgstr "" -#: lib/psm.c:998 +#: lib/psm.c:1504 msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" msgstr "" @@ -3081,67 +3091,67 @@ msgstr "" msgid "%s: Fread failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:121 lib/rpmchecksig.c:253 #, c-format msgid "%s: readLead failed\n" msgstr "" -#: lib/rpmchecksig.c:142 +#: lib/rpmchecksig.c:126 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:146 +#: lib/rpmchecksig.c:130 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:155 lib/rpmchecksig.c:289 +#: lib/rpmchecksig.c:139 lib/rpmchecksig.c:269 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "" -#: lib/rpmchecksig.c:159 lib/rpmchecksig.c:294 +#: lib/rpmchecksig.c:143 lib/rpmchecksig.c:274 #, c-format msgid "%s: No signature available\n" msgstr "" -#: lib/rpmchecksig.c:192 +#: lib/rpmchecksig.c:176 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:198 +#: lib/rpmchecksig.c:182 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:259 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:443 +#: lib/rpmchecksig.c:423 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:444 lib/rpmchecksig.c:458 +#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:446 lib/rpmchecksig.c:460 +#: lib/rpmchecksig.c:426 lib/rpmchecksig.c:440 msgid ") " msgstr "" -#: lib/rpmchecksig.c:447 lib/rpmchecksig.c:461 +#: lib/rpmchecksig.c:427 lib/rpmchecksig.c:441 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:449 lib/rpmchecksig.c:463 +#: lib/rpmchecksig.c:429 lib/rpmchecksig.c:443 msgid ")" msgstr "" -#: lib/rpmchecksig.c:457 +#: lib/rpmchecksig.c:437 msgid "OK" msgstr "" @@ -3196,104 +3206,104 @@ msgstr "" msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: lib/rpmdb.c:1699 +#: lib/rpmdb.c:1698 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: lib/rpmdb.c:1708 +#: lib/rpmdb.c:1707 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: lib/rpmdb.c:1862 +#: lib/rpmdb.c:1890 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: lib/rpmdb.c:1936 +#: lib/rpmdb.c:1964 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: lib/rpmdb.c:1945 +#: lib/rpmdb.c:1973 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: lib/rpmdb.c:2286 +#: lib/rpmdb.c:2342 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: lib/rpmdb.c:2312 +#: lib/rpmdb.c:2368 msgid "no dbpath has been set" msgstr "" -#: lib/rpmdb.c:2337 +#: lib/rpmdb.c:2393 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: lib/rpmdb.c:2341 +#: lib/rpmdb.c:2397 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: lib/rpmdb.c:2347 +#: lib/rpmdb.c:2403 #, c-format msgid "creating directory %s\n" msgstr "" -#: lib/rpmdb.c:2349 +#: lib/rpmdb.c:2405 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: lib/rpmdb.c:2356 +#: lib/rpmdb.c:2412 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2367 +#: lib/rpmdb.c:2423 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: lib/rpmdb.c:2390 +#: lib/rpmdb.c:2446 #, c-format msgid "record number %d in database is bad -- skipping.\n" msgstr "" -#: lib/rpmdb.c:2429 +#: lib/rpmdb.c:2485 #, c-format msgid "cannot add record originally at %d\n" msgstr "" -#: lib/rpmdb.c:2447 +#: lib/rpmdb.c:2503 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: lib/rpmdb.c:2455 +#: lib/rpmdb.c:2511 msgid "failed to replace old database with new database!\n" msgstr "" -#: lib/rpmdb.c:2457 +#: lib/rpmdb.c:2513 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: lib/rpmdb.c:2467 +#: lib/rpmdb.c:2523 #, c-format msgid "removing directory %s\n" msgstr "" -#: lib/rpmdb.c:2469 +#: lib/rpmdb.c:2525 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: lib/rpminstall.c:147 +#: lib/rpminstall.c:148 msgid "Preparing..." msgstr "" @@ -3508,16 +3518,6 @@ msgstr "" msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/scriptlet.c:229 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "" - -#: lib/scriptlet.c:236 -#, c-format -msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "" - #: lib/signature.c:125 msgid "file is not regular -- skipping size check\n" msgstr "" @@ -3532,150 +3532,150 @@ msgstr "" msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:161 +#: lib/signature.c:156 msgid "No signature\n" msgstr "" -#: lib/signature.c:165 +#: lib/signature.c:160 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:176 +#: lib/signature.c:171 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:230 +#: lib/signature.c:225 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:289 +#: lib/signature.c:284 #, c-format msgid "Couldn't exec pgp (%s)\n" msgstr "" -#: lib/signature.c:300 +#: lib/signature.c:295 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:307 +#: lib/signature.c:302 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:312 +#: lib/signature.c:307 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:323 lib/signature.c:400 +#: lib/signature.c:318 lib/signature.c:395 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:328 +#: lib/signature.c:323 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:366 lib/signature.c:712 +#: lib/signature.c:361 lib/signature.c:707 msgid "Couldn't exec gpg\n" msgstr "" -#: lib/signature.c:377 +#: lib/signature.c:372 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:384 +#: lib/signature.c:379 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:389 +#: lib/signature.c:384 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:405 +#: lib/signature.c:400 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:433 +#: lib/signature.c:428 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:439 +#: lib/signature.c:434 msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:519 lib/signature.c:580 +#: lib/signature.c:514 lib/signature.c:575 msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" msgstr "" -#: lib/signature.c:653 +#: lib/signature.c:648 msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" msgstr "" -#: lib/signature.c:741 +#: lib/signature.c:736 msgid "Couldn't exec pgp\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:745 lib/signature.c:798 +#: lib/signature.c:740 lib/signature.c:793 msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:778 +#: lib/signature.c:773 msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:790 +#: lib/signature.c:785 msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/transaction.c:403 +#: lib/transaction.c:404 msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:406 +#: lib/transaction.c:407 #, c-format msgid "%5d exclude %s\n" msgstr "" -#: lib/transaction.c:409 +#: lib/transaction.c:410 #, c-format msgid "%5d relocate %s -> %s\n" msgstr "" -#: lib/transaction.c:483 +#: lib/transaction.c:484 #, c-format msgid "excluding multilib path %s%s\n" msgstr "" -#: lib/transaction.c:532 +#: lib/transaction.c:533 #, c-format msgid "excluding %s %s\n" msgstr "" -#: lib/transaction.c:539 +#: lib/transaction.c:540 #, c-format msgid "relocating %s to %s\n" msgstr "" -#: lib/transaction.c:611 +#: lib/transaction.c:612 #, c-format msgid "relocating directory %s to %s\n" msgstr "" -#: lib/transaction.c:616 +#: lib/transaction.c:617 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:740 +#: lib/transaction.c:741 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" @@ -3688,20 +3688,20 @@ msgstr "" msgid "do not execute %verifyscript (if any)" msgstr "" -#: lib/verify.c:239 +#: lib/verify.c:249 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:257 +#: lib/verify.c:267 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:319 +#: lib/verify.c:340 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:400 +#: lib/verify.c:421 #, c-format msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" diff --git a/popt/po/cs.po b/popt/po/cs.po index a3edc24..892c91f 100644 --- a/popt/po/cs.po +++ b/popt/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-08-23 22:24+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/da.po b/popt/po/da.po index 9e2db83..d22c4cb 100644 --- a/popt/po/da.po +++ b/popt/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-03-07 05:17+01:00\n" "Last-Translator: K. Christiansen \n" "Language-Team: Danish/Dansk \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/de.po b/popt/po/de.po index f810615..ae68916 100644 --- a/popt/po/de.po +++ b/popt/po/de.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/es.po b/popt/po/es.po index f810615..ae68916 100644 --- a/popt/po/es.po +++ b/popt/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/eu_ES.po b/popt/po/eu_ES.po index a90e3c1..3687099 100644 --- a/popt/po/eu_ES.po +++ b/popt/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/fi.po b/popt/po/fi.po index f810615..ae68916 100644 --- a/popt/po/fi.po +++ b/popt/po/fi.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/fr.po b/popt/po/fr.po index f810615..ae68916 100644 --- a/popt/po/fr.po +++ b/popt/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/gl.po b/popt/po/gl.po index e0b0b4d..8696d51 100644 --- a/popt/po/gl.po +++ b/popt/po/gl.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-01-06 20:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -99,10 +99,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/hu.po b/popt/po/hu.po index 267ed76..a0f69a7 100644 --- a/popt/po/hu.po +++ b/popt/po/hu.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-08-03 23:26+0200\n" "Last-Translator: László Németh \n" "Language-Team: Hungarian\n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/id.po b/popt/po/id.po index f810615..ae68916 100644 --- a/popt/po/id.po +++ b/popt/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/is.po b/popt/po/is.po index 9005a7d..faa18c6 100644 --- a/popt/po/is.po +++ b/popt/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-06-16 02:12+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/it.po b/popt/po/it.po index f810615..ae68916 100644 --- a/popt/po/it.po +++ b/popt/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/ja.po b/popt/po/ja.po index f810615..ae68916 100644 --- a/popt/po/ja.po +++ b/popt/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/ko.po b/popt/po/ko.po index f810615..ae68916 100644 --- a/popt/po/ko.po +++ b/popt/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/no.po b/popt/po/no.po index 004f9b6..f83d266 100644 --- a/popt/po/no.po +++ b/popt/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-06-21 16:11+02:00\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/pl.po b/popt/po/pl.po index f810615..ae68916 100644 --- a/popt/po/pl.po +++ b/popt/po/pl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/pt.po b/popt/po/pt.po index 83edf25..621a00a 100644 --- a/popt/po/pt.po +++ b/popt/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-06-22 01:02+01:00\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/pt_BR.po b/popt/po/pt_BR.po index f810615..ae68916 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.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/ro.po b/popt/po/ro.po index 2f2bf37..f36a58d 100644 --- a/popt/po/ro.po +++ b/popt/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-06-14 23:23+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -91,10 +91,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "Sintaxa:" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "[OPTIUNE...]" diff --git a/popt/po/ru.po b/popt/po/ru.po index 3cffcd4..5ff7be3 100644 --- a/popt/po/ru.po +++ b/popt/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-08-13 21:00+0300\n" "Last-Translator: Leon Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sk.po b/popt/po/sk.po index b92dff2..4f3ba8b 100644 --- a/popt/po/sk.po +++ b/popt/po/sk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 1999-08-04 21:40+0200\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -94,10 +94,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sl.po b/popt/po/sl.po index 6171f37..f0543ff 100644 --- a/popt/po/sl.po +++ b/popt/po/sl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-09-05 12:30+0200\n" "Last-Translator: Roman Maurer \n" "Language-Team: Slovenian \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sr.po b/popt/po/sr.po index f810615..ae68916 100644 --- a/popt/po/sr.po +++ b/popt/po/sr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/sv.po b/popt/po/sv.po index da6b310..407c4d0 100644 --- a/popt/po/sv.po +++ b/popt/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-06-20 00:07+0200\n" "Last-Translator: Christian Rose \n" "Language-Team: Swedish \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/tr.po b/popt/po/tr.po index d425349..03c94a8 100644 --- a/popt/po/tr.po +++ b/popt/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 2000-01-06 13:01+0100\n" "Last-Translator: Görkem Çetin \n" "Language-Team: Gelecek A.Þ \n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/uk.po b/popt/po/uk.po index 6ce797f..011fccc 100644 --- a/popt/po/uk.po +++ b/popt/po/uk.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 1999-09-30 16:54+0200\n" "Last-Translator: Yuri Syrota \n" "Language-Team: Ukrainian \n" @@ -94,10 +94,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/wa.po b/popt/po/wa.po index f9bb6f6..5537215 100644 --- a/popt/po/wa.po +++ b/popt/po/wa.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 1999-03-18 23:11+0100\n" "Last-Translator: Nobody yet\n" "Language-Team: walon \n" @@ -98,10 +98,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/zh.po b/popt/po/zh.po index f810615..ae68916 100644 --- a/popt/po/zh.po +++ b/popt/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: popt 1.6.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -95,10 +95,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" diff --git a/popt/po/zh_CN.GB2312.po b/popt/po/zh_CN.GB2312.po index d2769e4..2545528 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.1\n" -"POT-Creation-Date: 2001-02-09 10:46-0500\n" +"POT-Creation-Date: 2001-02-22 17:41-0500\n" "PO-Revision-Date: 1999-11-11 05:04+0800\n" "Last-Translator: Dillion Chen \n" "Language-Team: TLDN\n" @@ -90,10 +90,10 @@ msgstr "" msgid "ARG" msgstr "" -#: popthelp.c:240 +#: popthelp.c:241 msgid "Usage:" msgstr "" -#: popthelp.c:259 +#: popthelp.c:260 msgid "[OPTION...]" msgstr "" -- 2.7.4