- beecrypt is at least as good as pgp/gpg on verify, pulling the plug.
- add :base64 and :armor format extensions, dump binary tags in hex.
- proof-of-concept pubkey retrieval from RPM-{PGP,GPG}-KEY.
+ - stupid macros to configure public key file paths.
4.0.3 -> 4.0.4:
--I. -I.. -I../build -I../rpmdb -I../rpmio -I../popt -DHAVE_CONFIG_H -D_GNU_SOURCE
+-I. -I.. -I../build -I../rpmdb -I../rpmio -I../beecrypt -I../popt -DHAVE_CONFIG_H -D_GNU_SOURCE
+partial
+forcehints
list = _free(list);
}
-int rpmfileexists(const char * urlfn)
-{
- const char *fn;
- int urltype = urlPath(urlfn, &fn);
- struct stat buf;
-
- /*@-branchstate@*/
- if (*fn == '\0') fn = "/";
- /*@=branchstate@*/
- switch (urltype) {
- case URL_IS_FTP: /* XXX WRONG WRONG WRONG */
- case URL_IS_HTTP: /* XXX WRONG WRONG WRONG */
- case URL_IS_PATH:
- case URL_IS_UNKNOWN:
- if (Stat(fn, &buf)) {
- switch(errno) {
- case ENOENT:
- case EINVAL:
- return 0;
- }
- }
- break;
- case URL_IS_DASH:
- default:
- return 0;
- /*@notreached@*/ break;
- }
-
- return 1;
-}
-
int doputenv(const char *str)
{
char * a;
}
/**
- * Check if file esists using stat(2).
- * @param urlfn file name (may be URL)
- * @return 1 if file exists, 0 if not
- */
-int rpmfileexists(const char * urlfn)
- /*@globals fileSystem@*/
- /*@modifies fileSystem @*/;
-
-/**
* Like the libc function, but malloc()'s the space needed.
* @param name variable name
* @param value variable value
/**
*/
-static /*@only@*/ /*@null@*/
-rpmDigest freeDig(/*@only@*/ /*@null@*/ rpmDigest dig)
- /*@modifies dig @*/
-{
- if (dig != NULL) {
- dig->signature.v3 = _free(dig->signature.v3);
- dig->pubkey.v3 = _free(dig->pubkey.v3);
- /*@-branchstate@*/
- if (dig->md5ctx != NULL)
- (void) rpmDigestFinal(dig->md5ctx, NULL, NULL, 0);
- /*@=branchstate@*/
- dig->md5ctx = NULL;
- dig->md5 = _free(dig->md5);
- /*@-branchstate@*/
- if (dig->sha1ctx != NULL)
- (void) rpmDigestFinal(dig->sha1ctx, NULL, NULL, 0);
- /*@=branchstate@*/
- dig->sha1ctx = NULL;
- dig->sha1 = _free(dig->sha1);
- dig->hash_data = _free(dig->hash_data);
-
- mp32nfree(&dig->hm);
- mp32nfree(&dig->r);
- mp32nfree(&dig->s);
-
- (void) rsapkFree(&dig->rsa_pk);
- mp32nfree(&dig->m);
- mp32nfree(&dig->c);
- mp32nfree(&dig->rsahm);
- dig = _free(dig);
- }
- return dig;
-}
-
-/**
- */
-static /*@only@*/ rpmDigest newDig(void)
- /*@*/
-{
- rpmDigest dig = xcalloc(1, sizeof(*dig));
- return dig;
-}
-
-/**
- */
static int readFile(FD_t *sfdp, const char **sfnp, rpmDigest dig)
/*@globals rpmGlobalMacroContext,
fileSystem, internalState @*/
while ((count = Fread(buffer, sizeof(buffer[0]), sizeof(buffer), *sfdp)) > 0)
{
-#ifdef DYING
- /*@-type@*/ /* FIX: cast? */
- xx = rpmDigestUpdate(dig->sha1ctx, buffer, count);
- /*@=type@*/
-#endif
dig->nbytes += count;
}
const void * ptr;
int res = 0;
int xx;
-#ifdef DYING
- const char * gpgpk = NULL;
- unsigned int gpgpklen = 0;
- const char * pgppk = NULL;
- unsigned int pgppklen = 0;
-#endif
rpmDigest dig = NULL;
rpmRC rc;
goto bottom;
}
- dig = newDig();
+ dig = pgpNewDig();
/* Read the file, generating digests. */
if (readFile(&fd, &pkgfn, dig)) {
}
/*@=nullpass@*/
/*@=type@*/
- /* XXX sanity check on tag and signature agreement. */
-#ifdef DYING
- /* XXX retrieve by keyid from signature. */
- if (pgppk == NULL) {
- xx = b64decode(redhatPubKeyRSA, (void **)&pgppk, &pgppklen);
-if (rpmIsDebug())
-fprintf(stderr, "========================= Red Hat RSA Public Key\n");
- xx = pgpPrtPkts(pgppk, pgppklen, NULL, rpmIsDebug());
- }
- xx = pgpPrtPkts(pgppk, pgppklen, dig, 0);
-#endif
+ /* XXX sanity check on tag and signature agreement. */
{ const char * prefix = "3020300c06082a864886f70d020505000410";
unsigned int nbits = 1024;
/*@=nullpass@*/
/*@=type@*/
/* XXX sanity check on tag and signature agreement. */
-#ifdef DYING
- /* XXX retrieve by keyid from signature. */
- if (gpgpk == NULL) {
- xx = b64decode(redhatPubKeyDSA, (void **)&gpgpk, &gpgpklen);
-if (rpmIsDebug())
-fprintf(stderr, "========================= Red Hat DSA Public Key\n");
- xx = pgpPrtPkts(gpgpk, gpgpklen, NULL, rpmIsDebug());
- }
- xx = pgpPrtPkts(gpgpk, gpgpklen, dig, 0);
-#endif
/*@switchbreak@*/ break;
case RPMSIGTAG_LEMD5_2:
case RPMSIGTAG_LEMD5_1:
bottom:
if (fd) xx = manageFile(&fd, NULL, 0, 0);
- dig = freeDig(dig);
+ dig = pgpFreeDig(dig);
}
/*@=branchstate@*/
- dig = freeDig(dig);
+ dig = pgpFreeDig(dig);
return res;
}
/*@access FD_t@*/ /* XXX compared with NULL */
/*@access rpmDigest@*/
+/*@-mustmod@*/ /* FIX: internalState not modified? */
int rpmLookupSignatureType(int action)
{
static int disabled = 0;
}
return rc;
}
+/*@=mustmod@*/
/* rpmDetectPGPVersion() returns the absolute path to the "pgp" */
/* executable of the requested version, or NULL when none found. */
return pass;
}
-static int rpmSlurp(const char * fn,
- /*@out@*/ const byte ** bp, /*@out@*/ ssize_t * blenp)
- /*@globals fileSystem @*/
- /*@modifies *bp, *blenp, fileSystem @*/
-{
- static ssize_t blenmax = (8 * BUFSIZ);
- ssize_t blen = 0;
- byte * b = NULL;
- ssize_t size;
- FD_t fd;
- int rc = 0;
-
- fd = Fopen(fn, "r.ufdio");
- if (fd == NULL || Ferror(fd)) {
- rc = 2;
- goto exit;
- }
-
- size = fdSize(fd);
- blen = (size >= 0 ? size : blenmax);
- /*@-branchstate@*/
- if (blen) {
- int nb;
- b = xmalloc(blen+1);
- b[0] = '\0';
- nb = Fread(b, sizeof(*b), blen, fd);
- if (Ferror(fd) || (size > 0 && nb != blen)) {
- rc = 1;
- goto exit;
- }
- if (blen == blenmax && nb < blen) {
- blen = nb;
- b = xrealloc(b, blen+1);
- }
- b[blen] = '\0';
- }
- /*@=branchstate@*/
-
-exit:
- if (fd) (void) Fclose(fd);
-
- if (rc) {
- if (b) free(b);
- b = NULL;
- blen = 0;
- }
-
- if (bp) *bp = b;
- else if (b) free(b);
-
- if (blenp) *blenp = blen;
-
- return rc;
-}
-
-static int rpmReadPgpPkt(const char * fn,
- /*@out@*/ const byte ** pkt, /*@out@*/ size_t * pktlen)
- /*@globals fileSystem @*/
- /*@modifies *pkt, *pktlen, fileSystem @*/
-{
- const byte * b = NULL;
- ssize_t blen;
- const char * enc = NULL;
- const char * crcenc = NULL;
- byte * dec;
- byte * crcdec;
- size_t declen;
- size_t crclen;
- uint32 crcpkt, crc;
- const char * armortype = NULL;
- char * t, * te;
- int pstate = 0;
- int ec = 1; /* XXX assume failure */
- int rc;
-
- rc = rpmSlurp(fn, &b, &blen);
- if (rc || b == NULL || blen <= 0)
- goto exit;
-
- if (pgpIsPkt(b)) {
-#ifdef NOTYET /* XXX ASCII Pubkeys only, please. */
- ec = 0;
-#endif
- goto exit;
- }
-
-#define TOKEQ(_s, _tok) (!strncmp((_s), (_tok), sizeof(_tok)-1))
-
- for (t = (char *)b; t && *t; t = te) {
- if ((te = strchr(t, '\n')) == NULL)
- te = t + strlen(t);
- else
- te++;
-
- switch (pstate) {
- case 0:
- armortype = NULL;
- if (!TOKEQ(t, "-----BEGIN PGP "))
- continue;
- t += sizeof("-----BEGIN PGP ")-1;
-
- rc = pgpValTok(pgpArmorTbl, t, te);
- if (rc < 0)
- goto exit;
- if (rc != PGPARMOR_PUBKEY) /* XXX ASCII Pubkeys only, please. */
- continue;
- armortype = t;
-
- t = te - (sizeof("-----\n")-1);
- if (!TOKEQ(t, "-----\n"))
- continue;
- *t = '\0';
- pstate++;
- /*@switchbreak@*/ break;
- case 1:
- enc = NULL;
- rc = pgpValTok(pgpArmorKeyTbl, t, te);
- if (rc >= 0)
- continue;
- if (*t != '\n') {
- pstate = 0;
- continue;
- }
- enc = te; /* Start of encoded packets */
- pstate++;
- /*@switchbreak@*/ break;
- case 2:
- crcenc = NULL;
- if (*t != '=')
- continue;
- *t++ = '\0'; /* Terminate encoded packets */
- crcenc = t; /* Start of encoded crc */
- pstate++;
- /*@switchbreak@*/ break;
- case 3:
- pstate = 0;
- if (!TOKEQ(t, "-----END PGP "))
- goto exit;
- *t = '\0'; /* Terminate encoded crc */
- t += sizeof("-----END PGP ")-1;
-
- if (armortype == NULL) /* XXX can't happen */
- continue;
- rc = strncmp(t, armortype, strlen(armortype));
- if (rc)
- continue;
-
- t = te - (sizeof("-----\n")-1);
- if (!TOKEQ(t, "-----\n"))
- goto exit;
-
- if (b64decode(crcenc, (void **)&crcdec, &crclen) != 0)
- continue;
- crcpkt = pgpGrab(crcdec, crclen);
- free(crcdec);
- if (b64decode(enc, (void **)&dec, &declen) != 0)
- goto exit;
- crc = pgpCRC(dec, declen);
- if (crcpkt != crc)
- goto exit;
- free((void *)b);
- b = dec;
- blen = declen;
- ec = 0;
- goto exit;
- /*@notreached@*/ /*@switchbreak@*/ break;
- }
- }
-
-exit:
- if (ec == 0 && pkt)
- *pkt = b;
- else if (b != NULL)
- free((void *)b);
- if (pktlen)
- *pktlen = blen;
- return rc;
-}
-
static rpmVerifySignatureReturn
verifySizeSignature(/*@unused@*/ const char * fn,
const byte * sig,
*t = '\0';
t = stpcpy(t, "V3 RSA/MD5 signature: ");
- /*@-globs -internalglobs -modfilesys@*/
/* XXX retrieve by keyid from signature. */
+
+ /*@-globs -internalglobs -mods -modfilesys@*/
if (pgppk == NULL) {
-#ifdef DYING
- xx = b64decode(redhatPubKeyRSA, (void **)&pgppk, &pgppklen);
-#else
- xx = rpmReadPgpPkt("/usr/lib/rpm/RPM-PGP-KEY", &pgppk, &pgppklen);
-#endif
-if (rpmIsDebug())
-fprintf(stderr, "========================= Red Hat RSA Public Key\n");
+ const char * pkfn = rpmExpand("%{_pgp_pubkey}", NULL);
+ if (pgpReadPkts(pkfn, &pgppk, &pgppklen)) {
+ res = RPMSIG_NOKEY;
+ t = stpcpy( stpcpy( stpcpy(t, "NOKEY ("), pkfn), ")\n");
+ pkfn = _free(pkfn);
+ return res;
+ }
+ rpmMessage(RPMMESS_DEBUG,
+ "========== PGP RSA/MD5 pubkey %s\n", pkfn);
xx = pgpPrtPkts(pgppk, pgppklen, NULL, rpmIsDebug());
+ pkfn = _free(pkfn);
}
+
/* XXX sanity check on pubkey and signature agreement. */
+#ifdef NOTYET
+ { pgpPktSigV3 dsig = dig->signature.v3;
+ pgpPktKeyV3 dpk = dig->pubkey.v3;
+
+ if (dsig->pubkey_algo != dpk->pubkey_algo) {
+ res = RPMSIG_NOKEY;
+ t = stpcpy(t, "NOKEY\n");
+ return res;
+ }
+ }
+#endif
+
/*@-nullpass@*/
xx = pgpPrtPkts(pgppk, pgppklen, dig, 0);
/*@=nullpass@*/
- /*@=globs =internalglobs =modfilesys@*/
+ /*@=globs =internalglobs =mods =modfilesys@*/
/*@-type@*/
if (!rsavrfy(&dig->rsa_pk, &dig->rsahm, &dig->c)) {
*t = '\0';
t = stpcpy(t, "V3 DSA signature: ");
- /*@-globs -internalglobs -modfilesys@*/
/* XXX retrieve by keyid from signature. */
+
+ /*@-globs -internalglobs -mods -modfilesys@*/
if (gpgpk == NULL) {
-#ifdef DYING
- xx = b64decode(redhatPubKeyDSA, (void **)&gpgpk, &gpgpklen);
-#else
- xx = rpmReadPgpPkt("/usr/lib/rpm/RPM-GPG-KEY", &gpgpk, &gpgpklen);
-#endif
-if (rpmIsDebug())
-fprintf(stderr, "========================= Red Hat DSA Public Key\n");
+ const char * pkfn = rpmExpand("%{_gpg_pubkey}", NULL);
+ if (pgpReadPkts(pkfn, &gpgpk, &gpgpklen)) {
+ res = RPMSIG_NOKEY;
+ t = stpcpy( stpcpy( stpcpy(t, "NOKEY ("), pkfn), ")\n");
+ pkfn = _free(pkfn);
+ return res;
+ }
+ rpmMessage(RPMMESS_DEBUG,
+ "========== GPG DSA pubkey %s\n", pkfn);
xx = pgpPrtPkts(gpgpk, gpgpklen, NULL, rpmIsDebug());
+ pkfn = _free(pkfn);
}
+
/* XXX sanity check on pubkey and signature agreement. */
+#ifdef NOTYET
+ { pgpPktSigV3 dsig = dig->signature.v3;
+ pgpPktKeyV4 dpk = dig->pubkey.v4;
+
+ if (dsig->pubkey_algo != dpk->pubkey_algo) {
+ res = RPMSIG_NOKEY;
+ t = stpcpy(t, "NOKEY\n");
+ return res;
+ }
+ }
+#endif
+
/*@-nullpass@*/
xx = pgpPrtPkts(gpgpk, gpgpklen, dig, 0);
/*@=nullpass@*/
- /*@=globs =internalglobs =modfilesys@*/
+ /*@=globs =internalglobs =mods =modfilesys@*/
/*@-type@*/
if (!dsavrfy(&dig->p, &dig->q, &dig->g, &dig->hm, &dig->y, &dig->r, &dig->s)) {
#/*! \page config_macros Default configuration: /usr/lib/rpm/macros
# \verbatim
#
-# $Id: macros.in,v 1.89 2001/09/15 21:21:31 jbj Exp $
+# $Id: macros.in,v 1.90 2001/10/20 22:31:09 jbj Exp $
#
# This is a global RPM configuration file. All changes made here will
# be lost when the rpm package is upgraded. Any per-system configuration
#
#%_gpg_name
#%_gpg_path
+%_gpg_pubkey /usr/lib/rpm/RPM-GPG-KEY
# The port and machine name of an HTTP proxy host.
#
#
#%_pgp_name
#%_pgp_path
+%_pgp_pubkey /usr/lib/rpm/RPM-PGP-KEY
# Configurable virtual provides (unimplemented, use Provides: ...
# in an rpmrc file).
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "chyba pøi vytváøení doèasného souboru %s\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite selhalo: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread selhalo: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead selhalo\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Nemohu znovu podepsat RPM v2.0\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature selhalo\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Není dostupný ¾ádný podpis\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature selhalo: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Není dostupný ¾ádný podpis (RPM v1.0)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "NENÍ OK"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (CHYBÍ KLÍÈ:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (NEDÙVÌRYHODNÝ KLÍÈ:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "OK"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nemohu otevøít %s pro ètení: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr "Aktuální délka: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Chybí podpis\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Starý PGP podpis\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
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:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Podpisu: velikost(%d)+vata(%d)\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Nemohu spustit pgp (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "pgp selhalo\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "pgp selhalo pøi zápisu podpisu\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Velikost podpisu PGP: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "nemohu èíst podpis\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Pøeèteno %d bajtù PGP podpisu\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "Nemohu spustit gpg\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "gpg selhalo\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "gpg selhalo pøi zápisu podpisu\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Velikost GPG podpisu: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Pøeèteno %d bajtù GPG podpisu\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "Generuji PGP podpis.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "Generuji GPG podpis.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr "Nemohu spustit pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "©patná %%_signature spec v souboru maker\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, 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"
msgid "cannot get %s lock on database\n"
msgstr "nemohu vytvoøit zámek %s na databázi\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "výhradní"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "sdílený"
msgid "opening db environment %s/%s %s\n"
msgstr "otevírám db environment %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr "uzavøen db index %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr "uzavøen db index %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otevírám db index %s/%s %s mode=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nemohu zamknout databázi zámkem %s v %s/%s\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr "uzamèen db index %s/%s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s má pøíli¹ velkou nebo moc malou celoèíselnou hodnotu, pøeskoèeno\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"databáze je ve starém formátu; pou¾ijte --rebuilddb pro pøevod do nového\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "chyba(%d) pøi poèítání balíèkù\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "záznam èíslo %d v databázi je chybný -- vynechávám.\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr "rpmdb: poru¹ená polo¾ka hlavièky #%u, pøeskakuji.\n"
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: nemohu èíst hlavièku na adrese 0x%x\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "odstraòuji \"%s\" z indexu %s.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "odstraòuji %d polo¾ek z indexu %s.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "chyba(%d) pøi alokaci nové instance balíèku\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "pøidávám \"%s\" do indexu %s\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "pøidávám %d polo¾ek do indexu %s.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "odstraòuji %s po úspì¹ném znovusestavení db3.\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "nebyla nastavena dbpath"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "databázi %s pøevádím do %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "doèasná databáze %s ji¾ existuje\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr "vytváøím adresáø %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "vytváøím adresáø %s: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otevírám starou databázi s dbapi %d\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otevírám novou databázi s dbapi %d\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr "nemohu pøidat záznam - pùvodnì u %d\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"databázi nelze zvovu vytvoøit; pùvodní databáze zùstává na svém místì\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "starou databázi nelze nahradit novou databází!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "pro obnovení nahraïte soubory v %s soubory z %s"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "ma¾u adresáø %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "nemohu odstranit adresáø %s: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "fejl ved oprettelse af midlertidig fil %s\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite mislykkedes: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread mislykkedes: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead mislykkedes\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Kan ikke genunderskrive v2.0 RPM\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature mislykkedes\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen tilgængelig signatur\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature mislykkedes: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen tilgængelig signatur (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "IKKE O.K."
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (MANGLENDE NØGLER: "
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (IKKE-BETROEDE NØGLER:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "O.K."
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åbne %s for læsning: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "filen er ikke regulær -- overspringer størrelsestjek\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr " Faktisk størrelse: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Ingen signatur\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Gammel PGP-signatur\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
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:219
+#: lib/signature.c:221
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Signaturstørrelse: %d\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Kunne ikke køre pgp (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "pgp fejlede\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "pgp kunne ikke skrive signatur\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP-signaturstørrelse: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "kunne ikke læse signaturen\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Fik %d byte af PGP-signatur\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "Kunne ikke køre gpg\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "gpg fejlede\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "gpg kunne ikke skrive signaturen\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG-signaturstørrelse: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Fik %d byte GPG-signatur\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "Genererer signatur med pgp.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "Genererer signatur med gpg.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Ugyldig angivelse af '%%_signature'-spec i makrofil.\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Du skal angive \"%%_pgp_name\" i din makrofil\n"
msgid "cannot get %s lock on database\n"
msgstr "kunne ikke opnå %s lås på database\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "eksklusiv"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "delt"
msgid "opening db environment %s/%s %s\n"
msgstr "åbner db-miljø %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "lukkede db-indeks %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "lukkede db-indeks %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "åbner db-indeks %s/%s %s mode=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kan ikke opnå %s lås på %s/%s\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "låste db-index %s/%s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s har for stor eller lille heltalsværdi, overspringes\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"database med det nye format\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "fejl(%d) ved optælling af pakker\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: kan ikke læse hoved ved 0x%x\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "fjerner \"%s\" fra %s-indekset.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "fjerne %d indgange fra %s-indekset.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "fejl(%d) under allokering af ny pakkeinstans\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
"tilføjer \"%s\" til '%s'-indekset.\n"
"\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "tilføjer %d indgange til '%s'-indekset.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "fjerner %s efter vellykket genopbygning af db3.\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "der ikke sat nogen dbpath"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "genopbygger database %s over i %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "den midlertidige database %s eksisterer allerede\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
"opretter kataloget %s\n"
"\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "opretter kataloget %s: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "åbner gammel database med dbapi %d\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "åbner ny database med dbapi %d\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr "kunne ikke genopbygge database: original-databasen beholdes\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "kunne ikke erstatte gammel database med ny database!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "erstat filer i %s med filer fra %s for at genoprette"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "fjerner kataloget %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "kunne ikke fjerne katalog %s: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: »readLead« fehlgeschlagen\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Keine Signatur verfügbar\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (FEHLENDE SCHLüSSEL)"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
#, fuzzy
msgid "No signature\n"
msgstr "%s: Keine Signatur verfügbar\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
#, fuzzy
msgid "Old PGP signature\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, 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:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Konnte pgp nicht durchführen"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp fehlgeschlagen"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "nicht möglich, die Signatur zu lesen"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Konnte pgp nicht durchführen"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "pgp fehlgeschlagen"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "PGP-Signatur generieren"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
msgid "cannot get %s lock on database\n"
msgstr "kann %s lock für die Datenbank nicht bekommen"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "exklusiv"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "geteilt"
msgid "opening db environment %s/%s %s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kann %s lock für die Datenbank nicht bekommen"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
"Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
# FIXME
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
# FIXME
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "Fehler beim Suchen nach Paket %s\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
# FIXME
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "Fehler beim Löschen des Eintrags %s nach %s"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "»dbpath« ist nicht gesetzt"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "die temporäre Datenbank %s existiert schon"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "Datenbank aus der vorhandenen neu erstellen"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
# , c-format
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "Öffnen von %s fehlgeschlagen: %s"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead epäonnistui\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead epäonnistui\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature epäonnistui\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ei allekirjoitusta saatavilla\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature epäonnistui\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
#, fuzzy
msgid " (MISSING KEYS:"
msgstr "(PUUTTUVAT AVAIMET)"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "En voi avata %s luettavaksi: %s."
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
#, fuzzy
msgid "No signature\n"
msgstr "%s: Ei allekirjoitusta saatavilla\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
#, fuzzy
msgid "Old PGP signature\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, 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:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "En voinut ajaa pgp:tä"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp epäonnistui"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "en voinut lukea allekirjoitusta"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "En voinut ajaa pgp:tä"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "pgp epäonnistui"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "generoi PGP-allekirjoitus"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
msgid "cannot get %s lock on database\n"
msgstr "en voi saada %s lukitusta tietokantaan"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "poissulkevaa"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "jaettua"
msgid "opening db environment %s/%s %s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "en voi saada %s lukitusta tietokantaan"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "virhe etsittäessä pakettia %s\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "en voi lukea headeria %d:stä päivittäessä"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "virhe etsittäessä pakettia %s\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "virhe poistettaessa tietuetta %s %s:stä"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "dbpath ei ole asetettu"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "väliaikainen tietokanta %s on jo olemassa"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "en voi lisätä tietuetta %d:stä"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "virhe luotaessa hakemistoa %s: %s"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "en voinut avata %s: %s"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "impossible d'ouvrir: %s\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
#, fuzzy
msgid "Old PGP signature\n"
msgstr " --sign - genre une signature PGP"
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "La construction a chou.\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "La construction a chou.\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "impossible d'ouvrir: %s\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr " --sign - genre une signature PGP"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr " --sign - genre une signature PGP"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "impossible d'ouvrir: %s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "aucun package n'a t spcifi pour la dsinstallation"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "aucun package n'a t spcifi pour l'installation"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "impossible d'ouvrir: %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "impossible d'ouvrir: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Get ekki opnað %s til lesturs: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Gat ekki keyrt pgp (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "pgp brást\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "pgp gat ekki lesið undirskriftina\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "get ekki lesið undirskriftina\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "Gat ekki keyrt gpg\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "ggp brást\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "gpg get ekki lesið undirskriftina\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr "get ekki fengið %s lás á gagnagrunninn\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "einka"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "deildann"
msgid "opening db environment %s/%s %s\n"
msgstr "opna gagnagrunnsumhverfi %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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.182 2001/10/20 20:29:02 jbj Exp $
+# $Id: ja.po,v 1.183 2001/10/20 22:31:12 jbj Exp $
#: rpm.c:227
#, c-format
msgid "rpm: %s\n"
msgid "(unknown type)"
msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
-#: lib/misc.c:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤¤Þ¤»¤ó\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: ͸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: ͸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (¥¡¼¤Îʶ¼º) "
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (¿®Íê¤Ç¤¤Ê¤¤¸°:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤¤Þ¤»¤ó: %s¡£"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
"¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥¥Ã¥×¤·¤Þ¤¹\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "½ð̾¥µ¥¤¥º: %d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "¸Å¤¤ PGP ½ð̾\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, fuzzy
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾! ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?"
-#: lib/signature.c:219
+#: lib/signature.c:221
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "½ð̾¥µ¥¤¥º: %d\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "pgp ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó(%s)"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp ¼ºÇÔ"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp ¤¬½ð̾¤ò½ñ¤¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "gpg ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg ¼ºÇÔ"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gpg ¤¬½ð̾¤ò½ñ¤¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, fuzzy, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, fuzzy, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "GPG ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "PGP ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, fuzzy
msgid "Couldn't exec pgp\n"
msgstr "pgp ¤ò¼Â¹Ô¤Ç¤¤Þ¤»¤ó"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
-#: lib/signature.c:577
+#: lib/signature.c:579
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
msgid "cannot get %s lock on database\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "½ü³°"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "¶¦Í"
msgid "opening db environment %s/%s %s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤¤Þ¤»¤ó"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥¥Ã¥×¤·¤Þ¤¹"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤¤Þ¤»¤ó"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ¤Þ¤»¤ó"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤´¹¤¨¤Þ¤¹"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "Àӽà ÆÄÀÏ %s (À»)¸¦ »ý¼ºÇÏ´Â µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: v2.0 RPMÀº Àç-¼¸íÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: À¯È¿ÇÑ ¼¸íÀÌ ¾ø½À´Ï´Ù\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature¿¡ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: À¯È¿ÇÑ ¼¸íÀÌ ¾ø½À´Ï´Ù (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "¿Ã¹Ù¸£Áö ¾ÊÀ½"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (Å°¸¦ ãÀ» ¼ö ¾øÀ½:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (Å°¸¦ ½Å·ÚÇÒ ¼ö ¾øÀ½:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "È®ÀÎ"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s (À»)¸¦ ¿ ¼ö ¾øÀ½: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "ÆÄÀÏÀÌ ¿Ã¹Ù¸£Áö(regular) ¾Ê½À´Ï´Ù -- ¿ë·® °Ë»ç¸¦ »ý·«ÇÕ´Ï´Ù\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr " ½ÇÁ¦ ¿ë·®: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "¼¸íÀÌ ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "ÀÌÀü PGP ¼¸í\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "ÀÌÀü (³»ºÎ-¿ë) ¼¸í! ¾î¶»°Ô ¾òÀ¸¼Ì½À´Ï±î!?\n"
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "¼¸í: size(%d)+pad(%d)\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "pgp (%s) (À»)¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "pgp¿¡ ½ÇÆÐÇÔ\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "pgp ¼¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP ¼¸í ¿ë·®: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "¼¸íÀ» ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "%d ¹ÙÀÌÆ®ÀÇ PGP ¼¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "gpg¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "gpg¿¡ ½ÇÆÐÇÔ\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "gpg ¼¸íÀ» ÀÛ¼ºÇϴµ¥ ½ÇÆÐÇß½À´Ï´Ù\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG ¼¸í ¿ë·®: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "%d ¹ÙÀÌÆ®ÀÇ GPG ¼¸íÀ» ¾ò¾ú½À´Ï´Ù\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "PGP¸¦ »ç¿ëÇÏ¿© ¼¸íÀ» »ý¼ºÇÕ´Ï´Ù.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "GPG¸¦ »ç¿ëÇÏ¿© ¼¸íÀ» »ý¼ºÇÕ´Ï´Ù.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr "pgp¸¦ ½ÇÇàÇÒ ¼ö ¾ø½À´Ï´Ù\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_gpg_name\" À» ¼³Á¤ÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù\n"
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ \"%%_pgp_name\" À» ¼³Á¤ÇØ ÁÖ¼Å¾ß ÇÕ´Ï´Ù\n"
msgid "cannot get %s lock on database\n"
msgstr "Àá°ÜÀÖ´Â µ¥ÀÌÅͺ£À̽ºÀÇ %s (À»)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "Á¦¿ÜÇÔ(exclusive)"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "°øÀ¯µÊ"
msgid "opening db environment %s/%s %s\n"
msgstr "¿¸° db ȯ°æ %s/%s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr "´ÝÈù db À妽º %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr "°ËÁõµÈ db À妽º %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "¿¸° db À妽º %s/%s %s ¸ðµå=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "Àá°ÜÀÖ´Â %2$s/%3$s ÀÇ %1$s (À»)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr "Àá±ä db À妽º %s/%s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s (Àº)´Â ³Ê¹« Å©°Å³ª ³Ê¹« ÀÛÀº Á¤¼ö(int) °ªÀÔ´Ï´Ù, »ý·«ÇÕ´Ï´Ù\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"·Á¸é --rebuilddb ¿É¼ÇÀ» ÀÌ¿ëÇϽʽÿä\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "ÆÐÅ°ÁöÀÇ ¼ö¸¦ ¼¼´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹ÄÚµå ¹øÈ£ %u (ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u (ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: 0x%x ÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "%2$s À妽º¿¡¼ \"%1$s\" (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "%2$s À妽º¿¡¼ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡ÇÏ´Â µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "%2$s À妽º¿¡ \"%1$s\" (À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "db3¸¦ À籸Ãà ÇÑ ÈÄ¿¡ %s (À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "%2$s ¿¡ µ¥ÀÌÅͺ£À̽º %1$s (À»)¸¦ À籸Ãà ÇÕ´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "Àӽà µ¥ÀÌÅͺ£À̽º %s (ÀÌ)°¡ ÀÌ¹Ì Á¸ÀçÇÕ´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "dbapi %d (À»)¸¦ ÅëÇØ ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "dbapi %d (À»)¸¦ ÅëÇØ »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr "%u ¿¡ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "º¹±¸Çϱâ À§ÇØ $2$s ÀÇ ÆÄÀÏÀ» $1$s ÀÇ ÆÄÀÏ·Î ±³Ã¼ÇÕ´Ï´Ù"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "feil under oppretting av midlertidig fil %s\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite feilet: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread feilet: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead feilet\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Kan ikke signere v2.0 RPM på nytt\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature feilet\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen signatur tilgjengelig\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature feilet: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen signatur tilgjengelig (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "IKKE OK"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "OK"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kunne ikke åpne spec fil %s: %s\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr "kan ikke åpne pakkedatabase i %s\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "b³±d w tworzeniu pliku tymczasowego %s"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead nie powiod³o siê\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead nie powiod³o siê\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Sygnatura nie jest dostêpna\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature nie powiod³o siê\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "NIE DOBRZE"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (BRAK KLUCZY:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr "(NIEWIARYGODNE KLUCZE:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "OK"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "Rozmiar sygnatury: %d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Brak sygnatury\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Stara sygnatura PGP\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, 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:219
+#: lib/signature.c:221
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Rozmiar sygnatury: %d\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Nie mo¿na uruchomiæ pgp"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp nie powiod³o siê"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "rozmiar sygnatury PGP: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "nie mo¿na odczytaæ sygnatury"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Mam %d bajtów sygnatury PGP\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Nie mo¿na uruchomiæ gpg"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg nie powiod³o siê"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "rozmiar sygnatury GPG: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Mam %d bajtów sygnatury GPG\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "Generowanie sygnatury: %d\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "Generowanie sygnatury: %d\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "B³êdny %%_signature spec w pliku makra.\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
msgid "cannot get %s lock on database\n"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "usuwanie indeksu plików dla %s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"nowym formacie"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "b³±d szukania pakietu %s\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "usuwanie indeksu grupy\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "usuwanie indeksu nazw\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "b³±d szukania pakietu %s\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "zmiana nazwy %s na %s\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "zmiana nazwy %s na %s\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "¶cie¿ka bazy danych nie zosta³a podana"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "odbudowywujê bazê danych w rootdir %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "tymczasowa baza danych %s ju¿ istnieje"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otwieranie starej bazy danych\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otwieranie nowej bazy danych\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "tworzenie katalogu: %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "erro ao criar o ficheiro temporário %s\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: O fwrite falhou: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: O fread falhou: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ":%s: o readLead falhou\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: não consigo assinar de novo o RPM v2.0\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: o rpmReadSignature falhou\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Nenhuma assinatura disponível\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: o rpmWriteSignature falhou: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Nenhuma assinatura disponível (RPM v1.0)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "NÃO-OK"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (FALTAM AS CHAVES:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (CHAVES SUSPEITAS:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "OK"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Não consegui abrir o %s para leitura: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
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:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr " Tamanho real: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Sem assinatura\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Assinatura PGP antiga\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Assinatura (só interna) antiga! Como é que obteve isto!?\n"
-#: lib/signature.c:219
+#: lib/signature.c:221
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Tamanho da assinatura: %d\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Não consigo executar o pgp (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "o pgp falhou\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "o pgp não conseguiu gravar a assinatura\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "tamanho da assinatura do PGP: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "incapaz de ler a assinatura\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Obtive %d bytes da assinatura PGP\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "Não consegui executar o gpg\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "o gpg falhou\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "o gpg não conseguiu gravar a assinatura\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Tamanho da assinatura do GPG: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Obtive %d bytes da assinatura do GPG\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "A gerar a assinatura usando o PGP.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "A gerar a assinatura usando o PGP.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "'Spec' %%_signature inválido no ficheiro de macros\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, 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"
msgid "cannot get %s lock on database\n"
msgstr "não consegui adquirir exclusivamente o %s na base de dados\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "exclusivo"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "partilhado"
msgid "opening db environment %s/%s %s\n"
msgstr "a aceder ao ambiente do db %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "fechei o índice do db %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "fechei o índice do db %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "a abrir o índice do db %s/%s %s modo=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "não consigo trancar o %s no %s/%s\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "tranquei o índice do db %s/%s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr "O %s tem um valor inteiro demasiado elevado ou pequeno, foi ignorado\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr "está presente uma base de dados antiga; use o --rebuildb para gerar uma base de dados no novo formato\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "erro(%d) ao contar os pacotes\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "o número do registo %d na base de dados está errado -- a ignorar.\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: não consigo ler o cabeçalho em 0x%x\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "a remover o \"%s\" do índice %s.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "a remover %d registos do índice %s.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "erro(%d) ao criar uma nova instância do pacote\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "a adicionar o \"%s\" ao índice %s.\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "a adicionar %d registos ao índice %s.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "não foi definido o dbpath"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "a reconstruir a base de dados %s em %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "A base de dados temporária %s já existe\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr "a criar a directoria %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "a criar a directoria %s: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "a abrir a base de dados antiga com a dbapi %d\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "a abrir a base de dados nova com a dbapi %d\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "não consigo adicionar o registo originalmente em %d\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr "falhou a reconstrução da base de dados: a base de dados original mantém-se\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "falhou a substituição da base de dados antiga pela nova!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "a remover a directoria %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "falhou a remoção da directoria %s: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-0400\n"
# , c-format
#: build.c:37
msgstr ""
# , c-format
-#: lib/misc.c:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "No consegui abrir: %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "No consegui abrir: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "No consegui abrir: %s\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
#, fuzzy
msgid "Old PGP signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
# , c-format
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "Construo falhou.\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
# , c-format
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "No consegui ler o arquivo spec de %s\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "Construo falhou.\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "gere assinatura PGP"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "gere assinatura PGP"
# , c-format
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr "no foi passado pacote para desinstalao"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "no foi passado pacote para desinstalao"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "no foi passado pacote para instalao"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "no foi passado pacote para desinstalao"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
# , c-format
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "No consegui abrir: %s\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "no foi passado pacote para instalao"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
# , c-format
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "No consegui abrir: %s\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
# , c-format
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "No consegui abrir: %s\n"
# , c-format
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "No consegui abrir: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
# "Content-Type: text/plain; charset=ISO-8859-1\n"
# "Content-Transfer-Encoding: 8-bit\n"
# , c-format
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "RPM verso %s\n"
# , c-format
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "No consegui abrir: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ Fwrite: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: ÏÛÉÂËÁ readLead\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: ÏÛÉÂËÁ rpmWriteSignature: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "îå Oë"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (ïôóõôóô÷õàô ëìàþé:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (îåô äï÷åòéñ ë ëìàþáí:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "Oë"
msgid "Unable to open %s for reading: %s.\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "ÎÅÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr "æÁËÔÉÞÅÓËÉÊ ÒÁÚÍÅÒ: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "óÔÁÒÁÑ ÐÏÄÐÉÓØ PGP\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
"óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?\n"
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "î×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "ÏÛÉÂËÁ pgp\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "ÏÛÉÂËÁ gpg\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ GPG\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ PGP.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ GPG.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp\n"
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ\n"
msgid "cannot get %s lock on database\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÂÁÚÙ ÄÁÎÎÙÈ\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "ÒÁÚÄÅÌÑÅÍÙÊ"
msgid "opening db environment %s/%s %s\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr "ÚÁËÒÙÔ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr "ÐÒÏ×ÅÒÅÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s mode=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÎÁ %s/%s\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr "ÚÁÂÌÏËÉÒÏ×ÁÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n"
msgstr ""
"%s ÉÍÅÅÔ ÓÌÉÛËÏÍ ÍÁÌÕÀ ÉÌÉ ÓÌÉÛËÏÍ ÂÏÌØÛÕÀ ×ÅÌÉÞÉÎÕ integer, ÐÒÏÐÕÝÅÎÏ\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"ÂÁÚÙ ÄÁÎÎÙÈ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "ÏÛÉÂËÁ(%d) ÐÒÉ ÐÏÄÓÞ£ÔÅ ÐÁËÅÔÏ×\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr "rpmdb: ÐÏÌÕÞÅÎ ÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u, ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "chyba pri vytváraní doèasného súboru %s"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: readLead zlyhalo\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead zlyhalo\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature zlyhalo\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Podpis nie je k dispozícii\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmReadSignature zlyhalo\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "NIE JE V PORIADKU"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (CHÝBAJÚCE K¥ÚÈE):"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "V PORIADKU"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "Veµkos» podpisu: %d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Podpis nie je k dispozícii\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Starý PGP podpis\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, 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:219
+#: lib/signature.c:221
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Veµkos» podpisu: %d\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Nie je mo¾né spusti» pgp"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp zlyhalo"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp sa nepodarilo zapísa» podpis"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Veµkos» PGP podpisu: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "nie je mo¾né preèíta» podpis"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Nie je mo¾né spusti» gpg"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg zlyhalo"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gpg sa nepodarilo zapísa» podpis"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Veµkos» GPG podpisu: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Preèítaný GPG podpis obsahuje %d bajtov\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "Vytvára sa PGP podpis: %d\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, 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"
msgid "cannot get %s lock on database\n"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "výhradný"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "zdieµaný"
msgid "opening db environment %s/%s %s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "otvára sa databáza s právami 0x%x v %s\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "nie je mo¾né získa» %s zámok pre databázu"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "odstraòuje sa index súborov pre %s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"databázy v novom formáte"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "chyba pri hµadaní balíka %s\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "odstraòuje sa index skupín\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "odstraòuje sa index názvov\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "chyba pri hµadaní balíka %s\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "premenováva sa %s na %s\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "premenováva sa %s na %s\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "nebola nastavená ¾iadna dbpath"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "znovu sa vytvára databáza v adresári %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "doèasná databáza %s u¾ existuje"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "vytvára sa adresár %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "vytvára sa adresár %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "otvára sa stará databáza\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "otvára sa nová databáza\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "nie je mo¾né prida» záznam pôvodne na %d"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "vytvára sa adresár %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
# -*- 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.167 2001/10/20 20:29:05 jbj Exp $
+# $Id: sl.po,v 1.168 2001/10/20 22:31:25 jbj Exp $
#
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: pisanje Fwrite je bilo neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead je bil neuspe¹en\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Sprememba podpisa RPM v2.0 ni mo¾na\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature je bil neuspe¹en\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Podpis ni na voljo\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature je bilo neuspe¹no: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "NI DOBRO"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (MANJKAJOÈI KLJUÈI:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (NEPREVERJENI KLJUÈI:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "V REDU"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s ni mo¾no odpreti za branje: %s."
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, fuzzy, c-format
msgid " Actual size: %12d\n"
msgstr "Dol¾. podpisa : %d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Podpis manjka\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Stari podpis PGP\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, 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:219
+#: lib/signature.c:221
#, fuzzy, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Dol¾. podpisa : %d\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Ni mo¾no pognati pgp (%s)"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "pgp je bil neuspe¹en"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "pgp je bil neuspe¹en pri zapisu podpisa"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "Dol¾. podpisa PGP: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "branje podpisa je bilo neuspe¹no"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Prebrano %d bajtov podpisa PGP\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Ni mo¾no pognati gpg"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "gpg je bil neuspe¹en"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "gpg je boil neuspe¹en pri zapisu podpisa"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "Dol¾. podpisa GnuPG: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Prebrano %d bajtov podpisa GnuPG\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "Ustvarjanje podpisa s PGP.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "Ustvarjanje podpisa z GnuPG.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, fuzzy, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Neveljaven %%_signature v makro-datoteki.\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, fuzzy, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
msgid "cannot get %s lock on database\n"
msgstr "datoteke ni mo¾no %s zakleniti"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "izkljuèujoèe"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "skupno"
msgid "opening db environment %s/%s %s\n"
msgstr "odpiranje db okolja %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "zaprto db kazalo %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "zaprto db kazalo %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "odpiranje db kazala %s/%s %s naèin=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ni mo¾no zakleniti z %s datotek %s/%s\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "zaklenjeno db kazalo %s/%s\n"
"%s ima preveliko ali premajhno vrednost malega (small) celega\n"
"¹tevila, prezrto\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"da bi staro obliko zbirke podatkov pretvorili v novo po¾enite --rebuilddb"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "napaka(%d) pri ¹tetju paketov"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno."
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: ni mo¾no prebrati glave pri 0x%x"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "odstranjevanje \"%s\" iz kazala %s.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "odstranjevanje %d vnosov iz kazala %s\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "napaka(%d) pri iskanju paketa %s\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, fuzzy, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "dodajanje \"%s\" v kazalo %s.\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "dodajanje %d vnosov v kazalo %s.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "dbpath ni nastavljena"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "ustvarjanje imenika: %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "ustvarjanje imenika: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "odpiranje stare podatkovne zbirke\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "zapisa ni mo¾no dodati na %d"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
#, fuzzy
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n"
"istem mestu\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, fuzzy, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "odstranjevanje imenika: %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "neuspe¹na odstranitev imenika %s: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, fuzzy, c-format
msgid "error creating temporary file %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, fuzzy, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Neuspeo 'readLead'\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: Neuspeo 'readLead'\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Potpis nije na raspolaganju\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: Neuspelo 'rpmReadSignature'\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
#, fuzzy
msgid " (MISSING KEYS:"
msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr "Ne mogu da otvorim %s za èitanje: %s"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
#, fuzzy
msgid "No signature\n"
msgstr "%s: Potpis nije na raspolaganju\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
#, fuzzy
msgid "Old PGP signature\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:163
+#: lib/signature.c:165
#, fuzzy
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Stari (interni) potpis! Odakle vam!?"
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, fuzzy, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Ne mogu da izvr¹im PGP"
-#: lib/signature.c:295
+#: lib/signature.c:297
#, fuzzy
msgid "pgp failed\n"
msgstr "PGP omanuo"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
#, fuzzy
msgid "pgp failed to write signature\n"
msgstr "PGP nije uspeo da zapi¹e potpis"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
#, fuzzy
msgid "unable to read the signature\n"
msgstr "ne mogu da proèitam potpis"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
#, fuzzy
msgid "Couldn't exec gpg\n"
msgstr "Ne mogu da izvr¹im PGP"
-#: lib/signature.c:382
+#: lib/signature.c:384
#, fuzzy
msgid "gpg failed\n"
msgstr "PGP omanuo"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
#, fuzzy
msgid "gpg failed to write signature\n"
msgstr "PGP nije uspeo da zapi¹e potpis"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
#, fuzzy
msgid "Generating signature using PGP.\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:448
+#: lib/signature.c:450
#, fuzzy
msgid "Generating signature using GPG.\n"
msgstr "napravi PGP potpis"
-#: lib/signature.c:528
+#: lib/signature.c:530
#, 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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, fuzzy, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
msgid "cannot get %s lock on database\n"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "ekskluzivno"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "deljeno"
msgid "opening db environment %s/%s %s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, fuzzy, c-format
msgid "closed db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, fuzzy, c-format
msgid "verified db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, fuzzy, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, fuzzy, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, fuzzy, c-format
msgid "locked db index %s/%s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, fuzzy, c-format
msgid "error(%d) counting packages\n"
msgstr "gre¹ka kod potrage za paketom %s\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, fuzzy, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, fuzzy, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, fuzzy, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, fuzzy, c-format
msgid "removing %d entries from %s index.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, fuzzy, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "gre¹ka kod potrage za paketom %s\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, fuzzy, c-format
msgid "adding %d entries to %s index.\n"
msgstr "gre¹ka uklanjanja sloga %s u %s"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "dbpath nije odreðen"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, fuzzy, c-format
msgid "rebuilding database %s into %s\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, fuzzy, c-format
msgid "temporary database %s already exists\n"
msgstr "privremena baza podataka %s veæ postoji"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, fuzzy, c-format
msgid "creating directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, fuzzy, c-format
msgid "creating directory %s: %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, fuzzy, c-format
msgid "opening old database with dbapi %d\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, fuzzy, c-format
msgid "opening new database with dbapi %d\n"
msgstr "rekreiraj bazu podataka iz postojeæe baze"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, fuzzy, c-format
msgid "cannot add record originally at %u\n"
msgstr "ne mogu da dodam slog originalno na %d"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, fuzzy, c-format
msgid "removing directory %s\n"
msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, fuzzy, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "neuspelo otvaranje %s: %s"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "fel när tämporärfil %s skapades\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite misslyckades: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread misslyckades: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead misslyckades\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: Kan inte signera om v2.0 RPM\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature misslyckades\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ingen signatur tillgänglig\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature misslyckades: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "EJ OK"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (SAKNADE NYCKLAR:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (EJ BETRODDA NYCKLAR:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "OK"
msgid "Unable to open %s for reading: %s.\n"
msgstr "Kan inte öppna %s för läsning: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr " Faktisk storlek: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Ingen signatur\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Gammal PGP-signatur\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
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:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "Kunde inte köra pgp (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "pgp misslyckades\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "pgp misslyckades att skriva en signatur\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP signaturstorlek: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "kan inte läsa signaturen\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "Fick %d byte PGP-signatur\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "Kunde inte köra gpg\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "gpg misslyckades\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "gpg kunde inte skriva signatur\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG-signaturstorlek: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "Fick %d byte GPG-signatur\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "Genererar signatur med PGP.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "Genererar signatur med GPG.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Felaktig %%_signature-spec i makrofil\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, 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"
msgid "cannot get %s lock on database\n"
msgstr "kan inte få %s lås på databas\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "uteslutande"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "delat"
msgid "opening db environment %s/%s %s\n"
msgstr "öppnar db-miljö %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr "stängde db-index %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr "verifierade db-index %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "öppnar db-index %s/%s %s rättighet=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "kan inte få %s lås på %s/%s\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr "låste db-index %s/%s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s har för stort eller för litet heltalsvärde, hoppar över\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"i nytt format\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "fel(%d) när paket räknades\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n"
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: kan inte läsa huvud vid 0x%x\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "tar bort \"%s\" från %s-indexet.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "tar bort %d poster från %s-indexet.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "fel(%d) vid allokering av ny paketinstans\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "lägger till \"%s\" till %s-indexet.\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "lägger till %d poster till %s-indexet.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "tar bort %s efter lyckad db3-ombyggnad.\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "ingen dbpath har satts"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "bygger om databas %s till %s\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "tillfällig databas %s existerar redan\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr "skapar katalog %s\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "skapar katalog %s: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "öppnar gammal databas med dbapi %d\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "öppnar ny databas med dbapi %d\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr "kan inte lägga till post ursprungligen vid %u\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "kunde inte ersätta gammal databas med ny databas!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "byt ut filer i %s med filer från %s för att återställa"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "tar bort katalog %s\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "kunde inte ta bort katalogen %s: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr "%s geçici dosyasý oluþturulurken hata\n"
msgid "%s: Fwrite failed: %s\n"
msgstr "%s: Fwrite baþarýsýz: %s\n"
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr "%s: Fread baþarýsýz: %s\n"
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr "%s: readLead baþarýsýz\n"
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr "%s: v2.0 RPM (eski sürüm) yeniden imzalanamaz\n"
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr "%s: rpmReadSignature baþarýsýz\n"
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr "%s: Ýmza bulundurmuyor\n"
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr "%s: rpmWriteSignature baþarýsýz: %s\n"
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr "TAMAM DEÐÝL"
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr " (EKSÝK ANAHTARLAR:"
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ") "
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr " (GÜVENCESÝZ ANAHTARLAR:"
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ")"
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr "Tamam"
msgid "Unable to open %s for reading: %s.\n"
msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr "dosya normal deðil -- uzunluk denetimi atlanýyor\n"
-#: lib/signature.c:121
+#: lib/signature.c:123
#, 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:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr " Gerçek boyut: %12d\n"
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr "Ýmza yok\n"
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr "Eski PGP imzasý\n"
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr "Eski imza !!! Bunu nasýl aldýn!?\n"
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr "Ýmza: boyut(%d)+iz(%d)\n"
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr "pgp çalýþtýrýlamadý (%s)\n"
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr "pgp hata verdi\n"
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr "pgp imzasýnýn yazýlmasý baþarýsýz\n"
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr "PGP imza uzunluðu: %d\n"
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr "imza okunamadý\n"
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr "GPG imzasýnýn %d baytý alýndý\n"
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr "gpg çalýþtýrýlamadý\n"
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr "gpg hata verdi\n"
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr "imzanýn yazýlmasý sýrasýnda gpg hata verdi\n"
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr "GPG imza uzunluðu: %d\n"
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr "GPG imzasýnýn %d baytý alýndý\n"
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr "PGP kullanarak imza üretiliyor.\n"
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr "GPG kullanýlarak imza üretiliyor.\n"
-#: lib/signature.c:528
+#: lib/signature.c:530
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:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr "Makro dosyasýnda %%_signature spec geçersiz\n"
-#: lib/signature.c:565
+#: lib/signature.c:567
#, 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:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr "Makro dosyanýzda \"%%_pgp_name\" belirtmelisiniz\n"
msgid "cannot get %s lock on database\n"
msgstr "Veritabaný için %s kilit alýnamadý\n"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr "baðdaþýk"
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr "paylaþýmlý"
msgid "opening db environment %s/%s %s\n"
msgstr "açýlýyor db ortamý %s/%s %s\n"
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr "kapandý db endeks %s/%s\n"
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr "doðrulandý db endeks %s/%s\n"
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr "açýlýyor db endeks %s/%s %s kip=0x%x\n"
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr "%s kilit %s/%s'den alýnamadý\n"
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr "kilitli db endeks %s/%s\n"
msgid "%s has too large or too small integer value, skipped\n"
msgstr "%s ya çok büyük ya da çok küçük 'integer' deðer içeriyor, atlandý\n"
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
"rebuilddb kullanýn\n"
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr "paketler taranýrken hata(%d)\n"
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n"
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n"
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr "%s: 0x%x de baþlýk okunamadý\n"
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr "\"%s\" %s indeksinden siliniyor.\n"
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr "%d girdi %s indeksinden siliniyor.\n"
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr "yeni paket örneðini tutma hatasý(%d)\n"
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr "\"%s\" %s indeksine ekleniyor.\n"
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr "%d girdi %s indeksine ekleniyor.\n"
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n"
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr "belirtilmiþ bir dbpath yok"
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n"
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr "geçici veritabaný %s zaten mevcut\n"
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr "%s dizini oluþturuluyor\n"
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr "%s dizini oluþturuluyor: %s\n"
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr "eski veritabaný dbapi %d ile açýlýyor\n"
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr "yeni veritabaný dbapi %d ile açýlýyor\n"
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr "kayýt özgün olarak %u e eklenemedi\n"
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
"veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n"
"yerinde býrakýldý\n"
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n"
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor"
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr "%s dizini siliniyor\n"
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr "%s dizininin silinmesi baþarýsýz: %s\n"
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
msgid ""
msgstr ""
"Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2001-10-20 16:18-0400\n"
+"POT-Creation-Date: 2001-10-20 18:27-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:272 lib/misc.c:277 lib/misc.c:283
+#: lib/misc.c:241 lib/misc.c:246 lib/misc.c:252
#, c-format
msgid "error creating temporary file %s\n"
msgstr ""
msgid "%s: Fwrite failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:326
+#: lib/rpmchecksig.c:107 lib/rpmchecksig.c:276
#, c-format
msgid "%s: Fread failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:401
+#: lib/rpmchecksig.c:144 lib/rpmchecksig.c:345
#, c-format
msgid "%s: readLead failed\n"
msgstr ""
msgid "%s: Can't re-sign v2.0 RPM\n"
msgstr ""
-#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:417
+#: lib/rpmchecksig.c:162 lib/rpmchecksig.c:361
#, c-format
msgid "%s: rpmReadSignature failed\n"
msgstr ""
-#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:422
+#: lib/rpmchecksig.c:166 lib/rpmchecksig.c:366
#, c-format
msgid "%s: No signature available\n"
msgstr ""
msgid "%s: rpmWriteSignature failed: %s\n"
msgstr ""
-#: lib/rpmchecksig.c:407
+#: lib/rpmchecksig.c:351
#, c-format
msgid "%s: No signature available (v1.0 RPM)\n"
msgstr ""
-#: lib/rpmchecksig.c:649
+#: lib/rpmchecksig.c:573
msgid "NOT OK"
msgstr ""
-#: lib/rpmchecksig.c:650 lib/rpmchecksig.c:664
+#: lib/rpmchecksig.c:574 lib/rpmchecksig.c:588
msgid " (MISSING KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:652 lib/rpmchecksig.c:666
+#: lib/rpmchecksig.c:576 lib/rpmchecksig.c:590
msgid ") "
msgstr ""
-#: lib/rpmchecksig.c:653 lib/rpmchecksig.c:667
+#: lib/rpmchecksig.c:577 lib/rpmchecksig.c:591
msgid " (UNTRUSTED KEYS:"
msgstr ""
-#: lib/rpmchecksig.c:655 lib/rpmchecksig.c:669
+#: lib/rpmchecksig.c:579 lib/rpmchecksig.c:593
msgid ")"
msgstr ""
-#: lib/rpmchecksig.c:663
+#: lib/rpmchecksig.c:587
msgid "OK"
msgstr ""
msgid "Unable to open %s for reading: %s.\n"
msgstr ""
-#: lib/signature.c:112
+#: lib/signature.c:114
msgid "file is not regular -- skipping size check\n"
msgstr ""
-#: lib/signature.c:121
+#: lib/signature.c:123
#, c-format
msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n"
msgstr ""
-#: lib/signature.c:126
+#: lib/signature.c:128
#, c-format
msgid " Actual size: %12d\n"
msgstr ""
-#: lib/signature.c:146
+#: lib/signature.c:148
msgid "No signature\n"
msgstr ""
-#: lib/signature.c:150
+#: lib/signature.c:152
msgid "Old PGP signature\n"
msgstr ""
-#: lib/signature.c:163
+#: lib/signature.c:165
msgid "Old (internal-only) signature! How did you get that!?\n"
msgstr ""
-#: lib/signature.c:219
+#: lib/signature.c:221
#, c-format
msgid "Signature: size(%d)+pad(%d)\n"
msgstr ""
-#: lib/signature.c:282
+#: lib/signature.c:284
#, c-format
msgid "Couldn't exec pgp (%s)\n"
msgstr ""
-#: lib/signature.c:295
+#: lib/signature.c:297
msgid "pgp failed\n"
msgstr ""
#. PGP failed to write signature
#. Just in case
-#: lib/signature.c:302
+#: lib/signature.c:304
msgid "pgp failed to write signature\n"
msgstr ""
-#: lib/signature.c:307
+#: lib/signature.c:309
#, c-format
msgid "PGP sig size: %d\n"
msgstr ""
-#: lib/signature.c:322 lib/signature.c:409
+#: lib/signature.c:324 lib/signature.c:411
msgid "unable to read the signature\n"
msgstr ""
-#: lib/signature.c:327
+#: lib/signature.c:329
#, c-format
msgid "Got %d bytes of PGP sig\n"
msgstr ""
-#: lib/signature.c:369 lib/signature.c:499
+#: lib/signature.c:371 lib/signature.c:501
msgid "Couldn't exec gpg\n"
msgstr ""
-#: lib/signature.c:382
+#: lib/signature.c:384
msgid "gpg failed\n"
msgstr ""
#. GPG failed to write signature
#. Just in case
-#: lib/signature.c:389
+#: lib/signature.c:391
msgid "gpg failed to write signature\n"
msgstr ""
-#: lib/signature.c:394
+#: lib/signature.c:396
#, c-format
msgid "GPG sig size: %d\n"
msgstr ""
-#: lib/signature.c:414
+#: lib/signature.c:416
#, c-format
msgid "Got %d bytes of GPG sig\n"
msgstr ""
-#: lib/signature.c:442
+#: lib/signature.c:444
msgid "Generating signature using PGP.\n"
msgstr ""
-#: lib/signature.c:448
+#: lib/signature.c:450
msgid "Generating signature using GPG.\n"
msgstr ""
-#: lib/signature.c:528
+#: lib/signature.c:530
msgid "Couldn't exec pgp\n"
msgstr ""
#. @notreached@
#. This case should have been screened out long ago.
-#: lib/signature.c:532 lib/signature.c:585
+#: lib/signature.c:534 lib/signature.c:587
#, c-format
msgid "Invalid %%_signature spec in macro file\n"
msgstr ""
-#: lib/signature.c:565
+#: lib/signature.c:567
#, c-format
msgid "You must set \"%%_gpg_name\" in your macro file\n"
msgstr ""
-#: lib/signature.c:577
+#: lib/signature.c:579
#, c-format
msgid "You must set \"%%_pgp_name\" in your macro file\n"
msgstr ""
msgid "cannot get %s lock on database\n"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "exclusive"
msgstr ""
-#: rpmdb/db1.c:576 rpmdb/db3.c:1211
+#: rpmdb/db1.c:576 rpmdb/db3.c:1213
msgid "shared"
msgstr ""
msgid "opening db environment %s/%s %s\n"
msgstr ""
-#: rpmdb/db3.c:710
+#: rpmdb/db3.c:712
#, c-format
msgid "closed db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:775
+#: rpmdb/db3.c:777
#, c-format
msgid "verified db index %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:988
+#: rpmdb/db3.c:990
#, c-format
msgid "opening db index %s/%s %s mode=0x%x\n"
msgstr ""
-#: rpmdb/db3.c:1209
+#: rpmdb/db3.c:1211
#, c-format
msgid "cannot get %s lock on %s/%s\n"
msgstr ""
-#: rpmdb/db3.c:1215
+#: rpmdb/db3.c:1217
#, c-format
msgid "locked db index %s/%s\n"
msgstr ""
msgid "%s has too large or too small integer value, skipped\n"
msgstr ""
-#: rpmdb/falloc.c:153
+#: rpmdb/falloc.c:183
#, c-format
msgid ""
"free list corrupt (%u)- please run\n"
msgstr ""
#. error
-#: rpmdb/rpmdb.c:1276
+#: rpmdb/rpmdb.c:1277
#, c-format
msgid "error(%d) counting packages\n"
msgstr ""
-#: rpmdb/rpmdb.c:2055 rpmdb/rpmdb.c:3264
+#: rpmdb/rpmdb.c:2061 rpmdb/rpmdb.c:3276
#, c-format
msgid "record number %u in database is bad -- skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2108
+#: rpmdb/rpmdb.c:2114
#, c-format
msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2376
+#: rpmdb/rpmdb.c:2384
#, c-format
msgid "%s: cannot read header at 0x%x\n"
msgstr ""
-#: rpmdb/rpmdb.c:2447
+#: rpmdb/rpmdb.c:2456
#, c-format
msgid "removing \"%s\" from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2456
+#: rpmdb/rpmdb.c:2465
#, c-format
msgid "removing %d entries from %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2656
+#: rpmdb/rpmdb.c:2666
#, c-format
msgid "error(%d) allocating new package instance\n"
msgstr ""
-#: rpmdb/rpmdb.c:2736
+#: rpmdb/rpmdb.c:2747
#, c-format
msgid "adding \"%s\" to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:2747
+#: rpmdb/rpmdb.c:2758
#, c-format
msgid "adding %d entries to %s index.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3150
+#: rpmdb/rpmdb.c:3162
#, c-format
msgid "removing %s after successful db3 rebuild.\n"
msgstr ""
-#: rpmdb/rpmdb.c:3183
+#: rpmdb/rpmdb.c:3195
msgid "no dbpath has been set"
msgstr ""
-#: rpmdb/rpmdb.c:3210
+#: rpmdb/rpmdb.c:3222
#, c-format
msgid "rebuilding database %s into %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3214
+#: rpmdb/rpmdb.c:3226
#, c-format
msgid "temporary database %s already exists\n"
msgstr ""
-#: rpmdb/rpmdb.c:3220
+#: rpmdb/rpmdb.c:3232
#, c-format
msgid "creating directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3222
+#: rpmdb/rpmdb.c:3234
#, c-format
msgid "creating directory %s: %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3229
+#: rpmdb/rpmdb.c:3241
#, c-format
msgid "opening old database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3240
+#: rpmdb/rpmdb.c:3252
#, c-format
msgid "opening new database with dbapi %d\n"
msgstr ""
-#: rpmdb/rpmdb.c:3304
+#: rpmdb/rpmdb.c:3316
#, c-format
msgid "cannot add record originally at %u\n"
msgstr ""
-#: rpmdb/rpmdb.c:3322
+#: rpmdb/rpmdb.c:3334
msgid "failed to rebuild database: original database remains in place\n"
msgstr ""
-#: rpmdb/rpmdb.c:3330
+#: rpmdb/rpmdb.c:3342
msgid "failed to replace old database with new database!\n"
msgstr ""
-#: rpmdb/rpmdb.c:3332
+#: rpmdb/rpmdb.c:3344
#, c-format
msgid "replace files in %s with files from %s to recover"
msgstr ""
-#: rpmdb/rpmdb.c:3342
+#: rpmdb/rpmdb.c:3354
#, c-format
msgid "removing directory %s\n"
msgstr ""
-#: rpmdb/rpmdb.c:3344
+#: rpmdb/rpmdb.c:3356
#, c-format
msgid "failed to remove directory %s: %s\n"
msgstr ""
- beecrypt is at least as good as pgp/gpg on verify, pulling the plug.
- add :base64 and :armor format extensions, dump binary tags in hex.
- proof-of-concept pubkey retrieval from RPM-{PGP,GPG}-KEY.
+- stupid macros to configure public key file paths.
- beecrypt is at least as good as pgp/gpg on verify, pulling the plug.
- add :base64 and :armor format extensions, dump binary tags in hex.
- proof-of-concept pubkey retrieval from RPM-{PGP,GPG}-KEY.
+- stupid macros to configure public key file paths.
--I. -I.. -I../build -I../lib -I../rpmio -I../popt -DHAVE_CONFIG_H -D_GNU_SOURCE
+-I. -I.. -I../build -I../lib -I../rpmio -I../beecrypt -I../popt -DHAVE_CONFIG_H -D_GNU_SOURCE
+partial
-#+forcehints
++forcehints
-warnunixlib
-warnposix
-unrecogcomments # XXX ignore doxygen markings
-#-deepbreak # shortcut 485 occurences
++strict # lclint level
+-includenest 16 # getting deep, sigh
-+checks # lclint level
-
-# --- not-yet at strict level
-#+ptrarith
-#+bitwisesigned
-#+strictops
-#+sizeoftype
+# --- +partial artifacts
+-declundef
+-exportheadervar
+-exportlocal
-#+mod-uncon # shortcut alloca is painful
-#+mod-nomods # 927 occurences
-+modglobsnomods
-+modstrictglobsnomods
+-enummemuse
+-fcnuse
+-typeuse
+-varuse
-#+mod-uncon-nomods # ~118 occurences
-#+mod-internal-strict
-#+mod-file-sys # 102 occurences
-#+globnoglobs # 1 occurence
-#+internalglobs # 38 occurences
-#+internalglobnoglobs # ???
-#+modglobsunchecked # 73 occurences
-+warnmissingglobs
-#+warnmissingglobsnomods # ???
-#+impcheckedstrictglobs # 358 occurences
-#+impcheckedstrictstatics # 1057 occurences
-#+strictusereleas
-#+strictbranchstate
-#+strictdestroy
-#+modobserveruncon # 192 occurences
-#+macroempty
-#+ansi-reserved-internal
-#+evalorderuncon # 32 occurences
-#+elseifcomplete
-#+loopswitchbreak # 286 occurences
-#+switchswitchbreak # 32 occurences
-#+looploopcontinue # 86 occurences
-#+whileblock
-+forempty
-#+forblock
-#+ifblock
-#+noeffectuncon # 228 occurences
-+topuse
-#+unusedspecial
-#+export-local
-+oldstyle
-#+sys-dir-errors
-#controlnestdepth 15
-#stringliterallen 509
-#numstructfields 127
-#numenummembers 127
+# --- not-yet at strict level
+-bitwisesigned # pita
+-elseifcomplete # 95 occurences
+-exportconst # 839 occurences
+-exportfcn
+-exporttype
+-exportvar
+-fielduse # 1 occurence <bits/sigset.h>
+-forblock # tedious
+-ifblock # tedious
+-incondefs # <bits/{ipc,pthreadtypes}.h> heartburn
+-matchfields # <bits/ipc.h> heartburn
+-namechecks # tedious ANSI compliance checks
+-numenummembers 1024 # RPMTAG has 138 members
+-numstructfields 256 # Java jni.h has 229 fields
+-ptrarith # tedious
+-strictops
+-strictusereleased
+-stringliterallen 4096 # redhat*PubKey's are big
+-whileblock # tedious
# --- not-yet at checks level
--declundef
--predboolptr # 773 occurences
-+enumint # 93 occurences
--allglobs # 131 occurrences
--ansi-reserved # goofy
--infloopsuncon # goofy
-
--proto-param-match # 59 occurences
-
-# don't-bother-me-yet parameters
--branchstate # painful
--mustfree # alloca is painful
+-ansi-reserved
++enumint
+-mustfree
+-predboolptr
+-usedef
# --- not-yet at standard level
--boolops # w->n
--predboolint # w->n
--type #
-
-# -weak paramaters
-#+boolint
-#-boolops
-#+ignorequals
-#+ignoresigns
-#-mustfree
-#+longintegral
-#+matchanyintegral
-#-nullpass
-#-observertrans
-#-predboolint
-#-predboolothers
-#-retvalint
-#-retvalother
-#-shiftsigned
+-boolops
+-predboolint
++boolint
++charint
++ignorequals
++matchanyintegral
-I$(top_srcdir)/build \
-I$(top_srcdir)/lib \
-I$(top_srcdir)/rpmio \
+ -I$(top_srcdir)/beecrypt \
-I$(top_srcdir)/popt \
@INCPATH@
};
/*@=fielduse@*/
-/*@-globuse@*/ /* FIX: rpmError not annotated yet. */
+/*@-globuse -mustmod @*/ /* FIX: rpmError not annotated yet. */
static int cvtdberr(dbiIndex dbi, const char * msg, int error, int printit)
/*@globals fileSystem @*/
/*@modifies fileSystem @*/
return rc;
}
-/*@=globuse@*/
+/*@=globuse =mustmod @*/
static int db_fini(dbiIndex dbi, const char * dbhome,
/*@null@*/ const char * dbfile,
if (dbcp) *dbcp = NULL;
rc = dbcursor->c_dup(dbcursor, dbcp, flags);
rc = cvtdberr(dbi, "dbcursor->c_dup", rc, _debug);
+ /*@-nullstate @*/ /* FIX: *dbcp can be NULL */
return rc;
+ /*@=nullstate @*/
}
static int db3c_get(dbiIndex dbi, DBC * dbcursor,
FDIO_t fadio = /*@-compmempass@*/ &fadio_s /*@=compmempass@*/ ;
/* =============================================================== */
+/**
+ * pread(2) clone.
+ */
+static
+ssize_t Pread(FD_t fd, void * buf, size_t count, _libio_off_t offset)
+ /*@globals fileSystem @*/
+ /*@modifies fd, *buf, fileSystem @*/
+{
+ if (Fseek(fd, offset, SEEK_SET) < 0)
+ return -1;
+ /*@-sizeoftype@*/
+ return Fread(buf, sizeof(char), count, fd);
+ /*@=sizeoftype@*/
+}
+
+/**
+ * pwrite(2) clone.
+ */
+static
+ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _libio_off_t offset)
+ /*@globals fileSystem @*/
+ /*@modifies fd, fileSystem @*/
+{
+ if (Fseek(fd, offset, SEEK_SET) < 0)
+ return -1;
+ /*@-sizeoftype@*/
+ return Fwrite(buf, sizeof(char), count, fd);
+ /*@=sizeoftype@*/
+}
+
/* flags are the same as for open(2) - NULL returned on error */
FD_t fadOpen(const char * path, int flags, mode_t perms)
{
dbcursor = NULL;
}
+ /*@-nullpass@*/ /* FIX: matches might be NULL */
if (rc == 0) /* success */
rc = dbiIndexSetCount(matches);
else if (rc > 0) /* error */
rpmError(RPMERR_DBCORRUPT, _("error(%d) counting packages\n"), rc);
else /* not found */
rc = 0;
+ /*@=nullpass@*/
matches = dbiFreeIndexSet(matches);
break;
case RPMMIRE_DEFAULT:
case RPMMIRE_REGEX:
+ /*@-nullpass@*/ /* LCL: annotation needs fix */
rc = regexec(mire->preg, val, 0, NULL, mire->eflags);
+ /*@=nullpass@*/
if (rc && rc != REG_NOMATCH) {
char msg[256];
(void) regerror(rc, mire->preg, msg, sizeof(msg)-1);
int rc = 0;
if (defmode == (rpmMireMode)-1) {
- /*@-mods@*/
+ /*@-mods -nullpass @*/
const char *t = rpmExpand("%{?_query_selector_match}", NULL);
- /*@=mods@*/
+ /*@=mods =nullpass @*/
if (*t == '\0' || !strcmp(t, "default"))
defmode = RPMMIRE_DEFAULT;
else if (!strcmp(t, "strcmp"))
(void) qsort(mi->mi_re, mi->mi_nre, sizeof(*mi->mi_re), mireCmp);
+ /*@-nullstate@*/ /* FIX: mi->mi_re->preg may be NULL */
return rc;
+ /*@=nullstate@*/
}
/*@=globs@*/
mi->mi_re = NULL;
mi->mi_version = NULL;
mi->mi_release = NULL;
+ /*@-nullret@*/ /* FIX: mi->mi_{keyp,dbc,set,re->preg} are NULL */
return mi;
+ /*@=nullret@*/
}
/**
(void) blockSignals(db, &signalMask);
+ /*@-nullpass -nullptrarith -nullderef @*/ /* FIX: rpmvals heartburn */
{ int dbix;
dbiIndexItem rec = dbiIndexNewItem(hdrNum, 0);
rec = _free(rec);
}
+ /*@=nullpass =nullptrarith =nullderef @*/
(void) unblockSignals(db, &signalMask);
if (hdrNum)
{ dbiIndexItem rec = dbiIndexNewItem(hdrNum, 0);
+ /*@-nullpass -nullptrarith -nullderef @*/ /* FIX: rpmvals heartburn */
if (dbiTags != NULL)
for (dbix = 0; dbix < dbiTagsMax; dbix++) {
DBC * dbcursor = NULL;
rpmtype = 0;
rpmcnt = 0;
}
+ /*@=nullpass =nullptrarith =nullderef @*/
rec = _free(rec);
}
const char * base = tagName(dbiTags[i]);
sprintf(filename, "%s/%s/%s", prefix, dbpath, base);
(void)rpmCleanPath(filename);
- if (!rpmfileexists(filename))
+ if (!rpmioFileExists(filename))
continue;
xx = unlink(filename);
}
for (i = 0; i < 16; i++) {
sprintf(filename, "%s/%s/__db.%03d", prefix, dbpath, i);
(void)rpmCleanPath(filename);
- if (!rpmfileexists(filename))
+ if (!rpmioFileExists(filename))
continue;
xx = unlink(filename);
}
const char * base = db1basename(dbiTags[i]);
sprintf(filename, "%s/%s/%s", prefix, dbpath, base);
(void)rpmCleanPath(filename);
- if (!rpmfileexists(filename))
+ if (!rpmioFileExists(filename))
continue;
xx = unlink(filename);
base = _free(base);
base = tagName(rpmtag);
sprintf(ofilename, "%s/%s/%s", prefix, olddbpath, base);
(void)rpmCleanPath(ofilename);
- if (!rpmfileexists(ofilename))
+ if (!rpmioFileExists(ofilename))
continue;
sprintf(nfilename, "%s/%s/%s", prefix, newdbpath, base);
(void)rpmCleanPath(nfilename);
for (i = 0; i < 16; i++) {
sprintf(ofilename, "%s/%s/__db.%03d", prefix, olddbpath, i);
(void)rpmCleanPath(ofilename);
- if (!rpmfileexists(ofilename))
+ if (!rpmioFileExists(ofilename))
continue;
xx = unlink(ofilename);
sprintf(nfilename, "%s/%s/__db.%03d", prefix, newdbpath, i);
base = db1basename(rpmtag);
sprintf(ofilename, "%s/%s/%s", prefix, olddbpath, base);
(void)rpmCleanPath(ofilename);
- if (!rpmfileexists(ofilename))
+ if (!rpmioFileExists(ofilename))
continue;
sprintf(nfilename, "%s/%s/%s", prefix, newdbpath, base);
(void)rpmCleanPath(nfilename);
/* Helper routines that may be generally useful.
*/
-/* XXX falloc.c: analogues to pread(3)/pwrite(3). */
-ssize_t Pread(FD_t fd, void * buf, size_t count, _libio_off_t offset)
+int rpmioSlurp(const char * fn, const byte ** bp, ssize_t * blenp)
{
- if (Fseek(fd, offset, SEEK_SET) < 0)
- return -1;
- /*@-sizeoftype@*/
- return Fread(buf, sizeof(char), count, fd);
- /*@=sizeoftype@*/
+ static ssize_t blenmax = (8 * BUFSIZ);
+ ssize_t blen = 0;
+ byte * b = NULL;
+ ssize_t size;
+ FD_t fd;
+ int rc = 0;
+
+ fd = Fopen(fn, "r.ufdio");
+ if (fd == NULL || Ferror(fd)) {
+ rc = 2;
+ goto exit;
+ }
+
+ size = fdSize(fd);
+ blen = (size >= 0 ? size : blenmax);
+ /*@-branchstate@*/
+ if (blen) {
+ int nb;
+ b = xmalloc(blen+1);
+ b[0] = '\0';
+ nb = Fread(b, sizeof(*b), blen, fd);
+ if (Ferror(fd) || (size > 0 && nb != blen)) {
+ rc = 1;
+ goto exit;
+ }
+ if (blen == blenmax && nb < blen) {
+ blen = nb;
+ b = xrealloc(b, blen+1);
+ }
+ b[blen] = '\0';
+ }
+ /*@=branchstate@*/
+
+exit:
+ if (fd) (void) Fclose(fd);
+
+ if (rc) {
+ if (b) free(b);
+ b = NULL;
+ blen = 0;
+ }
+
+ if (bp) *bp = b;
+ else if (b) free(b);
+
+ if (blenp) *blenp = blen;
+
+ return rc;
}
-ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _libio_off_t offset)
+int rpmioFileExists(const char * urlfn)
{
- if (Fseek(fd, offset, SEEK_SET) < 0)
- return -1;
- /*@-sizeoftype@*/
- return Fwrite(buf, sizeof(char), count, fd);
- /*@=sizeoftype@*/
+ const char *fn;
+ int urltype = urlPath(urlfn, &fn);
+ struct stat buf;
+
+ /*@-branchstate@*/
+ if (*fn == '\0') fn = "/";
+ /*@=branchstate@*/
+ switch (urltype) {
+ case URL_IS_FTP: /* XXX WRONG WRONG WRONG */
+ case URL_IS_HTTP: /* XXX WRONG WRONG WRONG */
+ case URL_IS_PATH:
+ case URL_IS_UNKNOWN:
+ if (Stat(fn, &buf)) {
+ switch(errno) {
+ case ENOENT:
+ case EINVAL:
+ return 0;
+ }
+ }
+ break;
+ case URL_IS_DASH:
+ default:
+ return 0;
+ /*@notreached@*/ break;
+ }
+
+ return 1;
}
static struct FDIO_s fpio_s = {
/*@globals fileSystem @*/
/*@modifies fd, *lip, fileSystem @*/;
-/**
- * pread(2) clone.
- */
-ssize_t Pread(FD_t fd, void * buf, size_t count, _libio_off_t offset)
- /*@globals fileSystem @*/
- /*@modifies fd, *buf, fileSystem @*/;
-
-/**
- * pwrite(2) clone.
- */
-ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _libio_off_t offset)
- /*@globals fileSystem @*/
- /*@modifies fd, fileSystem @*/;
-
/*@}*/
/** \ingroup rpmrpc
/*@modifies fd, *bufptr, fileSystem @*/;
#define timedRead ufdio->read
-
/*@-exportlocal@*/
/**
*/
}
/*@=shadow@*/
+/**
+ */
+int rpmioSlurp(const char * fn,
+ /*@out@*/ const byte ** bp, /*@out@*/ ssize_t * blenp)
+ /*@globals fileSystem @*/
+ /*@modifies *bp, *blenp, fileSystem @*/;
+
+/**
+ * Check if file esists using stat(2).
+ * @param urlfn file name (may be URL)
+ * @return 1 if file exists, 0 if not
+ */
+int rpmioFileExists(const char * urlfn)
+ /*@globals fileSystem @*/
+ /*@modifies fileSystem @*/;
+
#ifdef __cplusplus
}
#endif
*/
#include "system.h"
-#include "rpmpgp.h"
+#include "rpmio_internal.h"
#include "debug.h"
/*@unchecked@*/
/*@unchecked@*/
/*@null@*/ static struct pgpSig_s * _dig = NULL;
+#ifdef DYING
/* This is the unarmored RPM-GPG-KEY public key. */
const char * redhatPubKeyDSA = "\
mQGiBDfqVDgRBADBKr3Bl6PO8BQ0H8sJoD6p9U7Yyl7pjtZqioviPwXP+DCWd4u8\n\
NE++VzkxjikzpRb2+F5nGB2UdsElkgbXinswebiuOwOrocLbz6JFdDsJPcT5gVfi\n\
z15FuA==\n\
";
+#endif /* DYING */
struct pgpValTbl_s pgpSigTypeTbl[] = {
{ PGPSIGTYPE_BINARY, "Binary document signature" },
{ -1, "Unknown armor key" }
};
+/**
+ * Wrapper to free(3), hides const compilation noise, permit NULL, return NULL.
+ * @param p memory to free
+ * @return NULL always
+ */
+/*@unused@*/ static inline /*@null@*/ void *
+_free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p)
+ /*@modifies p @*/
+{
+ if (p != NULL) free((void *)p);
+ return NULL;
+}
+
static void pgpPrtNL(void)
/*@globals fileSystem @*/
/*@modifies fileSystem @*/
if (_debug)
fprintf(stderr, "*** %s %s\n", pre, t);
mp32nsethex(mpn, t);
- free(t);
+ t = _free(t);
if (_debug && _print)
printf("\t %s ", pre), mp32println(mpn->size, mpn->data);
}
return plen+hlen+1;
}
+struct pgpSig_s * pgpNewDig(void)
+{
+ struct pgpSig_s * dig = xcalloc(1, sizeof(*dig));
+ return dig;
+}
+
+struct pgpSig_s * pgpFreeDig(/*@only@*/ /*@null@*/ struct pgpSig_s * dig)
+ /*@modifies dig @*/
+{
+ if (dig != NULL) {
+ dig->signature.v3 = _free(dig->signature.v3);
+ dig->pubkey.v3 = _free(dig->pubkey.v3);
+ /*@-branchstate@*/
+ if (dig->md5ctx != NULL)
+ (void) rpmDigestFinal(dig->md5ctx, NULL, NULL, 0);
+ /*@=branchstate@*/
+ dig->md5ctx = NULL;
+ dig->md5 = _free(dig->md5);
+ /*@-branchstate@*/
+ if (dig->sha1ctx != NULL)
+ (void) rpmDigestFinal(dig->sha1ctx, NULL, NULL, 0);
+ /*@=branchstate@*/
+ dig->sha1ctx = NULL;
+ dig->sha1 = _free(dig->sha1);
+ dig->hash_data = _free(dig->hash_data);
+
+ mp32nfree(&dig->hm);
+ mp32nfree(&dig->r);
+ mp32nfree(&dig->s);
+
+ (void) rsapkFree(&dig->rsa_pk);
+ mp32nfree(&dig->m);
+ mp32nfree(&dig->c);
+ mp32nfree(&dig->rsahm);
+ dig = _free(dig);
+ }
+ return dig;
+}
+
int pgpPrtPkts(const byte *pkts, unsigned int plen, struct pgpSig_s * dig, int printing)
{
const byte *p;
}
return 0;
}
+
+int pgpReadPkts(const char * fn, const byte ** pkt, size_t * pktlen)
+{
+ const byte * b = NULL;
+ ssize_t blen;
+ const char * enc = NULL;
+ const char * crcenc = NULL;
+ byte * dec;
+ byte * crcdec;
+ size_t declen;
+ size_t crclen;
+ uint32 crcpkt, crc;
+ const char * armortype = NULL;
+ char * t, * te;
+ int pstate = 0;
+ int ec = 1; /* XXX assume failure */
+ int rc;
+
+ rc = rpmioSlurp(fn, &b, &blen);
+ if (rc || b == NULL || blen <= 0)
+ goto exit;
+
+ if (pgpIsPkt(b)) {
+#ifdef NOTYET /* XXX ASCII Pubkeys only, please. */
+ ec = 0;
+#endif
+ goto exit;
+ }
+
+#define TOKEQ(_s, _tok) (!strncmp((_s), (_tok), sizeof(_tok)-1))
+
+ for (t = (char *)b; t && *t; t = te) {
+ if ((te = strchr(t, '\n')) == NULL)
+ te = t + strlen(t);
+ else
+ te++;
+
+ switch (pstate) {
+ case 0:
+ armortype = NULL;
+ if (!TOKEQ(t, "-----BEGIN PGP "))
+ continue;
+ t += sizeof("-----BEGIN PGP ")-1;
+
+ rc = pgpValTok(pgpArmorTbl, t, te);
+ if (rc < 0)
+ goto exit;
+ if (rc != PGPARMOR_PUBKEY) /* XXX ASCII Pubkeys only, please. */
+ continue;
+ armortype = t;
+
+ t = te - (sizeof("-----\n")-1);
+ if (!TOKEQ(t, "-----\n"))
+ continue;
+ *t = '\0';
+ pstate++;
+ /*@switchbreak@*/ break;
+ case 1:
+ enc = NULL;
+ rc = pgpValTok(pgpArmorKeyTbl, t, te);
+ if (rc >= 0)
+ continue;
+ if (*t != '\n') {
+ pstate = 0;
+ continue;
+ }
+ enc = te; /* Start of encoded packets */
+ pstate++;
+ /*@switchbreak@*/ break;
+ case 2:
+ crcenc = NULL;
+ if (*t != '=')
+ continue;
+ *t++ = '\0'; /* Terminate encoded packets */
+ crcenc = t; /* Start of encoded crc */
+ pstate++;
+ /*@switchbreak@*/ break;
+ case 3:
+ pstate = 0;
+ if (!TOKEQ(t, "-----END PGP "))
+ goto exit;
+ *t = '\0'; /* Terminate encoded crc */
+ t += sizeof("-----END PGP ")-1;
+
+ if (armortype == NULL) /* XXX can't happen */
+ continue;
+ rc = strncmp(t, armortype, strlen(armortype));
+ if (rc)
+ continue;
+
+ t = te - (sizeof("-----\n")-1);
+ if (!TOKEQ(t, "-----\n"))
+ goto exit;
+
+ if (b64decode(crcenc, (void **)&crcdec, &crclen) != 0)
+ continue;
+ crcpkt = pgpGrab(crcdec, crclen);
+ crcdec = _free(crcdec);
+ if (b64decode(enc, (void **)&dec, &declen) != 0)
+ goto exit;
+ crc = pgpCRC(dec, declen);
+ if (crcpkt != crc)
+ goto exit;
+ b = _free(b);
+ b = dec;
+ blen = declen;
+ ec = 0;
+ goto exit;
+ /*@notreached@*/ /*@switchbreak@*/ break;
+ }
+ }
+
+exit:
+ if (ec == 0 && pkt)
+ *pkt = b;
+ else if (b != NULL)
+ b = _free(b);
+ if (pktlen)
+ *pktlen = blen;
+ return rc;
+}
+
/*@observer@*/ /*@unchecked@*/ /*@unused@*/
extern struct pgpValTbl_s pgpArmorKeyTbl[];
+#ifdef DYING
/**
*/
/*@observer@*/ /*@unchecked@*/ /*@unused@*/
*/
/*@observer@*/ /*@unchecked@*/ /*@unused@*/
extern const char * redhatPubKeyRSA;
+#endif /* DYING */
/**
*/
/**
*/
+int pgpReadPkts(const char * fn,
+ /*@out@*/ const byte ** pkt, /*@out@*/ size_t * pktlen)
+ /*@globals fileSystem @*/
+ /*@modifies *pkt, *pktlen, fileSystem @*/;
+
+/**
+ */
+/*@only@*/
+struct pgpSig_s * pgpNewDig(void)
+ /*@*/;
+
+/**
+ */
+/*@only@*/ /*@null@*/
+struct pgpSig_s * pgpFreeDig(/*@only@*/ /*@null@*/ struct pgpSig_s * dig)
+ /*@modifies dig @*/;
+
+/**
+ */
/*@unused@*/ static inline
int pgpIsPkt(const byte * p)
/*@*/
fprintf(stderr, "==> FAILED: rc %d\n", rc);
{ DIGEST_CTX ctx = rpmDigestInit(PGPHASHALGO_SHA1, RPMDIGEST_NONE);
+ pgpPktSigV3 dsig = dig->signature.v3;
const char * digest = NULL;
size_t digestlen = 0;
const char * txt = "abc";
rpmDigestUpdate(ctx, txt, strlen(txt));
- rpmDigestUpdate(ctx, &dig->sig.v3.sigtype, dig->sig.v3.hashlen);
+ rpmDigestUpdate(ctx, &dsig->sigtype, dsig->hashlen);
rpmDigestFinal(ctx, (void **)&digest, &digestlen, 1);
mp32nzero(&dig->hm);mp32nsethex(&dig->hm, digest);
#include "popt.h"
#include "debug.h"
-static int rpmSlurp(const char * fn, const byte ** bp, ssize_t * blenp)
-{
- static ssize_t blenmax = (8 * BUFSIZ);
- ssize_t blen = 0;
- byte * b = NULL;
- ssize_t size;
- FD_t fd;
- int rc = 0;
-
- fd = Fopen(fn, "r.ufdio");
- if (fd == NULL || Ferror(fd)) {
- rc = 2;
- goto exit;
- }
-
- size = fdSize(fd);
- blen = (size >= 0 ? size : blenmax);
- if (blen) {
- int nb;
- b = xmalloc(blen+1);
- b[0] = '\0';
- nb = Fread(b, sizeof(*b), blen, fd);
- if (Ferror(fd) || (size > 0 && nb != blen)) {
- rc = 1;
- goto exit;
- }
- if (blen == blenmax && nb < blen) {
- blen = nb;
- b = xrealloc(b, blen+1);
- }
- b[blen] = '\0';
- }
-
-exit:
- if (fd) (void) Fclose(fd);
-
- if (rc) {
- if (b) free(b);
- b = NULL;
- blen = 0;
- }
-
- if (bp) *bp = b;
- else if (b) free(b);
-
- if (blenp) *blenp = blen;
-
- return rc;
-}
-
-static int rpmReadPgpPkt(const char * fn, const byte ** pkt, size_t * pktlen)
-{
- const byte * b = NULL;
- ssize_t blen;
- const char * enc = NULL;
- const char * crcenc = NULL;
- byte * dec;
- byte * crcdec;
- size_t declen;
- size_t crclen;
- uint32 crcpkt, crc;
- const char * armortype = NULL;
- char * t, * te;
- int pstate = 0;
- int ec = 1; /* XXX assume failure */
- int rc;
-
- rc = rpmSlurp(fn, &b, &blen);
- if (rc || b == NULL || blen <= 0)
- goto exit;
-
- if (pgpIsPkt(b)) {
- ec = 0;
- goto exit;
- }
-
-#define TOKEQ(_s, _tok) (!strncmp((_s), (_tok), sizeof(_tok)-1))
-
- for (t = (char *)b; t && *t; t = te) {
- if ((te = strchr(t, '\n')) == NULL)
- te = t + strlen(t);
- else
- te++;
-
- switch (pstate) {
- case 0:
- armortype = NULL;
- if (!TOKEQ(t, "-----BEGIN PGP "))
- continue;
- t += sizeof("-----BEGIN PGP ")-1;
-
- rc = pgpValTok(pgpArmorTbl, t, te);
- if (rc < 0)
- goto exit;
- armortype = t;
-
- t = te - (sizeof("-----\n")-1);
- if (!TOKEQ(t, "-----\n"))
- continue;
- *t = '\0';
- pstate++;
- break;
- case 1:
- enc = NULL;
- rc = pgpValTok(pgpArmorKeyTbl, t, te);
- if (rc >= 0)
- continue;
- if (*t != '\n') {
- pstate = 0;
- continue;
- }
- enc = te; /* Start of encoded packets */
- pstate++;
- break;
- case 2:
- crcenc = NULL;
- if (*t != '=')
- continue;
- *t++ = '\0'; /* Terminate encoded packets */
- crcenc = t; /* Start of encoded crc */
- pstate++;
- break;
- case 3:
- pstate = 0;
- if (!TOKEQ(t, "-----END PGP "))
- goto exit;
- *t = '\0'; /* Terminate encoded crc */
- t += sizeof("-----END PGP ")-1;
-
- if (armortype == NULL) /* XXX can't happen */
- continue;
- rc = strncmp(t, armortype, strlen(armortype));
- if (rc)
- continue;
-
- t = te - (sizeof("-----\n")-1);
- if (!TOKEQ(t, "-----\n"))
- goto exit;
-
- if (b64decode(crcenc, (void **)&crcdec, &crclen) != 0)
- continue;
- crcpkt = pgpGrab(crcdec, crclen);
- free(crcdec);
- if (b64decode(enc, (void **)&dec, &declen) != 0)
- goto exit;
- crc = pgpCRC(dec, declen);
- if (crcpkt != crc)
- goto exit;
- free((void *)b);
- b = dec;
- blen = declen;
- ec = 0;
- goto exit;
- /*@notreached@*/ break;
- }
- }
-
-exit:
- if (ec == 0 && pkt)
- *pkt = b;
- else if (b != NULL)
- free((void *)b);
- if (pktlen)
- *pktlen = blen;
- return rc;
-}
-
static int printing = 0;
static int _debug = 0;
if ((args = poptGetArgs(optCon)) != NULL)
while ((fn = *args++) != NULL) {
- rc = rpmReadPgpPkt(fn, &pkt, &pktlen);
+ rc = pgpReadPkts(fn, &pkt, &pktlen);
if (rc || pkt == NULL || pktlen <= 0)
continue;