./lib/rpmlib.h \
./lib/rpmlibprov.c \
./lib/rpmrc.c \
- ./lib/scriptlet.c \
- ./lib/scriptlet.h \
./lib/signature.c \
./lib/signature.h \
./lib/stringbuf.c \
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
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)
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;
}
}
/* 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)) {
}
/* 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,
exit:
/* Restore root directory if changed. */
- (void) psmChroot(psm, 0);
+ (void) psmStage(psm, PSM_CHROOT_OUT);
if (oldH)
headerFree(oldH);
}
/* 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
}
/* 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;
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);
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;
exit:
/* Restore root directory if changed. */
- (void) psmChroot(psm, 0);
+ (void) psmStage(psm, PSM_CHROOT_OUT);
if (h) headerFree(h);
if (oh) headerFree(oh);
#include <rpmlib.h>
#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;
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. */
/**
*/
+#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
/**
*/
-int psmStage(PSM_t psm, fileStage stage)
+int psmStage(PSM_t psm, pkgStage stage)
/*@modifies psm @*/;
#ifdef __cplusplus
+++ /dev/null
-/** \ingroup rpmtrans payload
- * \file lib/scriptlet.c
- */
-
-#include "system.h"
-
-#include <rpmlib.h>
-#include <rpmurl.h>
-#include <rpmmacro.h> /* 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;
-}
+++ /dev/null
-#ifndef H_SCRIPTLET
-#define H_SCRIPTLET
-
-/** \file lib/scriptlet.h
- */
-
-#include <rpmlib.h>
-
-#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 */
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);
lib/rpminstall.c
lib/rpmlead.c
lib/rpmrc.c
-lib/scriptlet.c
lib/signature.c
lib/stringbuf.c
lib/transaction.c
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 <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
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 <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
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"
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 ""
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 ""
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 <ke@SuSE.DE>\n"
"Language-Team: German <de@li.org>\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"
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 ""
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: "
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"
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 ""
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 ""
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 ""
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 ""
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: "
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
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"
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 ""
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: "
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"
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 ""
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 ""
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 ""
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 ""
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:"
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
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"
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
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"
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <kanda@nn.iij4u.or.jp>\n"
"Language-Team: JRPM <jrpm@linux.or.jp>\n"
# 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"
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"
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"
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 ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
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"
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 ""
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 ""
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 ""
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"
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 ¤Î¤¿¤á¤Î°Í¸À¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
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"
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 ""
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <pdziekonski@mml.ch.pwr.wroc.pl>\n"
"Language-Team: Polish <pl@li.org>\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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
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 <morais@poli.org>\n"
"Language-Team: pt <morais@poli.org>\n"
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"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
# Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 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
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"
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 ""
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"
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 ""
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 ""
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 ""
# "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 ""
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 ""
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 ""
# "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"
# "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"
# "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"
# "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 ""
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 ""
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 <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
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"
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"
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"
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"
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ë"
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 ""
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"
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"
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: "
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 <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
# -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 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 <gregor.fajdiga@telemach.net>\n"
"Language-Team: Slovenian <sl@li.org>\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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
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 <ewt@lacrosse.redhat.com>\n"
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"
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 ""
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: "
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"
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 ""
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 ""
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 ""
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 ""
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: "
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 <göran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\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"
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"
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"
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"
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"
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 ""
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"
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"
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: "
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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"
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 ""
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: "
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"
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 ""
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 ""
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 ""
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 ""
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ý: "
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 ""
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 <milan.kerslager@spsselib.hiedu.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <kenneth@gnu.org>\n"
"Language-Team: Danish/Dansk <dansk@klid.dk>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <jba@pobox.com>\n"
"Language-Team: Galician <gpul-traduccion@ceu.fi.udc.es>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <nemeth@qwertynet.hu>\n"
"Language-Team: Hungarian\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <kmaraas@online.no>\n"
"Language-Team: Norwegian <no@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <morais@kde.org>\n"
"Language-Team: pt <morais@kde.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <gafton@redhat.com>\n"
"Language-Team: Romanian <ro@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr "Sintaxa:"
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr "[OPTIUNE...]"
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 <leon@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <stano@eunet.sk>\n"
"Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <roman.maurer@hermes.si>\n"
"Language-Team: Slovenian <sl@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <menthos@menthos.com>\n"
"Language-Team: Swedish <sv@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <kabalak@gmx.net>\n"
"Language-Team: Gelecek A.Þ <gorkem@gelecek.com.tr>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <rasta@renome.rovno.ua>\n"
"Language-Team: Ukrainian <uk@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <linux-wa@chanae.alphanet.ch>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""
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 <dillon.chen@turbolinux.com.cn>\n"
"Language-Team: TLDN\n"
msgid "ARG"
msgstr ""
-#: popthelp.c:240
+#: popthelp.c:241
msgid "Usage:"
msgstr ""
-#: popthelp.c:259
+#: popthelp.c:260
msgid "[OPTION...]"
msgstr ""