- drop lib/md5*.[ch] files in favor of beecrypt.
CVS patchset: 5081
CVS date: 2001/09/25 16:21:44
4.0.3 -> 4.1:
- loosely wire beecrypt library into rpm.
- - drop rpmio/base64.[ch] in favor of beecrypt versions.
+ - drop rpmio/base64.[ch] in favor of beecrypt.
+ - drop lib/md5*.[ch] files in favor of beecrypt.
4.0.3 -> 4.0.4:
@top_srcdir@/lib/header_internal.h \
@top_srcdir@/lib/manifest.c \
@top_srcdir@/lib/manifest.h \
- @top_srcdir@/lib/md5.c \
- @top_srcdir@/lib/md5.h \
- @top_srcdir@/lib/md5sum.c \
@top_srcdir@/lib/misc.c \
@top_srcdir@/lib/misc.h \
@top_srcdir@/lib/package.c \
`make -s sources -C lib` \
`make -s sources -C rpmdb` \
`make -s sources -C rpmio` \
+ `make -s sources -C beecrypt` \
`make -s sources -C popt`
CVSTAG = r$(subst .,-,$(VERSION))
#include "buildio.h"
#include "myftw.h"
-#include "md5.h"
+#include "misc.h"
#include "debug.h"
/*@access Header @*/
misc.h rpmcli.h rpmlib.h stringbuf.h
noinst_HEADERS = \
cpio.h depends.h fsm.h header_internal.h \
- manifest.h md5.h psm.h \
+ manifest.h psm.h \
rpmlead.h signature.h
mylibpaths = \
librpm_la_SOURCES = \
cpio.c depends.c formats.c fs.c fsm.c getdate.c \
header.c header_internal.c \
- manifest.c md5.c md5sum.c misc.c package.c \
+ manifest.c misc.c package.c \
problems.c poptBT.c poptI.c poptK.c poptQV.c psm.c query.c \
rpmchecksig.c rpminstall.c rpmlead.c rpmlibprov.c rpmrc.c rpmvercmp.c \
signature.c stringbuf.c tagName.c tagtable.c transaction.c \
+++ /dev/null
-/** \ingroup signature
- * \file lib/md5.c
- * This code implements the MD5 message-digest algorithm.
- * The algorithm is due to Ron Rivest. This code was
- * written by Colin Plumb in 1993, no copyright is claimed.
- * This code is in the public domain; do with it what you wish.
- *
- * Equivalent code is available from RSA Data Security, Inc.
- * This code has been tested against that, and is equivalent,
- * except that you don't need to include two pages of legalese
- * with every copy.
- *
- * To compute the message digest of a chunk of bytes, declare an
- * MD5Context structure, pass it to rpmMD5Init, call rpmMD5Update as
- * needed on buffers full of bytes, and then call rpmMD5Final, which
- * will fill a supplied 16-byte array with the digest.
- *
- * @todo Eliminate, use rpmio version instead.
- */
-
-#include "system.h"
-#include "md5.h"
-#include "debug.h"
-
-static int _ie = 0x44332211;
-static union _mendian {
-/*@unused@*/ int i;
- char b[4];
-} *_endian = (union _mendian *)&_ie;
-#define IS_BIG_ENDIAN() (_endian->b[0] == '\x44')
-#define IS_LITTLE_ENDIAN() (_endian->b[0] == '\x11')
-
-/*
- * Note: this code is harmless on little-endian machines.
- */
-static void byteReverse(unsigned char *buf, unsigned longs)
- /*@modifies *buf @*/
-{
- uint32 t;
- do {
- t = (uint32) ((unsigned) buf[3] << 8 | buf[2]) << 16 |
- ((unsigned) buf[1] << 8 | buf[0]);
- *(uint32 *) buf = t;
- buf += 4;
- } while (--longs);
-}
-
-/*
- * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
- * initialization constants.
- */
-void rpmMD5Init(struct MD5Context *ctx, int brokenEndian)
-{
- ctx->buf[0] = 0x67452301;
- ctx->buf[1] = 0xefcdab89;
- ctx->buf[2] = 0x98badcfe;
- ctx->buf[3] = 0x10325476;
-
- ctx->bits[0] = 0;
- ctx->bits[1] = 0;
-
- if (IS_BIG_ENDIAN()) { /* XXX was ifdef WORDS_BIGENDIAN */
- if (brokenEndian) {
- ctx->doByteReverse = 0;
- } else {
- ctx->doByteReverse = 1;
- }
- } else {
- ctx->doByteReverse = 0;
- }
-}
-
-/*
- * Update context to reflect the concatenation of another buffer full
- * of bytes.
- */
-void rpmMD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len)
-{
- uint32 t;
-
- /* Update bitcount */
-
- t = ctx->bits[0];
- if ((ctx->bits[0] = t + ((uint32) len << 3)) < t)
- ctx->bits[1]++; /* Carry from low to high */
- ctx->bits[1] += len >> 29;
-
- t = (t >> 3) & 0x3f; /* Bytes already in shsInfo->data */
-
- /* Handle any leading odd-sized chunks */
-
- if (t) {
- unsigned char *p = (unsigned char *) ctx->in + t;
-
- t = 64 - t;
- if (len < t) {
- memcpy(p, buf, len);
- return;
- }
- memcpy(p, buf, t);
- if (ctx->doByteReverse)
- byteReverse(ctx->in, 16);
- rpmMD5Transform(ctx->buf, (uint32 *) ctx->in);
- buf += t;
- len -= t;
- }
- /* Process data in 64-byte chunks */
-
- while (len >= 64) {
- memcpy(ctx->in, buf, 64);
- if (ctx->doByteReverse)
- byteReverse(ctx->in, 16);
- rpmMD5Transform(ctx->buf, (uint32 *) ctx->in);
- buf += 64;
- len -= 64;
- }
-
- /* Handle any remaining bytes of data. */
-
- memcpy(ctx->in, buf, len);
-}
-
-/*
- * Final wrapup - pad to 64-byte boundary with the bit pattern
- * 1 0* (64-bit count of bits processed, MSB-first)
- */
-/*@-fixedformalarray@*/
-void rpmMD5Final(unsigned char digest[16], struct MD5Context *ctx)
-/*@=fixedformalarray@*/
-{
- unsigned count;
- unsigned char *p;
-
- /* Compute number of bytes mod 64 */
- count = (ctx->bits[0] >> 3) & 0x3F;
-
- /* Set the first char of padding to 0x80. This is safe since there is
- always at least one byte free */
- p = ctx->in + count;
- *p++ = 0x80;
-
- /* Bytes of padding needed to make 64 bytes */
- count = 64 - 1 - count;
-
- /* Pad out to 56 mod 64 */
- if (count < 8) {
- /* Two lots of padding: Pad the first block to 64 bytes */
- memset(p, 0, count);
- if (ctx->doByteReverse)
- byteReverse(ctx->in, 16);
- rpmMD5Transform(ctx->buf, (uint32 *) ctx->in);
-
- /* Now fill the next block with 56 bytes */
- memset(ctx->in, 0, 56);
- } else {
- /* Pad block to 56 bytes */
- memset(p, 0, count - 8);
- }
- if (ctx->doByteReverse)
- byteReverse(ctx->in, 14);
-
- /* Append length in bits and transform */
- ((uint32 *) ctx->in)[14] = ctx->bits[0];
- ((uint32 *) ctx->in)[15] = ctx->bits[1];
-
- rpmMD5Transform(ctx->buf, (uint32 *) ctx->in);
- if (ctx->doByteReverse)
- byteReverse((unsigned char *) ctx->buf, 4);
- memcpy(digest, ctx->buf, 16);
- memset(ctx, 0, sizeof(ctx)); /* In case it's sensitive */
-}
-
-/* The four core functions - F1 is optimized somewhat */
-
-/* #define F1(x, y, z) (x & y | ~x & z) */
-#define F1(x, y, z) (z ^ (x & (y ^ z)))
-#define F2(x, y, z) F1(z, x, y)
-#define F3(x, y, z) (x ^ y ^ z)
-#define F4(x, y, z) (y ^ (x | ~z))
-
-/* This is the central step in the MD5 algorithm. */
-#define MD5STEP(f, w, x, y, z, data, s) \
- ( w += f(x, y, z) + data, w = w<<s | w>>(32-s), w += x )
-
-/*
- * The core of the MD5 algorithm, this alters an existing MD5 hash to
- * reflect the addition of 16 longwords of new data. rpmMD5Update blocks
- * the data and converts bytes into longwords for this routine.
- */
-/*@-fixedformalarray@*/
-void rpmMD5Transform(uint32 buf[4], uint32 const in[16])
-/*@=fixedformalarray@*/
-{
- register uint32 a, b, c, d;
-
- a = buf[0];
- b = buf[1];
- c = buf[2];
- d = buf[3];
-
- MD5STEP(F1, a, b, c, d, in[0] + 0xd76aa478, 7);
- MD5STEP(F1, d, a, b, c, in[1] + 0xe8c7b756, 12);
- MD5STEP(F1, c, d, a, b, in[2] + 0x242070db, 17);
- MD5STEP(F1, b, c, d, a, in[3] + 0xc1bdceee, 22);
- MD5STEP(F1, a, b, c, d, in[4] + 0xf57c0faf, 7);
- MD5STEP(F1, d, a, b, c, in[5] + 0x4787c62a, 12);
- MD5STEP(F1, c, d, a, b, in[6] + 0xa8304613, 17);
- MD5STEP(F1, b, c, d, a, in[7] + 0xfd469501, 22);
- MD5STEP(F1, a, b, c, d, in[8] + 0x698098d8, 7);
- MD5STEP(F1, d, a, b, c, in[9] + 0x8b44f7af, 12);
- MD5STEP(F1, c, d, a, b, in[10] + 0xffff5bb1, 17);
- MD5STEP(F1, b, c, d, a, in[11] + 0x895cd7be, 22);
- MD5STEP(F1, a, b, c, d, in[12] + 0x6b901122, 7);
- MD5STEP(F1, d, a, b, c, in[13] + 0xfd987193, 12);
- MD5STEP(F1, c, d, a, b, in[14] + 0xa679438e, 17);
- MD5STEP(F1, b, c, d, a, in[15] + 0x49b40821, 22);
-
- MD5STEP(F2, a, b, c, d, in[1] + 0xf61e2562, 5);
- MD5STEP(F2, d, a, b, c, in[6] + 0xc040b340, 9);
- MD5STEP(F2, c, d, a, b, in[11] + 0x265e5a51, 14);
- MD5STEP(F2, b, c, d, a, in[0] + 0xe9b6c7aa, 20);
- MD5STEP(F2, a, b, c, d, in[5] + 0xd62f105d, 5);
- MD5STEP(F2, d, a, b, c, in[10] + 0x02441453, 9);
- MD5STEP(F2, c, d, a, b, in[15] + 0xd8a1e681, 14);
- MD5STEP(F2, b, c, d, a, in[4] + 0xe7d3fbc8, 20);
- MD5STEP(F2, a, b, c, d, in[9] + 0x21e1cde6, 5);
- MD5STEP(F2, d, a, b, c, in[14] + 0xc33707d6, 9);
- MD5STEP(F2, c, d, a, b, in[3] + 0xf4d50d87, 14);
- MD5STEP(F2, b, c, d, a, in[8] + 0x455a14ed, 20);
- MD5STEP(F2, a, b, c, d, in[13] + 0xa9e3e905, 5);
- MD5STEP(F2, d, a, b, c, in[2] + 0xfcefa3f8, 9);
- MD5STEP(F2, c, d, a, b, in[7] + 0x676f02d9, 14);
- MD5STEP(F2, b, c, d, a, in[12] + 0x8d2a4c8a, 20);
-
- MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4);
- MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11);
- MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16);
- MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23);
- MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4);
- MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11);
- MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16);
- MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23);
- MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4);
- MD5STEP(F3, d, a, b, c, in[0] + 0xeaa127fa, 11);
- MD5STEP(F3, c, d, a, b, in[3] + 0xd4ef3085, 16);
- MD5STEP(F3, b, c, d, a, in[6] + 0x04881d05, 23);
- MD5STEP(F3, a, b, c, d, in[9] + 0xd9d4d039, 4);
- MD5STEP(F3, d, a, b, c, in[12] + 0xe6db99e5, 11);
- MD5STEP(F3, c, d, a, b, in[15] + 0x1fa27cf8, 16);
- MD5STEP(F3, b, c, d, a, in[2] + 0xc4ac5665, 23);
-
- MD5STEP(F4, a, b, c, d, in[0] + 0xf4292244, 6);
- MD5STEP(F4, d, a, b, c, in[7] + 0x432aff97, 10);
- MD5STEP(F4, c, d, a, b, in[14] + 0xab9423a7, 15);
- MD5STEP(F4, b, c, d, a, in[5] + 0xfc93a039, 21);
- MD5STEP(F4, a, b, c, d, in[12] + 0x655b59c3, 6);
- MD5STEP(F4, d, a, b, c, in[3] + 0x8f0ccc92, 10);
- MD5STEP(F4, c, d, a, b, in[10] + 0xffeff47d, 15);
- MD5STEP(F4, b, c, d, a, in[1] + 0x85845dd1, 21);
- MD5STEP(F4, a, b, c, d, in[8] + 0x6fa87e4f, 6);
- MD5STEP(F4, d, a, b, c, in[15] + 0xfe2ce6e0, 10);
- MD5STEP(F4, c, d, a, b, in[6] + 0xa3014314, 15);
- MD5STEP(F4, b, c, d, a, in[13] + 0x4e0811a1, 21);
- MD5STEP(F4, a, b, c, d, in[4] + 0xf7537e82, 6);
- MD5STEP(F4, d, a, b, c, in[11] + 0xbd3af235, 10);
- MD5STEP(F4, c, d, a, b, in[2] + 0x2ad7d2bb, 15);
- MD5STEP(F4, b, c, d, a, in[9] + 0xeb86d391, 21);
-
- buf[0] += a;
- buf[1] += b;
- buf[2] += c;
- buf[3] += d;
-}
-
+++ /dev/null
-#ifndef MD5_H
-#define MD5_H
-
-/**
- * \file lib/md5.h
- * @todo Eliminate, use rpmio version instead.
- */
-
-#include <sys/types.h>
-
-typedef unsigned int uint32;
-
-/**
- * MD5 private data.
- */
-struct MD5Context {
- uint32 buf[4];
- uint32 bits[2];
- unsigned char in[64];
- int doByteReverse;
-};
-
-/*
- * This is needed to make RSAREF happy on some MS-DOS compilers.
- */
-/*@-mutrep@*/ /* FIX: redefine as pointer */
-typedef /*@abstract@*/ struct MD5Context MD5_CTX;
-/*@=mutrep@*/
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * Initialize MD5 hash.
- * Set bit count to 0 and buffer to mysterious initialization constants.
- * @param ctx MD5 private data
- * @param brokenEndian calculate broken MD5 sum?
- */
-void rpmMD5Init( /*@out@*/ struct MD5Context * ctx, int brokenEndian)
- /*@modifies *ctx @*/;
-
-/**
- * Update context to reflect the concatenation of another buffer full.
- * of bytes.
- * @param ctx MD5 private data
- * @param data next data buffer
- * @param len no. bytes of data
- */
-void rpmMD5Update(struct MD5Context * ctx, unsigned char const *buf,
- unsigned len)
- /*@modifies ctx @*/;
-/**
- * Return MD5 digest, and reset context.
- * @retval MD5 digest
- * @param ctx MD5 private data
- */
-/*@-fixedformalarray@*/
-void rpmMD5Final(unsigned char digest[16], struct MD5Context * ctx)
- /*@modifies digest, ctx @*/;
-/*@=fixedformalarray@*/
-
-/**
- * The core of the MD5 algorithm.
- * This alters an existing MD5 hash to reflect the addition of 16 longwords
- * of new data.
- * @param buf current MD5 variables
- * @param in next block of data to add
- */
-/*@-fixedformalarray -exportlocal@*/
-void rpmMD5Transform(uint32 buf[4], uint32 const in[16])
- /*@modifies *buf @*/;
-/*@=fixedformalarray =exportlocal@*/
-
-/**
- * Return MD5 sum of file as ASCII string.
- * @param fn file name
- * @retval digest MD5 digest
- * @return 0 on success, 1 on error
- */
-int mdfile(const char * fn, /*@out@*/ unsigned char * digest)
- /*@modifies digest @*/;
-
-/**
- * Return MD5 sum of file as binary data.
- * @param fn file name
- * @retval bindigest MD5 digest
- * @return 0 on success, 1 on error
- */
-int mdbinfile(const char * fn, /*@out@*/ unsigned char * bindigest)
- /*@modifies *bindigest @*/;
-
-/* These assume a little endian machine and return incorrect results!
- They are here for compatibility with old (broken) versions of RPM */
-
-/**
- * Return (broken!) MD5 sum of file as ASCII string.
- * @deprecated Here for compatibility with old (broken) versions of RPM.
- * @param fn file name
- * @retval digest MD5 digest
- * @return 0 on success, 1 on error
- */
-int mdfileBroken(const char * fn, /*@out@*/ unsigned char * digest)
- /*@modifies *digest @*/;
-
-/**
- * Return (broken!) MD5 sum of file as binary data.
- * @deprecated Here for compatibility with old (broken) versions of RPM.
- * @param fn file name
- * @retval bindigest MD5 digest
- * @return 0 on success, 1 on error
- */
-int mdbinfileBroken(const char * fn, /*@out@*/ unsigned char * bindigest)
- /*@modifies *bindigest @*/;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* MD5_H */
+++ /dev/null
-/** \ingroup signature.c
- * \file lib/md5sum.c
- * Generate/check MD5 Message Digests.
- * Compile and link with md5.c. If you don't have getopt() in your library
- * also include getopt.c. For MSDOS you can also link with the wildcard
- * initialization function (wildargs.obj for Turbo C and setargv.obj for MSC)
- * so that you can use wildcards on the commandline.
- *
- * Written March 1993 by Branko Lankester
- * Modified June 1993 by Colin Plumb for altered md5.c.
- * Modified October 1995 by Erik Troan for RPM
- */
-
-#include "system.h"
-#include "md5.h"
-#include "rpmio_internal.h"
-#include "debug.h"
-
-/**
- * Calculate MD5 sum for file.
- * @param fn file name
- * @retval digest address of md5sum
- * @param asAscii return md5sum as ascii string?
- * @param brokenEndian calculate broken MD5 sum?
- * @return 0 on success, 1 on error
- */
-static int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii,
- int brokenEndian)
- /*@modifies digest, fileSystem @*/
-{
- int rc;
-
-#ifndef DYING
- unsigned char buf[1024];
- unsigned char bindigest[16];
- FILE * fp;
- MD5_CTX ctx;
-
- memset(bindigest, 0, sizeof(bindigest));
- fp = fopen(fn, "r");
- if (!fp) {
- return 1;
- }
-
- rpmMD5Init(&ctx, brokenEndian);
- while ((rc = fread(buf, sizeof(buf[0]), sizeof(buf), fp)) > 0)
- rpmMD5Update(&ctx, buf, rc);
- rpmMD5Final(bindigest, &ctx);
- if (ferror(fp)) {
- (void) fclose(fp);
- return 1;
- }
-
- if (!asAscii) {
- memcpy(digest, bindigest, 16);
- } else {
- sprintf(digest, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
- "%02x%02x%02x%02x%02x",
- (unsigned)bindigest[0],
- (unsigned)bindigest[1],
- (unsigned)bindigest[2],
- (unsigned)bindigest[3],
- (unsigned)bindigest[4],
- (unsigned)bindigest[5],
- (unsigned)bindigest[6],
- (unsigned)bindigest[7],
- (unsigned)bindigest[8],
- (unsigned)bindigest[9],
- (unsigned)bindigest[10],
- (unsigned)bindigest[11],
- (unsigned)bindigest[12],
- (unsigned)bindigest[13],
- (unsigned)bindigest[14],
- (unsigned)bindigest[15]);
-
- }
- (void) fclose(fp);
- rc = 0;
-#else
- FD_t fd = Fopen(fn, "r.ufdio");
- unsigned char buf[BUFSIZ];
- unsigned char * md5sum = NULL;
- size_t md5len;
-
- if (fd == NULL || Ferror(fd)) {
- if (fd)
- Fclose(fd);
- return 1;
- }
-
- /* Preserve legacy "brokenEndian" behavior. */
- fdInitMD5(fd, (brokenEndian ? RPMDIGEST_NATIVE : 0) );
-
- while ((rc = Fread(buf, sizeof(buf[0]), sizeof(buf), fd)) > 0)
- ;
- fdFiniMD5(fd, (void **)&md5sum, &md5len, 1);
-
- if (Ferror(fd))
- rc = 1;
- Fclose(fd);
-
- if (!rc)
- memcpy(digest, md5sum, md5len);
- if (md5sum)
- free(md5sum);
-#endif
-
- return rc;
-}
-
-/*@-mods@*/ /* FIX: shrug */
-int mdbinfile(const char *fn, unsigned char *bindigest) {
- return domd5(fn, bindigest, 0, 0);
-}
-
-int mdbinfileBroken(const char *fn, unsigned char *bindigest) {
- return domd5(fn, bindigest, 0, 1);
-}
-
-int mdfile(const char *fn, unsigned char *digest) {
- return domd5(fn, digest, 1, 0);
-}
-
-int mdfileBroken(const char *fn, unsigned char *digest) {
- return domd5(fn, digest, 1, 1);
-}
-/*@=mods@*/
#include <rpmurl.h>
#include <rpmmacro.h> /* XXX for rpmGetPath */
+#include "rpmio_internal.h"
#include "misc.h"
#include "debug.h"
/*@access Header@*/ /* XXX compared with NULL */
/*@access FD_t@*/ /* XXX compared with NULL */
+int domd5(const char * fn, unsigned char * digest, int asAscii,
+ int brokenEndian)
+{
+ int rc;
+
+ FD_t fd = Fopen(fn, "r.ufdio");
+ unsigned char buf[BUFSIZ];
+ unsigned char * md5sum = NULL;
+ size_t md5len;
+
+ if (fd == NULL || Ferror(fd)) {
+ if (fd)
+ (void) Fclose(fd);
+ return 1;
+ }
+
+ /* Preserve legacy "brokenEndian" behavior. */
+ fdInitMD5(fd, brokenEndian);
+
+ while ((rc = Fread(buf, sizeof(buf[0]), sizeof(buf), fd)) > 0)
+ {};
+ fdFiniMD5(fd, (void **)&md5sum, &md5len, asAscii);
+
+ if (Ferror(fd))
+ rc = 1;
+ (void) Fclose(fd);
+
+ if (!rc)
+ memcpy(digest, md5sum, md5len);
+ md5sum = _free(md5sum);
+
+ return rc;
+}
+
/*@-exportheadervar@*/
/* just to put a marker in librpm.a */
/*@unused@*/ /*@observer@*/ char * RPMVERSION = VERSION;
#include "header.h"
#include "ugid.h"
+typedef unsigned char byte;
+typedef unsigned int uint32;
+typedef int (*md5func)(const char * fn, /*@out@*/ byte * digest);
+
#ifdef __cplusplus
extern "C" {
#endif
/**
+ * Calculate MD5 sum for file.
+ * @todo Eliminate, use beecrypt instead.
+ * @param fn file name
+ * @retval digest address of md5sum
+ * @param asAscii return md5sum as ascii string?
+ * @param brokenEndian calculate broken MD5 sum?
+ * @return 0 on success, 1 on error
+ */
+/*@-exportlocal@*/
+int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii,
+ int brokenEndian)
+ /*@modifies digest, fileSystem @*/;
+/*@=exportlocal@*/
+
+/**
+ * Return MD5 sum of file as ASCII string.
+ * @todo Eliminate, use beecrypt instead.
+ * @param fn file name
+ * @retval digest MD5 digest
+ * @return 0 on success, 1 on error
+ */
+/*@unused@*/ static inline
+int mdfile(const char * fn, /*@out@*/ unsigned char * digest)
+ /*@modifies digest, fileSystem @*/
+{
+ return domd5(fn, digest, 1, 0);
+}
+
+/**
+ * Return MD5 sum of file as binary data.
+ * @todo Eliminate, use beecrypt instead.
+ * @param fn file name
+ * @retval bindigest MD5 digest
+ * @return 0 on success, 1 on error
+ */
+/*@unused@*/ static inline
+int mdbinfile(const char * fn, /*@out@*/ unsigned char * bindigest)
+ /*@modifies bindigest, fileSystem @*/
+{
+ return domd5(fn, bindigest, 0, 0);
+}
+
+/**
+ * Return (broken!) MD5 sum of file as ASCII string.
+ * @deprecated Here for compatibility with old (broken) versions of RPM.
+ * @todo Eliminate, use beecrypt instead.
+ * @param fn file name
+ * @retval digest MD5 digest
+ * @return 0 on success, 1 on error
+ */
+/*@unused@*/ static inline
+int mdfileBroken(const char * fn, /*@out@*/ unsigned char * digest)
+ /*@modifies digest, fileSystem @*/
+{
+ return domd5(fn, digest, 1, 1);
+}
+
+/**
+ * Return (broken!) MD5 sum of file as binary data.
+ * @deprecated Here for compatibility with old (broken) versions of RPM.
+ * @todo Eliminate, use beecrypt instead.
+ * @param fn file name
+ * @retval bindigest MD5 digest
+ * @return 0 on success, 1 on error
+ */
+/*@unused@*/ static inline
+int mdbinfileBroken(const char * fn, /*@out@*/ unsigned char * bindigest)
+ /*@modifies bindigest, fileSystem @*/
+{
+ return domd5(fn, bindigest, 0, 1);
+}
+
+/**
*/
/*@only@*/ char ** splitString(const char * str, int length, char sep)
/*@*/;
#include <rpmlib.h>
#include <rpmmacro.h> /* XXX for rpmGetPath() */
-#include "md5.h"
#include "misc.h" /* XXX for dosetenv() and makeTempFile() */
#include "rpmlead.h"
#include "signature.h"
/*@access Header@*/ /* XXX compared with NULL */
/*@access FD_t@*/ /* XXX compared with NULL */
-typedef unsigned char byte;
-
-typedef int (*md5func)(const char * fn, /*@out@*/ byte * digest);
-
int rpmLookupSignatureType(int action)
{
static int disabled = 0;
#include "psm.h"
#include "fprint.h"
#include "rpmhash.h"
-#include "md5.h"
#include "misc.h" /* XXX stripTrailingChar, splitString, currentDirectory */
#include "rpmdb.h"
#include <rpmcli.h>
#include "psm.h"
-#include "md5.h"
#include "misc.h" /* XXX for uidToUname() and gnameToGid() */
#include "debug.h"
lib/header.c
lib/header_internal.c
lib/manifest.c
-lib/md5.c
-lib/md5sum.c
lib/misc.c
lib/package.c
lib/poptBT.c
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-07-24 10:02+0100\n"
"Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
msgid "(unknown type)"
msgstr "(neznámý typ)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "chyba pøi vytváøení doèasného souboru %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Zkontaktujte prosím rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
"Pøedpokl. délka: %12d = hlavièka(%d)+signatura(%d)+výplò(%d)+data(%d)\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr "Aktuální délka: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Chybí podpis\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Starý PGP podpis\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Starý (pouze interní) podpis! Jak jste to získali!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Podpisu: velikost(%d)+vata(%d)\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Nemohu spustit pgp (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "pgp selhalo\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "pgp selhalo pøi zápisu podpisu\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Velikost podpisu PGP: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "nemohu èíst podpis\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Pøeèteno %d bajtù PGP podpisu\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "Nemohu spustit gpg\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "gpg selhalo\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "gpg selhalo pøi zápisu podpisu\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Velikost GPG podpisu: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Pøeèteno %d bajtù GPG podpisu\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "Generuji PGP podpis.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "Generuji GPG podpis.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr "Nemohu spustit pgp. Vynechte kontrolu PGP pomocí --nopgp.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr "Nelze spustit gpg. Vynechte kontrolu GPG pomocí --nogpg.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "Nemohu spustit pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "©patná %%_signature spec v souboru maker\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== relokace\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d vynechávám %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d pøemís»uji %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynechávám multilib cestu %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "vynechávám %s %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "pøemís»uji %s do %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "pøemís»uji adresáø %s do %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "vynechávám adresáø %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
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)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
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)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "chybí %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr "%s-%s-%s: kontrola digestu v hlavièce selhala\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-04-05 23:03GMT\n"
"Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
msgid "(unknown type)"
msgstr "(ukendt type)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "fejl ved oprettelse af midlertidig fil %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Kontakt venligst rpm-list@redhat.com (på engelsk)\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "filen er ikke regulær -- overspringer størrelsestjek\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr "Forventet størrelse: %12d = indled(%d)+sign(%d)+fyld(%d)+data(%d)\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr " Faktisk størrelse: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Ingen signatur\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Gammel PGP-signatur\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Gammel (internt brug) signatur! Hvordan fik du fingre i den!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Signaturstørrelse: %d\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Kunne ikke køre pgp (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "pgp fejlede\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "pgp kunne ikke skrive signatur\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP-signaturstørrelse: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "kunne ikke læse signaturen\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Fik %d byte af PGP-signatur\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "Kunne ikke køre gpg\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "gpg fejlede\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "gpg kunne ikke skrive signaturen\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG-signaturstørrelse: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Fik %d byte GPG-signatur\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "Genererer signatur med pgp.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "Genererer signatur med gpg.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr "Kunne ikke køre pgp. Brug --nopgp for at overspringe PGP-tjek.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr "Kunne ikke køre gpg. Brug --nogpg for at overspringe GPG-tjek.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "Kunne ikke køre pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Du skal angive \"%%_gpg_name\" i din makrofil\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== gemmer omrokeringer\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ekskluderer %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omrokerer %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ekskluderer multilib-sti %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "ekskluderer %s %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "omrokerer %s til %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "omrokerer kataloget %s til %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s oversprunget grundet manglende ok-flag\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer kataloget %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
"pakken har hverken en liste over brugernavne eller id (det burde ikke kunne "
"ske)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
"pakken har hverken en liste over gruppenavne eller id (det burde ikke kunne "
"ske)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "manglende %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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"
msgid "(unknown type)"
msgstr "(unbekannter Typ)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
#, fuzzy
msgid "No signature\n"
msgstr "%s: Keine Signatur verfügbar\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
#, fuzzy
msgid "Old PGP signature\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, 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:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Konnte pgp nicht durchführen"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp fehlgeschlagen"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "nicht möglich, die Signatur zu lesen"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Konnte pgp nicht durchführen"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "pgp fehlgeschlagen"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, 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:695
+#: lib/signature.c:690
#, 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:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
# , c-format
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Hole %s heraus\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "kann Datei %s nicht öffnen: "
# , c-format
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Hole %s heraus\n"
# , c-format
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Hole %s heraus\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "fehlende { nach %{"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
"Language-Team: Finnish <linux@sot.com>\n"
"Content-Type: text/plain; charset=\n"
msgid "(unknown type)"
msgstr "(tuntematon tyyppi)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
#, fuzzy
msgid "No signature\n"
msgstr "%s: Ei allekirjoitusta saatavilla\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
#, fuzzy
msgid "Old PGP signature\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, 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:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "En voinut ajaa pgp:tä"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp epäonnistui"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "en voinut lukea allekirjoitusta"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "En voinut ajaa pgp:tä"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "pgp epäonnistui"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, 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:695
+#: lib/signature.c:690
#, 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:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Haen: %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "en voinut avata tiedostoa %s: "
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Haen: %s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Haen: %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "puuttuva '{' '%':n jälkeen"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "impossible d'ouvrir: %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
#, fuzzy
msgid "Old PGP signature\n"
msgstr " --sign - genre une signature PGP"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "La construction a chou.\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "La construction a chou.\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr " --sign - genre une signature PGP"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr " --sign - genre une signature PGP"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-01-13 22:31+0100\n"
"Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
msgid "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-07-12 13:25+0000\n"
"Last-Translator: Richard Allen <ra@hp.is>\n"
"Language-Team: is <kde-isl@mmedia.is>\n"
msgid "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Gat ekki keyrt pgp (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "pgp brást\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "pgp gat ekki lesið undirskriftina\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "get ekki lesið undirskriftina\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "Gat ekki keyrt gpg\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "ggp brást\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "gpg get ekki lesið undirskriftina\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "Gat ekki keyrt pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d færa %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr "í pakkanum eru engir notandalistar (þetta ætti aldrei að koma fyrir)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr "í pakkanum eru engir hópalistar (þetta ætti aldrei að koma fyrir)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "vantar %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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.168 2001/09/25 14:03:30 jbj Exp $
+# $Id: ja.po,v 1.169 2001/09/25 16:21:54 jbj Exp $
#: rpm.c:227
#, c-format
msgid "rpm: %s\n"
msgid "(unknown type)"
msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
"¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "½ð̾¥µ¥¤¥º: %d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "¸Å¤¤ PGP ½ð̾\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, fuzzy
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾! ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "½ð̾¥µ¥¤¥º: %d\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "pgp ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó(%s)"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp ¼ºÇÔ"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp ¤¬½ð̾¤ò½ñ¤¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "gpg ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg ¼ºÇÔ"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gpg ¤¬½ð̾¤ò½ñ¤¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, fuzzy, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, fuzzy, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "GPG ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "PGP ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, fuzzy
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
"pgp ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£\n"
"PGP ¥Á¥§¥Ã¥¯¤ò¥¹¥¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nopgp ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
-#: lib/signature.c:695
+#: lib/signature.c:690
#, fuzzy
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
"gpg ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£\n"
"GPG ¥Á¥§¥Ã¥¯¤ò¥¹¥¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nogpg ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
-#: lib/signature.c:787
+#: lib/signature.c:782
#, fuzzy
msgid "Couldn't exec pgp\n"
msgstr "pgp ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥¥Ã¥×¤·¤Þ¤¹\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
#, fuzzy
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸¤Ï ¥æ¡¼¥¶Ì¾¤È id ¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤¤Æ¤Ï¤Ê"
"¤é¤Ê¤¤)"
-#: lib/verify.c:295
+#: lib/verify.c:294
#, fuzzy
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
"¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id ¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤¤Æ¤Ï¤Ê"
"¤é¤Ê¤¤)"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-09-07 22:03+0900\n"
"Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
"Language-Team: GNU Translation project <ko@li.org>\n"
msgid "(unknown type)"
msgstr "(¾Ë ¼ö ¾ø´Â À¯Çü)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "Àӽà ÆÄÀÏ %s (À»)¸¦ »ý¼ºÇÏ´Â µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "rpm-list@redhat.com À¸·Î ¿¬¶ôÁֽñ⠹ٶø´Ï´Ù\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "ÆÄÀÏÀÌ ¿Ã¹Ù¸£Áö(regular) ¾Ê½À´Ï´Ù -- ¿ë·® °Ë»ç¸¦ »ý·«ÇÕ´Ï´Ù\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr "¿¹»ó(Expected) ¿ë·®: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr " ½ÇÁ¦ ¿ë·®: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "¼¸íÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "ÀÌÀü PGP ¼¸í\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼¸í! ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "¼¸í: size(%d)+pad(%d)\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "pgp (%s) (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "pgp¿¡ ½ÇÆÐÇÔ\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "pgp ¼¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP ¼¸í ¿ë·®: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "¼¸íÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "gpg¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "gpg¿¡ ½ÇÆÐÇÔ\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "gpg ¼¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG ¼¸í ¿ë·®: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "%d ¹ÙÀÌÆ®ÀÇ GPG ¼¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "PGP¸¦ »ç¿ëÇÏ¿© ¼¸íÀ» »ý¼ºÇÕ´Ï´Ù.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "GPG¸¦ »ç¿ëÇÏ¿© ¼¸íÀ» »ý¼ºÇÕ´Ï´Ù.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
"pgp¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù. PGP °Ë»ç¸¦ »ý·«ÇϽ÷Á¸é, --nopgp ¿É¼ÇÀ» ÀÌ¿ëÇϽʽÃ"
"¿ä.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
"gpg¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù. GPG °Ë»ç¸¦ »ý·«ÇϽ÷Á¸é, --nogpg ¿É¼ÇÀ» ÀÌ¿ëÇϽʽÃ"
"¿ä.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "pgp¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_gpg_name\" À» ¼³Á¤ÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_pgp_name\" À» ¼³Á¤ÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== Àç¹èÄ¡\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d Á¦¿Ü(exclude) %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s (À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s ¿¡¼ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s µð·ºÅ丮¸¦ %s (À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s (À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
"ÆÐÅ°Áö¿¡ »ç¿ëÀÚ À̸§°ú id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù (Àý´ë ÀÌ·¸°Ô µÇ¾î¼´Â ¾ÈµË´Ï´Ù)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
"ÆÐÅ°Áö¿¡ ±×·ì À̸§°ú id ¸ñ·ÏÀÌ ¾ø½À´Ï´Ù (Àý´ë ÀÌ·¸°Ô µÇ¾î¼´Â ¾ÈµË´Ï´Ù)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "´ÙÀ½À» ãÀ» ¼ö ¾ø½À´Ï´Ù %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s ¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-06-27 12:24+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <no@li.org>\n"
msgid "(unknown type)"
msgstr "(ukjent type)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "feil under oppretting av midlertidig fil %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d omplasser %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ekskluderer multilib-sti %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "eksluderer %s %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "relokerer %s til %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "relokerer katalog %s til %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "ekskluderer katalog %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "mangler %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr "(nieznany typ)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "b³±d w tworzeniu pliku tymczasowego %s"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "Rozmiar sygnatury: %d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Brak sygnatury\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Stara sygnatura PGP\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, 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:228
+#: lib/signature.c:223
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Rozmiar sygnatury: %d\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Nie mo¿na uruchomiæ pgp"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp nie powiod³o siê"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "rozmiar sygnatury PGP: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "nie mo¿na odczytaæ sygnatury"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Mam %d bajtów sygnatury PGP\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Nie mo¿na uruchomiæ gpg"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg nie powiod³o siê"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "rozmiar sygnatury GPG: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Mam %d bajtów sygnatury GPG\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "Generowanie sygnatury: %d\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "Generowanie sygnatury: %d\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, 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:695
+#: lib/signature.c:690
#, 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:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "B³êdny %%_signature spec w pliku makra.\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Ten OS nie jest wspierany: %s"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "wy³±czanie %s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "wy³±czanie %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "przesuwanie %s do %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s pominiêty z powodu flagi missingok\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
#, 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:295
+#: lib/verify.c:294
#, 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:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "brak %s\n"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2000-06-22 01:13+01:00\n"
"Last-Translator: José Nuno Coelho Sanarra Pires\n"
"Language-Team: pt <kde@poli.org>\n"
msgid "(unknown type)"
msgstr "(tipo desconhecido)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "erro ao criar o ficheiro temporário %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Por favor contacte o rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "o ficheiro não é normal -- a ignorar a verificação do tamanho\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr "Esperado um tamanho: %12d = início(%d)+assin.(%d)+'pad'(%d)+dados(%d)\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr " Tamanho real: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Sem assinatura\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Assinatura PGP antiga\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Assinatura (só interna) antiga! Como é que obteve isto!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Tamanho da assinatura: %d\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Não consigo executar o pgp (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "o pgp falhou\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "o pgp não conseguiu gravar a assinatura\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "tamanho da assinatura do PGP: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "incapaz de ler a assinatura\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Obtive %d bytes da assinatura PGP\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "Não consegui executar o gpg\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "o gpg falhou\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "o gpg não conseguiu gravar a assinatura\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Tamanho da assinatura do GPG: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Obtive %d bytes da assinatura do GPG\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "A gerar a assinatura usando o PGP.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "A gerar a assinatura usando o PGP.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr "Não consegui correr o pgp. Use o --nopgp para ignorar as verificações de PGP.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr "Não consegui correr o gpg. Use o --nogpg para ignorar as verificações de GPG.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "Não consegui executar o pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "'Spec' %%_signature inválido no ficheiro de macros\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Precisa definir o \"%%_gpg_name\" no seu ficheiro de macros\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Precisa definir o \"%%_pgp_name\" no seu ficheiro de macros\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== mudanças de local\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d excluir o %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d mudar de local %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "a exclur a directoria 'multilib' %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "a excluir o %s %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "a mudar o %s para %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "a mudar a directoria %s para %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ignorado devido à opção missingok\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "a excluir a directoria %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr "o pacote não tem o nome de utilizador nem as listas de IDs (nunca deve ocorrer)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr "o pacote não tem o nome do grupo nem as listas de IDs (nunca deve ocorrer)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "falta %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Dependências não satisfeitas para o %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
# , c-format
#: build.c:36
msgstr ""
# , c-format
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "No consegui abrir: %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
#, fuzzy
msgid "Old PGP signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
# , c-format
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "Construo falhou.\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
# , c-format
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "Construo falhou.\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
# , c-format
-#: lib/signature.c:787
+#: lib/signature.c:782
#, fuzzy
msgid "Couldn't exec pgp\n"
msgstr "No consegui ler o arquivo spec de %s\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "RPM verso %s\n"
# , c-format
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "No consegui abrir: %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "RPM verso %s\n"
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "RPM verso %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
# , c-format
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "RPM verso %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-08-29 13:55-0400\n"
"Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
"Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
msgid "(unknown type)"
msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "ÎÅÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr "ïÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr "æÁËÔÉÞÅÓËÉÊ ÒÁÚÍÅÒ: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "óÔÁÒÁÑ ÐÏÄÐÉÓØ PGP\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
"óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "î×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "ÏÛÉÂËÁ pgp\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "ÏÛÉÂËÁ gpg\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ GPG\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ PGP.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ GPG.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
"î×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp. éÓÐÏÌØÚÕÊÔÅ --nopgp ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ PGP "
"ÐÏÄÐÉÓÅÊ.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
"îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg. éÓÐÏÌØÚÕÊÔÅ --nogpg ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ GPG "
"ÐÏÄÐÉÓÅÊ.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d ÉÓËÌÀÞÅÎ %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s ÐÒÏÐÕÝÅÎ ÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
"× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÐÏÌØÚÏ×ÁÔÅÌÅÊ, ÎÉ ÓÐÉÓËÁ ÉÈ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× (ÔÁËÏÇÏ ÎÅ "
"ÄÏÌÖÎÏ ÂÙÔØ)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
"× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅÎ ÇÒÕÐÐ, ÎÉ ÓÐÉÓËÁ ÉÈ ÉÄÅÎÔÉÆÉËÁÔÏÒÏ× (ÔÁËÏÇÏ ÎÅ ÄÏÌÖÎÏ "
"ÂÙÔØ)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr "%s-%s-%s: ÎÅÐÒÁ×ÉÌØÎÁÑ ÐÏÄÐÉÓØ ÏÂÌÁÓÔÉ ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr "(neznámy typ)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "Veµkos» podpisu: %d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Podpis nie je k dispozícii\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Starý PGP podpis\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, 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:228
+#: lib/signature.c:223
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Veµkos» podpisu: %d\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Nie je mo¾né spusti» pgp"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp zlyhalo"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp sa nepodarilo zapísa» podpis"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Veµkos» PGP podpisu: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "nie je mo¾né preèíta» podpis"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Nie je mo¾né spusti» gpg"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg zlyhalo"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gpg sa nepodarilo zapísa» podpis"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Veµkos» GPG podpisu: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Preèítaný GPG podpis obsahuje %d bajtov\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, 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:695
+#: lib/signature.c:690
#, 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:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je vynechaný: %s"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "vynecháva sa %s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "vynecháva sa %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "presúva sa %s do %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s vynechané kvôli príznaku missingok\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "vytvára sa adresár %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
#, 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:295
+#: lib/verify.c:294
#, 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:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "chýbajúce %s\n"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
# -*- 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.153 2001/09/25 14:03:32 jbj Exp $
+# $Id: sl.po,v 1.154 2001/09/25 16:22:08 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr "(neznan tip)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "Dol¾. podpisa : %d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Podpis manjka\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Stari podpis PGP\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, 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:228
+#: lib/signature.c:223
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Dol¾. podpisa : %d\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Ni mo¾no pognati pgp (%s)"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp je bil neuspe¹en"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp je bil neuspe¹en pri zapisu podpisa"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Dol¾. podpisa PGP: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "branje podpisa je bilo neuspe¹no"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Prebrano %d bajtov podpisa PGP\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Ni mo¾no pognati gpg"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg je bil neuspe¹en"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gpg je boil neuspe¹en pri zapisu podpisa"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Dol¾. podpisa GnuPG: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Prebrano %d bajtov podpisa GnuPG\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "Ustvarjanje podpisa s PGP.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "Ustvarjanje podpisa z GnuPG.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, 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:695
+#: lib/signature.c:690
#, 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:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Neveljaven %%_signature v makro-datoteki.\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "OS je izkljuèen: %s"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "premikanje %s v %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "izkljuèevanje datoteke %s%s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "premikanje %s v %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "premiokanje imenika %s v %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "izkljuèevanje imenika %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
#, 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:295
+#: lib/verify.c:294
#, 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:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "manjka %s\n"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"Content-Type: text/plain; charset=\n"
"Date: 1998-05-02 21:41:47-0400\n"
msgid "(unknown type)"
msgstr "(nepoznat tip)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
#, fuzzy
msgid "No signature\n"
msgstr "%s: Potpis nije na raspolaganju\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
#, fuzzy
msgid "Old PGP signature\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:174
+#: lib/signature.c:169
#, fuzzy
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Stari (interni) potpis! Odakle vam!?"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Ne mogu da izvr¹im PGP"
-#: lib/signature.c:301
+#: lib/signature.c:296
#, fuzzy
msgid "pgp failed\n"
msgstr "PGP omanuo"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "PGP nije uspeo da zapi¹e potpis"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
#, fuzzy
msgid "unable to read the signature\n"
msgstr "ne mogu da proèitam potpis"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Ne mogu da izvr¹im PGP"
-#: lib/signature.c:383
+#: lib/signature.c:378
#, fuzzy
msgid "gpg failed\n"
msgstr "PGP omanuo"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "PGP nije uspeo da zapi¹e potpis"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:447
+#: lib/signature.c:442
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
#, 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:695
+#: lib/signature.c:690
#, 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:787
+#: lib/signature.c:782
#, 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:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, fuzzy, c-format
msgid "%5d exclude %s\n"
msgstr "Pribavljam %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, fuzzy, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "Ne mogu da otvorim datoteku %s: "
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, fuzzy, c-format
msgid "excluding multilib path %s%s\n"
msgstr "Pribavljam %s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, fuzzy, c-format
msgid "excluding %s %s\n"
msgstr "Pribavljam %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, fuzzy, c-format
msgid "relocating directory %s to %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, fuzzy, c-format
msgid "excluding directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, fuzzy, c-format
msgid "missing %s"
msgstr "nedostaje { posle %"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-09-12 14:18+0200\n"
"Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
"Language-Team: Swedish <sv@li.org>\n"
msgid "(unknown type)"
msgstr "(okänd typ)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "fel när tämporärfil %s skapades\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Var vänlig kontakta rpm-list@redhat.com\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
"Förväntad storlek: %12d = inledning(%d)+signaturer(%d)+utfyllnad(%d)+data(%"
"d)\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr " Faktisk storlek: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Ingen signatur\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Gammal PGP-signatur\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Gammal (endast intern) signatur! Hur fick du tag i den!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Kunde inte köra pgp (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "pgp misslyckades\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "pgp misslyckades att skriva en signatur\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP signaturstorlek: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "kan inte läsa signaturen\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Fick %d byte PGP-signatur\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "Kunde inte köra gpg\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "gpg misslyckades\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "gpg kunde inte skriva signatur\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG-signaturstorlek: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Fick %d byte GPG-signatur\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "Genererar signatur med PGP.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "Genererar signatur med GPG.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
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 PGP-kontroll.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
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 GPG-kontroll.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "Kunde inte köra pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Felaktig %%_signature-spec i makrofil\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== omflyttningar\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d utesluter %s\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d flyttar om %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "hoppar över multilib-sökväg %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "hoppar över %s %s\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "flyttar %s till %s\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "flyttar katalogen %s till %s\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "%s överhoppad på grund av missingok-flagga\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "hoppar över katalogen %s\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
"paketet saknar både användarnamn och id-listor (detta borde aldrig "
"inträffa)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
"paketet saknar både gruppnamn och id-listor (detta borde aldrig inträffa)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "saknas %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "Ouppfyllda beroenden för %s-%s-%s: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\n"
"PO-Revision-Date: 2001-07-05 08:02+300\n"
"Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
"Language-Team: Turkish <tr@li.org>\n"
msgid "(unknown type)"
msgstr "(bilinmeyen tür)"
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr "%s geçici dosyasý oluþturulurken hata\n"
msgid "Please contact rpm-list@redhat.com\n"
msgstr "Lütfen rpm-list@redhat.com listesine üye olun\n"
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr "dosya normal deðil -- uzunluk denetimi atlanýyor\n"
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr "gereken boyut: %12d = (%d)uç+(%d)imza+(%d)iz+(%d)veri\n"
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr " Gerçek boyut: %12d\n"
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr "Ýmza yok\n"
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr "Eski PGP imzasý\n"
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Eski imza !!! Bunu nasýl aldýn!?\n"
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Ýmza: boyut(%d)+iz(%d)\n"
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "pgp çalýþtýrýlamadý (%s)\n"
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr "pgp hata verdi\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr "pgp imzasýnýn yazýlmasý baþarýsýz\n"
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP imza uzunluðu: %d\n"
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr "imza okunamadý\n"
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "GPG imzasýnýn %d baytý alýndý\n"
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr "gpg çalýþtýrýlamadý\n"
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr "gpg hata verdi\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n"
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG imza uzunluðu: %d\n"
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "GPG imzasýnýn %d baytý alýndý\n"
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr "PGP kullanarak imza üretiliyor.\n"
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr "GPG kullanýlarak imza üretiliyor.\n"
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
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.\n"
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
"gpg çalýþtýrýlamadý. GPG kontrollerini atlamak için --nogpg kullanýn.\n"
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr "pgp çalýþtýrýlamadý\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Makro dosyasýnda %%_signature spec geçersiz\n"
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "Makro dosyanýzda \"%%_pgp_name\" tanýmlanmýþ olmalý\n"
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n"
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr "========== yeniden konumlama\n"
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr "%5d %s'i dýþlýyor\n"
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr "%s %s dýþlanýyor\n"
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr "%s %s'e konumlanýyor\n"
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr "%s dizini %s de yeniden konumlanýyor\n"
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr "missingok flamasýndan dolayý %s atlandý\n"
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr "%s dizini dýþlanýyor\n"
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
"paket hem kullanýcý ismi hem de kimlik listelerinden yoksun (bu hiç iyi "
"deðil)\n"
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
"paket hem grup ismi hem de kimlik listelerinden yoksun (bu hiç iyi deðil)\n"
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr "eksik %s"
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr "%s-%s-%s: deðiþmez baþlýk alaný özet denetimi baþarýsýz\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-09-25 00:01-0400\n"
+"POT-Creation-Date: 2001-09-25 12:19-0400\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 "(unknown type)"
msgstr ""
-#: lib/misc.c:229 lib/misc.c:234 lib/misc.c:240
+#: lib/misc.c:264 lib/misc.c:269 lib/misc.c:275
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "Please contact rpm-list@redhat.com\n"
msgstr ""
-#: lib/signature.c:127
+#: lib/signature.c:122
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:135
+#: lib/signature.c:130
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:139
+#: lib/signature.c:134
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:159
+#: lib/signature.c:154
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:158
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:174
+#: lib/signature.c:169
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:228
+#: lib/signature.c:223
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:288
+#: lib/signature.c:283
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:301
+#: lib/signature.c:296
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:308
+#: lib/signature.c:303
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:313
+#: lib/signature.c:308
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:326 lib/signature.c:408
+#: lib/signature.c:321 lib/signature.c:403
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:331
+#: lib/signature.c:326
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:370 lib/signature.c:758
+#: lib/signature.c:365 lib/signature.c:753
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:383
+#: lib/signature.c:378
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:390
+#: lib/signature.c:385
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:395
+#: lib/signature.c:390
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:413
+#: lib/signature.c:408
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:441
+#: lib/signature.c:436
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:447
+#: lib/signature.c:442
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:530 lib/signature.c:605
+#: lib/signature.c:525 lib/signature.c:600
msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n"
msgstr ""
-#: lib/signature.c:695
+#: lib/signature.c:690
msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n"
msgstr ""
-#: lib/signature.c:787
+#: lib/signature.c:782
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:791 lib/signature.c:844
+#: lib/signature.c:786 lib/signature.c:839
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:824
+#: lib/signature.c:819
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:836
+#: lib/signature.c:831
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
-#: lib/transaction.c:447
+#: lib/transaction.c:446
msgid "========== relocations\n"
msgstr ""
-#: lib/transaction.c:451
+#: lib/transaction.c:450
#, c-format
msgid "%5d exclude %s\n"
msgstr ""
-#: lib/transaction.c:454
+#: lib/transaction.c:453
#, c-format
msgid "%5d relocate %s -> %s\n"
msgstr ""
-#: lib/transaction.c:524
+#: lib/transaction.c:523
#, c-format
msgid "excluding multilib path %s%s\n"
msgstr ""
-#: lib/transaction.c:587
+#: lib/transaction.c:586
#, c-format
msgid "excluding %s %s\n"
msgstr ""
-#: lib/transaction.c:597
+#: lib/transaction.c:596
#, c-format
msgid "relocating %s to %s\n"
msgstr ""
-#: lib/transaction.c:675
+#: lib/transaction.c:674
#, c-format
msgid "relocating directory %s to %s\n"
msgstr ""
-#: lib/transaction.c:809
+#: lib/transaction.c:808
#, c-format
msgid "%s skipped due to missingok flag\n"
msgstr ""
-#: lib/transaction.c:1407
+#: lib/transaction.c:1406
#, c-format
msgid "excluding directory %s\n"
msgstr ""
-#: lib/verify.c:274
+#: lib/verify.c:273
msgid "package lacks both user name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:295
+#: lib/verify.c:294
msgid "package lacks both group name and id lists (this should never happen)\n"
msgstr ""
-#: lib/verify.c:430
+#: lib/verify.c:429
#, c-format
msgid "missing %s"
msgstr ""
-#: lib/verify.c:523
+#: lib/verify.c:522
#, c-format
msgid "Unsatisfied dependencies for %s-%s-%s: "
msgstr ""
-#: lib/verify.c:562
+#: lib/verify.c:561
#, c-format
msgid "%s-%s-%s: immutable header region digest check failed\n"
msgstr ""
#define PyObject_HEAD int _PyObjectHead
#endif
-extern int mdfile(const char *fn, unsigned char *digest);
-
void initrpm(void);
/* from lib/misc.c */
- Start rpm-4.1.
- loosely wire beecrypt library into rpm.
- drop rpmio/base64.[ch] in favor of beecrypt versions.
+- drop lib/md5*.[ch] files in favor of beecrypt.
- Start rpm-4.1.
- loosely wire beecrypt library into rpm.
- drop rpmio/base64.[ch] in favor of beecrypt versions.
+- drop lib/md5*.[ch] files in favor of beecrypt.