diff --git a/CHANGES b/CHANGES index a6cbdd221..204721b52 100644 --- a/CHANGES +++ b/CHANGES @@ -115,12 +115,16 @@ - opaque (well mostly) rpmTransactionSet using methods. - Grand Renaming of rpm data types. - fix: synthesize unpacking progress callbacks for packages w/o files. - - add rpmds/rpmfi/rpmts methods to bindings. - - re-enable rpm-python sub-package. + - python: add rpmds/rpmfi/rpmts methods. + - python: re-enable rpm-python sub-package. - fix: resurrect "()(64bit)" markings using objdump. - - add rpmal/rpmte/rpmfd methods to bindings. - - drop cpanflute and cpanflute2, will be in Chip's CPAN package now. - - eliminate legacy db methods, add ts.dbMatch method. + - python: add rpmal/rpmte/rpmfd methods. + - perl: drop cpanflute and cpanflute2, will be in Chip's CPAN package. + - python: eliminate legacy db methods, add ts.dbMatch method. + - fix: use getgrnam, not getpwnam, to convert gid -> group. + - fix: avoid sign extension, use only 16 bits, when verifying rdev. + - python: separate {add,del}Macro methods, prepare for macro dictionary. + - i18n: copy current production PO files to top-of-stack. 4.0.3 -> 4.0.4: - solaris: translate i86pc to i386 (#57182). diff --git a/Makefile.am b/Makefile.am index 03fcd3848..b096db5a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -6,6 +6,7 @@ EXTRA_DIST = CHANGES CREDITS Doxyheader GROUPS README.amiga INSTALL \ RPM-GPG-KEY RPM-PGP-KEY \ autodeps/none autodeps/*.prov autodeps/*.req autogen.sh \ config.site db db3/configure gendiff installplatform platform* \ + xmlspec/Makefile xmlspec/*.cpp xmlspec/*.h xmlspec/*.xml \ Perl-RPM po/*.in po/*.po po/rpm.pot \ rpm.magic rpmpopt-$(VERSION) rpmqv.c rpm.c diff --git a/beecrypt/config.h b/beecrypt/config.h index 395f05f49..e7d3b2631 100644 --- a/beecrypt/config.h +++ b/beecrypt/config.h @@ -50,7 +50,7 @@ #define LEADING_UNDERSCORE 0 #define NO_UNDERSCORES 1 -#define JAVAGLUE 1 +#define JAVAGLUE 0 #define HAVE_ERRNO_H 1 #define HAVE_STRING_H 1 diff --git a/lib/verify.c b/lib/verify.c index 8ae977ad8..f9990109f 100644 --- a/lib/verify.c +++ b/lib/verify.c @@ -33,17 +33,16 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, unsigned short fmode = rpmfiFMode(fi); rpmfileAttrs fileAttrs = rpmfiFFlags(fi); rpmVerifyAttrs flags = rpmfiVFlags(fi); - const char * filespec = rpmfiFN(fi); - const char * rootDir; - int rc; + const char * fn = rpmfiFN(fi); + const char * rootDir = rpmtsRootDir(ts); struct stat sb; + int rc; /* Prepend the path to root (if specified). */ - rootDir = rpmtsRootDir(ts); if (rootDir && *rootDir != '\0' && !(rootDir[0] == '/' && rootDir[1] == '\0')) { - int nb = strlen(filespec) + strlen(rootDir) + 1; + int nb = strlen(fn) + strlen(rootDir) + 1; char * tb = alloca(nb); char * t; @@ -54,8 +53,8 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, --t; *t = '\0'; } - t = stpcpy(t, filespec); - filespec = t; + t = stpcpy(t, fn); + fn = t; } *result = RPMVERIFY_NONE; @@ -73,7 +72,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, break; } - if (filespec == NULL || Lstat(filespec, &sb) != 0) { + if (fn == NULL || Lstat(fn, &sb) != 0) { *result |= RPMVERIFY_LSTATFAIL; return 1; } @@ -118,7 +117,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, if (flags & RPMVERIFY_MD5) { unsigned char md5sum[16]; - rc = domd5(filespec, md5sum, 0); + rc = domd5(fn, md5sum, 0); if (rc) *result |= (RPMVERIFY_READFAIL|RPMVERIFY_MD5); else { @@ -132,7 +131,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, char linkto[1024]; int size = 0; - if ((size = Readlink(filespec, linkto, sizeof(linkto)-1)) == -1) + if ((size = Readlink(fn, linkto, sizeof(linkto)-1)) == -1) *result |= (RPMVERIFY_READLINKFAIL|RPMVERIFY_LINKTO); else { const char * flink = rpmfiFLink(fi); @@ -175,7 +174,9 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, { *result |= RPMVERIFY_RDEV; } else if (S_ISDEV(fmode) && S_ISDEV(sb.st_mode)) { - if (sb.st_rdev != rpmfiFRdev(fi)) + uint_16 st_rdev = (sb.st_rdev & 0xffff); + uint_16 frdev = (rpmfiFRdev(fi) & 0xffff); + if (st_rdev != frdev) *result |= RPMVERIFY_RDEV; } } @@ -193,7 +194,7 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi, } if (flags & RPMVERIFY_GROUP) { - const char * name = uidToUname(sb.st_gid); + const char * name = gidToGname(sb.st_gid); const char * fgroup = rpmfiFGroup(fi); if (name == NULL || fgroup == NULL || strcmp(name, fgroup)) *result |= RPMVERIFY_GROUP; diff --git a/po/cs.po b/po/cs.po index 169af1e2a..b9e7b8bb2 100644 --- a/po/cs.po +++ b/po/cs.po @@ -416,7 +416,7 @@ msgstr "pro sestaven #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "k podepsání nezadány žádné balíčky" +msgstr "nezadány žádné balíčky pro instalaci" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1456,7 +1456,7 @@ msgstr "%s: %-45s ANO (rpmlib poskytuje)\n" #: lib/depends.c:453 #, fuzzy msgid "(db files)" -msgstr "špatný db soubor %s\n" +msgstr "Špatný soubor: %s: %s\n" #: lib/depends.c:465 #, fuzzy @@ -1619,14 +1619,14 @@ msgid "" msgstr "tato verze RPM podporuje práci s balíčky s verzí <= 4\n" #: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593 -#, c-format +#, fuzzy, c-format msgid "%s: rpmReadSignature failed\n" -msgstr "%s: rpmReadSignature selhalo\n" +msgstr "%s: readLead selhalo\n" #: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598 #, c-format msgid "%s: No signature available\n" -msgstr "%s: Není dostupný žádný podpis\n" +msgstr "" #: lib/package.c:251 lib/rpmchecksig.c:498 #, fuzzy, c-format @@ -1789,7 +1789,7 @@ msgstr "nespou #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "nekontrolovat MD5 souborů v balíčku" +msgstr "nekontrolovat závislosti balíčků" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2230,7 +2230,7 @@ msgstr " #: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 #, fuzzy, c-format msgid "malformed %s: %s\n" -msgstr "Nemohu číst %s: %s.\n" +msgstr "nemohu zjistit stav %s: %s\n" #: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 #, fuzzy, c-format @@ -2280,12 +2280,12 @@ msgstr "bal #: lib/rpmal.c:688 #, fuzzy msgid "(added files)" -msgstr "špatný db soubor %s\n" +msgstr "Špatný soubor: %s: %s\n" #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s ANO (db poskytuje)\n" +msgstr "%s: %-45s ANO (přidáno poskytuje)\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2302,24 +2302,24 @@ msgid "%s: Fwrite failed: %s\n" msgstr "%s: Fwrite selhalo: %s\n" #: lib/rpmchecksig.c:174 -#, fuzzy, c-format +#, c-format msgid "%s: Can't sign v1 packaging\n" -msgstr "%s: RPM v1.0 nelze podepsat\n" +msgstr "" #: lib/rpmchecksig.c:178 -#, fuzzy, c-format +#, c-format msgid "%s: Can't re-sign v2 packaging\n" -msgstr "%s: Nemohu znovu podepsat RPM v2.0\n" +msgstr "" #: lib/rpmchecksig.c:277 -#, c-format +#, fuzzy, c-format msgid "%s: writeLead failed: %s\n" -msgstr "%s: writeLead selhalo: %s\n" +msgstr "%s: Fwrite selhalo: %s\n" #: lib/rpmchecksig.c:283 -#, c-format +#, fuzzy, c-format msgid "%s: rpmWriteSignature failed: %s\n" -msgstr "%s: rpmWriteSignature selhalo: %s\n" +msgstr "%s: Fwrite selhalo: %s\n" #: lib/rpmchecksig.c:512 #, fuzzy, c-format @@ -2329,31 +2329,32 @@ msgstr "%s: readLead selhalo\n" #: lib/rpmchecksig.c:583 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" -msgstr "%s: Není dostupný žádný podpis (RPM v1.0)\n" +msgstr "" #: lib/rpmchecksig.c:828 +#, fuzzy msgid "NOT OK" -msgstr "NENÍ OK" +msgstr "NE " #: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843 msgid " (MISSING KEYS:" -msgstr " (CHYBÍ KLÍČ:" +msgstr "" #: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845 msgid ") " -msgstr ") " +msgstr "" #: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846 msgid " (UNTRUSTED KEYS:" -msgstr " (NEDŮVĚRYHODNÝ KLÍČ:" +msgstr "" #: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848 msgid ")" -msgstr ")" +msgstr "" #: lib/rpmchecksig.c:842 msgid "OK" -msgstr "OK" +msgstr "" #: lib/rpmds.c:423 lib/rpmds.c:582 msgid "NO " @@ -2386,90 +2387,93 @@ msgstr "bal #: lib/rpminstall.c:165 msgid "Preparing..." -msgstr "Připravuji..." +msgstr "" #: lib/rpminstall.c:167 +#, fuzzy msgid "Preparing packages for installation..." -msgstr "Připravuji balíčky pro instalaci..." +msgstr "nezadány žádné balíčky pro instalaci" #: lib/rpminstall.c:310 -#, c-format +#, fuzzy, c-format msgid "Retrieving %s\n" -msgstr "Stahuji %s\n" +msgstr "RPM verze %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist #: lib/rpminstall.c:323 -#, c-format +#, fuzzy, c-format msgid " ... as %s\n" -msgstr " ... jako %s\n" +msgstr "%s uloženo jako %s\n" #: lib/rpminstall.c:327 #, c-format msgid "skipping %s - transfer failed - %s\n" -msgstr "přeskakuji %s - přenos selhal - %s\n" +msgstr "" #: lib/rpminstall.c:424 -#, c-format +#, fuzzy, c-format msgid "package %s is not relocateable\n" -msgstr "balíček %s není přemístitelný\n" +msgstr "cesta %s v balíčku %s není přemístitelná" #: lib/rpminstall.c:474 -#, c-format +#, fuzzy, c-format msgid "error reading from file %s\n" -msgstr "chyba při čtení ze souboru %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: lib/rpminstall.c:480 #, c-format msgid "file %s requires a newer version of RPM\n" -msgstr "soubor %s vyžaduje novější verzi RPM\n" +msgstr "" #: lib/rpminstall.c:492 lib/rpminstall.c:739 -#, c-format +#, fuzzy, c-format msgid "%s cannot be installed\n" -msgstr "%s nemůže být nainstalován\n" +msgstr "neinstalován " #: lib/rpminstall.c:528 -#, c-format +#, fuzzy, c-format msgid "found %d source and %d binary packages\n" -msgstr "nalezeno %d zdrojových a %d binárních balíčků\n" +msgstr "vytvoření zdrojového a binárního balíčku z " #: lib/rpminstall.c:542 lib/rpminstall.c:1070 #, fuzzy msgid "Failed dependencies:\n" -msgstr "nevyřešené závislosti:\n" +msgstr "chybné závislosti při sestavování:\n" #: lib/rpminstall.c:549 msgid " Suggested resolutions:\n" msgstr "" #: lib/rpminstall.c:579 +#, fuzzy msgid "installing binary packages\n" -msgstr "instaluji binární balíčky\n" +msgstr "nainstalovat balíček" #: lib/rpminstall.c:599 -#, c-format +#, fuzzy, c-format msgid "cannot open file %s: %s\n" -msgstr "nemohu otevřít soubor %s: %s\n" +msgstr "nemohu vytvořit %s: %s\n" #: lib/rpminstall.c:674 -#, c-format +#, fuzzy, c-format msgid "\"%s\" specifies multiple packages\n" -msgstr "\"%s\" určuje více balíčků\n" +msgstr "Položka %s musí být v balíčku přítomna: %s\n" #: lib/rpminstall.c:699 +#, fuzzy msgid "removing these packages would break dependencies:\n" -msgstr "odstranění těchto balíčků by porušilo závislosti:\n" +msgstr "dotaz/ověření balíčků vyžadujících závislost" #: lib/rpminstall.c:726 -#, c-format +#, fuzzy, c-format msgid "cannot open %s: %s\n" -msgstr "nemohu otevřít %s: %s\n" +msgstr "nemohu vytvořit %s: %s\n" #: lib/rpminstall.c:732 -#, c-format +#, fuzzy, c-format msgid "Installing %s\n" -msgstr "Instaluji %s\n" +msgstr "řádek: %s\n" #: lib/rpminstall.c:1064 #, c-format @@ -2477,9 +2481,9 @@ msgid "rollback %d packages to %s" msgstr "" #: lib/rpmlead.c:47 -#, c-format +#, fuzzy, c-format msgid "read failed: %s (%d)\n" -msgstr "čtení selhalo: %s (%d)\n" +msgstr "%s: Fread selhalo: %s\n" #. @observer@ #: lib/rpmps.c:207 @@ -2544,7 +2548,7 @@ msgstr "bal #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n" +msgstr "balíček %s koliduje: %s\n" #: lib/rpmps.c:278 #, c-format @@ -2562,104 +2566,104 @@ msgid "is needed by" msgstr " je nutné pro %s-%s-%s\n" #: lib/rpmrc.c:191 -#, c-format +#, fuzzy, c-format msgid "missing second ':' at %s:%d\n" -msgstr "chybí druhá ':' u %s:%d\n" +msgstr "Chybí '(' v %s %s\n" #: lib/rpmrc.c:194 #, c-format msgid "missing architecture name at %s:%d\n" -msgstr "chybí název architektury u %s:%d\n" +msgstr "" #: lib/rpmrc.c:348 #, c-format msgid "Incomplete data line at %s:%d\n" -msgstr "Neúplný datový řádek %s:%d\n" +msgstr "" #: lib/rpmrc.c:353 #, c-format msgid "Too many args in data line at %s:%d\n" -msgstr "Příliš mnoho parametrů v datovém řádku %s:%d\n" +msgstr "" #: lib/rpmrc.c:361 -#, c-format +#, fuzzy, c-format msgid "Bad arch/os number: %s (%s:%d)\n" -msgstr "Chybné číslo architektury nebo OS: %s (%s:%d)\n" +msgstr "Špatná práva adresáře: %s(%s)\n" #: lib/rpmrc.c:398 #, c-format msgid "Incomplete default line at %s:%d\n" -msgstr "Neúplný standardní řádek %s:%d\n" +msgstr "" #: lib/rpmrc.c:403 #, c-format msgid "Too many args in default line at %s:%d\n" -msgstr "Příliš mnoho parametrů ve výchozím řádku u %s:%d\n" +msgstr "" #. XXX Feof(fd) #: lib/rpmrc.c:573 -#, c-format +#, fuzzy, c-format msgid "Failed to read %s: %s.\n" -msgstr "Nemohu číst %s: %s.\n" +msgstr "nemohu zjistit stav %s: %s\n" #: lib/rpmrc.c:611 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" -msgstr "chybí ':' (nalezeno na 0x%02x) v %s:%d\n" +msgstr "" #: lib/rpmrc.c:628 lib/rpmrc.c:702 -#, c-format +#, fuzzy, c-format msgid "missing argument for %s at %s:%d\n" -msgstr "chybí parametr pro %s u %s:%d\n" +msgstr "Sestavuji cílové platformy: %s\n" #: lib/rpmrc.c:645 lib/rpmrc.c:667 -#, c-format +#, fuzzy, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" -msgstr "expanze %s selhala na %s:%d \"%s\"\n" +msgstr "nemohu otevřít %s: %s\n" #: lib/rpmrc.c:654 -#, c-format +#, fuzzy, c-format msgid "cannot open %s at %s:%d: %s\n" -msgstr "nemohu otevřít soubor %s na %s:%d: %s\n" +msgstr "nemohu vytvořit %s: %s\n" #: lib/rpmrc.c:694 -#, c-format +#, fuzzy, c-format msgid "missing architecture for %s at %s:%d\n" -msgstr "chybí architektura pro %s u %s:%d\n" +msgstr "řádek %d: Špatný formát BuildArchitecture: %s\n" #: lib/rpmrc.c:761 -#, c-format +#, fuzzy, c-format msgid "bad option '%s' at %s:%d\n" -msgstr "chybná volba '%s' u %s:%d\n" +msgstr "nemohu zjistit stav %s: %m\n" #: lib/rpmrc.c:1386 -#, c-format +#, fuzzy, c-format msgid "Unknown system: %s\n" -msgstr "Neznámý systém: %s\n" +msgstr "Neznámý typ ikony: %s\n" #: lib/rpmrc.c:1387 msgid "Please contact rpm-list@redhat.com\n" -msgstr "Zkontaktujte prosím rpm-list@redhat.com\n" +msgstr "" #: lib/rpmrc.c:1612 -#, c-format +#, fuzzy, c-format msgid "Cannot expand %s\n" -msgstr "Nemohu expandovat %s\n" +msgstr "nemohu znovu otevřít payload: %s\n" #: lib/rpmrc.c:1617 #, c-format msgid "Cannot read %s, HOME is too large.\n" -msgstr "Nemohu číst %s, HOME je příliš velký.\n" +msgstr "" #: lib/rpmrc.c:1634 -#, c-format +#, fuzzy, c-format msgid "Unable to open %s for reading: %s.\n" -msgstr "Nemohu otevřít %s pro čtení: %s.\n" +msgstr "Nemohu otevřít %s: %s\n" #: lib/rpmts.c:131 lib/rpmts.c:173 -#, c-format +#, fuzzy, c-format msgid "cannot open Packages database in %s\n" -msgstr "nemohu otevřít databázi balíčků v %s\n" +msgstr "nemohu otevřít RPM databázi v %s\n" #. Get available space on mounted file systems. #: lib/rpmts.c:560 @@ -2668,35 +2672,36 @@ msgstr "z #: lib/signature.c:126 msgid "file is not regular -- skipping size check\n" -msgstr "není obyčejný soubor -- přeskakuji kontrolu velikosti\n" +msgstr "" #: lib/signature.c:144 #, 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:149 #, c-format msgid " Actual size: %12d\n" -msgstr "Aktuální délka: %12d\n" +msgstr "" #: lib/signature.c:169 +#, fuzzy msgid "No signature\n" -msgstr "Chybí podpis\n" +msgstr "generovat PGP/GPG podpis" #: lib/signature.c:173 +#, fuzzy msgid "Old PGP signature\n" -msgstr "Starý PGP podpis\n" +msgstr "vynechat případné PGP podpisy" #: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" -msgstr "Starý (pouze interní) podpis! Jak jste to získali!?\n" +msgstr "" #: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" -msgstr "Podpisu: velikost(%d)+vata(%d)\n" +msgstr "" #: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677 #: lib/signature.c:710 @@ -2705,65 +2710,70 @@ msgid "Could not exec %s: %s\n" msgstr "Nemohu spustit %s: %s\n" #: lib/signature.c:329 +#, fuzzy msgid "pgp failed\n" -msgstr "pgp selhalo\n" +msgstr "%s selhalo\n" #. PGP failed to write signature #. Just in case #: lib/signature.c:336 +#, fuzzy msgid "pgp failed to write signature\n" -msgstr "pgp selhalo při zápisu podpisu\n" +msgstr "generovat PGP/GPG podpis" #: lib/signature.c:341 #, c-format msgid "PGP sig size: %d\n" -msgstr "Velikost podpisu PGP: %d\n" +msgstr "" #: lib/signature.c:355 lib/signature.c:453 +#, fuzzy msgid "unable to read the signature\n" -msgstr "nemohu číst podpis\n" +msgstr "Nemohu přečíst hlavičku z %s: %s\n" #: lib/signature.c:360 #, c-format msgid "Got %d bytes of PGP sig\n" -msgstr "Přečteno %d bajtů PGP podpisu\n" +msgstr "" #: lib/signature.c:427 +#, fuzzy msgid "gpg failed\n" -msgstr "gpg selhalo\n" +msgstr "%s selhalo\n" #. GPG failed to write signature #. Just in case #: lib/signature.c:434 +#, fuzzy msgid "gpg failed to write signature\n" -msgstr "gpg selhalo při zápisu podpisu\n" +msgstr "generovat PGP/GPG podpis" #: lib/signature.c:439 #, c-format msgid "GPG sig size: %d\n" -msgstr "Velikost GPG podpisu: %d\n" +msgstr "" #: lib/signature.c:458 #, c-format msgid "Got %d bytes of GPG sig\n" -msgstr "Přečteno %d bajtů GPG podpisu\n" +msgstr "" #. @notreached@ #. This case should have been screened out long ago. #: lib/signature.c:715 lib/signature.c:766 -#, c-format +#, fuzzy, c-format msgid "Invalid %%_signature spec in macro file\n" -msgstr "Špatná %%_signature spec v souboru maker\n" +msgstr "Špatná %%_signature spec v souboru maker.\n" #: lib/signature.c:745 #, 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" +msgstr "" #: lib/signature.c:758 #, 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" +msgstr "" #: lib/signature.c:802 #, fuzzy @@ -2775,8 +2785,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "nekontrolovat SHA1 digest v hlavičce" #: lib/signature.c:1073 #, fuzzy @@ -2790,7 +2801,7 @@ msgstr "" #: lib/signature.c:1184 #, fuzzy msgid "V3 DSA signature: " -msgstr "Chybí podpis\n" +msgstr "generovat PGP/GPG podpis" #: lib/signature.c:1259 msgid "Verify signature: BAD PARAMETERS\n" @@ -2801,108 +2812,109 @@ msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" #: lib/signature.c:1290 -#, fuzzy, c-format +#, c-format msgid "Signature: UNKNOWN (%d)\n" -msgstr "Podpisu: velikost(%d)+vata(%d)\n" +msgstr "" #: lib/transaction.c:104 #, c-format msgid "%s skipped due to missingok flag\n" -msgstr "%s přeskočeno, protože chybí příznak\n" +msgstr "" #. @innercontinue@ #: lib/transaction.c:893 #, c-format msgid "excluding directory %s\n" -msgstr "vynechávám adresář %s\n" +msgstr "" #: lib/verify.c:284 -#, c-format +#, fuzzy, c-format msgid "missing %s" -msgstr "chybí %s" +msgstr "chybí { po %" #: lib/verify.c:380 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " -msgstr "Nevyřešené závislosti pro %s-%s-%s: " +msgstr "chybné závislosti při sestavování:\n" #: rpmdb/db3.c:156 #, c-format msgid "db%d error(%d) from %s: %s\n" -msgstr "db%d chyba (%d) z %s: %s\n" +msgstr "" #: rpmdb/db3.c:159 #, c-format msgid "db%d error(%d): %s\n" -msgstr "db%d chyba (%d): %s\n" +msgstr "" #: rpmdb/db3.c:185 #, c-format msgid "closed db environment %s/%s\n" -msgstr "uzavřeno DB prostředí %s/%s\n" +msgstr "" #: rpmdb/db3.c:203 #, c-format msgid "removed db environment %s/%s\n" -msgstr "odstraněno db prostředí %s/%s\n" +msgstr "" #: rpmdb/db3.c:243 #, c-format msgid "opening db environment %s/%s %s\n" -msgstr "otevírám db environment %s/%s %s\n" +msgstr "" #: rpmdb/db3.c:678 #, c-format msgid "closed db index %s/%s\n" -msgstr "uzavřen db index %s/%s\n" +msgstr "" #: rpmdb/db3.c:745 #, c-format msgid "verified db index %s/%s\n" -msgstr "uzavřen db index %s/%s\n" +msgstr "" #: rpmdb/db3.c:967 #, 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" +msgstr "" #: rpmdb/db3.c:1183 -#, c-format +#, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" -msgstr "nemohu zamknout databázi zámkem %s v %s/%s\n" +msgstr "nemohu vytvořit %s: %s\n" #: rpmdb/db3.c:1185 msgid "exclusive" -msgstr "výhradní" +msgstr "" #: rpmdb/db3.c:1185 +#, fuzzy msgid "shared" -msgstr "sdílený" +msgstr "sdílen v síti " #: rpmdb/db3.c:1189 #, c-format msgid "locked db index %s/%s\n" -msgstr "uzamčen db index %s/%s\n" +msgstr "" #: rpmdb/dbconfig.c:396 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" -msgstr "neznámá db volba: \"%s\" ignorována\n" +msgstr "" #: rpmdb/dbconfig.c:434 #, c-format msgid "%s has invalid numeric value, skipped\n" -msgstr "%s má neplatnou numerickou hodnotu, přeskočeno\n" +msgstr "" #: rpmdb/dbconfig.c:443 #, c-format msgid "%s has too large or too small long value, skipped\n" -msgstr "%s má moc velkou nebo moc malou long hodnotu, přeskočeno\n" +msgstr "" #: rpmdb/dbconfig.c:452 #, c-format 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" +msgstr "" #. This should not be allowed #. @-modfilesys@ @@ -2982,582 +2994,401 @@ msgstr "na konci v #: rpmdb/poptDB.c:19 msgid "initialize database" -msgstr "inicializovat databázi" +msgstr "" #: rpmdb/poptDB.c:21 msgid "rebuild database inverted lists from installed package headers" -msgstr "znovusestavení databáze z instalovaných hlaviček balíčků" +msgstr "" #: rpmdb/poptDB.c:24 msgid "verify database files" msgstr "zkontrolovat databázové soubory" #: rpmdb/poptDB.c:26 +#, fuzzy msgid "generate headers compatible with (legacy) rpm[23] packaging" -msgstr "generovat hlavičky kompatibilní RPM verze 2 a 3" +msgstr "generovat hlavičky balíčků kompatibilní s RPM verze 2 a 3" #. @-modfilesys@ #: rpmdb/rpmdb.c:166 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" -msgstr "dbiTagsInit: neznámá značka: \"%s\" ignorována\n" +msgstr "" #: rpmdb/rpmdb.c:238 -#, c-format +#, fuzzy, c-format msgid "cannot open %s index using db%d - %s (%d)\n" -msgstr "nemohu otevřít index %s při používání db%d - %s (%d)\n" +msgstr "nemohu otevřít RPM databázi v %s\n" #: rpmdb/rpmdb.c:260 -#, c-format +#, fuzzy, c-format msgid "cannot open %s index\n" -msgstr "nemohu otevřít index %s\n" +msgstr "nemohu otevřít RPM databázi v %s\n" #: rpmdb/rpmdb.c:701 msgid "no dbpath has been set\n" -msgstr "nebyla nastavena dbpath\n" +msgstr "" #: rpmdb/rpmdb.c:991 rpmdb/rpmdb.c:1120 rpmdb/rpmdb.c:1169 rpmdb/rpmdb.c:2043 #: rpmdb/rpmdb.c:2148 rpmdb/rpmdb.c:2835 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" -msgstr "chyba(%d) při získávání záznamu \"%s\" z indexu %s\n" +msgstr "" #: rpmdb/rpmdb.c:1384 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" -msgstr "chyba(%d) při ukládání záznamu %s do %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: rpmdb/rpmdb.c:1966 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" -msgstr "rpmdb: porušená položka hlavičky #%u, přeskakuji.\n" +msgstr "" #: rpmdb/rpmdb.c:2231 #, c-format msgid "%s: cannot read header at 0x%x\n" -msgstr "%s: nemohu číst hlavičku na adrese 0x%x\n" +msgstr "" #: rpmdb/rpmdb.c:2292 #, fuzzy, c-format msgid "error(%d) setting header #%d record for %s removal\n" -msgstr "chyba(%d) při získávání záznamu \"%s\" z indexu %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: rpmdb/rpmdb.c:2403 -#, c-format +#, fuzzy, c-format msgid "removing \"%s\" from %s index.\n" -msgstr "odstraňuji \"%s\" z indexu %s.\n" +msgstr "odstraňuji %s-%s-%s \"%s\" z tsort relací.\n" #: rpmdb/rpmdb.c:2407 -#, c-format +#, fuzzy, c-format msgid "removing %d entries from %s index.\n" -msgstr "odstraňuji %d položek z indexu %s.\n" +msgstr "odstraňuji %s-%s-%s \"%s\" z tsort relací.\n" #: rpmdb/rpmdb.c:2434 #, fuzzy, c-format msgid "error(%d) setting \"%s\" records from %s index\n" -msgstr "chyba(%d) při získávání záznamu \"%s\" z indexu %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: rpmdb/rpmdb.c:2455 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" -msgstr "chyba(%d) při ukládání záznamu %s do %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: rpmdb/rpmdb.c:2465 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" -msgstr "chyba(%d) při odstraňování záznamu %s z %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: rpmdb/rpmdb.c:2607 #, c-format msgid "error(%d) allocating new package instance\n" -msgstr "chyba(%d) při alokaci nové instance balíčku\n" +msgstr "" #: rpmdb/rpmdb.c:2811 #, c-format msgid "adding \"%s\" to %s index.\n" -msgstr "přidávám \"%s\" do indexu %s\n" +msgstr "" #: rpmdb/rpmdb.c:2815 #, c-format msgid "adding %d entries to %s index.\n" -msgstr "přidávám %d položek do indexu %s.\n" +msgstr "" #: rpmdb/rpmdb.c:2851 #, c-format msgid "error(%d) storing record %s into %s\n" -msgstr "chyba(%d) při ukládání záznamu %s do %s\n" +msgstr "" #: rpmdb/rpmdb.c:3190 #, c-format msgid "removing %s after successful db3 rebuild.\n" -msgstr "odstraňuji %s po úspěšném znovusestavení db3.\n" +msgstr "" #: rpmdb/rpmdb.c:3225 msgid "no dbpath has been set" -msgstr "nebyla nastavena dbpath" +msgstr "" #: rpmdb/rpmdb.c:3252 -#, c-format +#, fuzzy, c-format msgid "rebuilding database %s into %s\n" -msgstr "databázi %s převádím do %s\n" +msgstr "znovu vytvořit databázi z existující databáze" #: rpmdb/rpmdb.c:3256 #, c-format msgid "temporary database %s already exists\n" -msgstr "dočasná databáze %s již existuje\n" +msgstr "" #: rpmdb/rpmdb.c:3262 -#, c-format +#, fuzzy, c-format msgid "creating directory %s\n" -msgstr "vytvářím adresář %s\n" +msgstr "chyba při vytváření dočasného souboru %s\n" #: rpmdb/rpmdb.c:3264 -#, c-format +#, fuzzy, c-format msgid "creating directory %s: %s\n" -msgstr "vytvářím adresář %s: %s\n" +msgstr "nemohu provést dotaz %s: %s\n" #: rpmdb/rpmdb.c:3271 #, c-format msgid "opening old database with dbapi %d\n" -msgstr "otevírám starou databázi s dbapi %d\n" +msgstr "" #: rpmdb/rpmdb.c:3282 #, c-format msgid "opening new database with dbapi %d\n" -msgstr "otevírám novou databázi s dbapi %d\n" +msgstr "" #: rpmdb/rpmdb.c:3306 #, 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" +msgstr "" #: rpmdb/rpmdb.c:3346 #, c-format msgid "cannot add record originally at %u\n" -msgstr "nemohu přidat záznam - původně u %d\n" +msgstr "" #: rpmdb/rpmdb.c:3364 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:3372 msgid "failed to replace old database with new database!\n" -msgstr "starou databázi nelze nahradit novou databází!\n" +msgstr "" #: rpmdb/rpmdb.c:3374 #, c-format msgid "replace files in %s with files from %s to recover" -msgstr "pro obnovení nahraďte soubory v %s soubory z %s" +msgstr "" #: rpmdb/rpmdb.c:3384 #, c-format msgid "removing directory %s\n" -msgstr "mažu adresář %s\n" +msgstr "" #: rpmdb/rpmdb.c:3386 -#, c-format +#, fuzzy, c-format msgid "failed to remove directory %s: %s\n" -msgstr "nemohu odstranit adresář %s: %s\n" +msgstr "Nelze přejmenovat %s na %s: %m\n" #: rpmio/macro.c:225 #, c-format msgid "======================== active %d empty %d\n" -msgstr "======================== aktivní %d prázdný %d\n" +msgstr "" #. XXX just in case #: rpmio/macro.c:354 #, c-format msgid "%3d>%*s(empty)" -msgstr "%3d>%*s(prázdný)" +msgstr "" #: rpmio/macro.c:397 #, c-format msgid "%3d<%*s(empty)\n" -msgstr "%3d<%*s(prázdný)\n" +msgstr "" #: rpmio/macro.c:632 #, c-format msgid "Macro %%%s has unterminated body\n" -msgstr "Makro %%%s má neukončené tělo\n" +msgstr "" #: rpmio/macro.c:661 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" -msgstr "Makro %%%s má neplatné jméno (%%define)\n" +msgstr "" #: rpmio/macro.c:667 #, c-format msgid "Macro %%%s has unterminated opts\n" -msgstr "Makro %%%s má neukončené parametry\n" +msgstr "" #: rpmio/macro.c:672 #, c-format msgid "Macro %%%s has empty body\n" -msgstr "Makro %%%s má prázdné tělo\n" +msgstr "" #: rpmio/macro.c:678 #, c-format msgid "Macro %%%s failed to expand\n" -msgstr "Expanze makra %%%s selhala\n" +msgstr "" #: rpmio/macro.c:715 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" -msgstr "Makro %%%s má neplatné jméno (%%undefine)\n" +msgstr "" #: rpmio/macro.c:831 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" -msgstr "Makro %%%s (%s) nebylo použito pod úrovní %d\n" +msgstr "" #: rpmio/macro.c:951 -#, c-format +#, fuzzy, c-format msgid "Unknown option %c in %s(%s)\n" -msgstr "Neznámá volba: %c v %s(%s)\n" +msgstr "Neznámý typ ikony: %s\n" #: rpmio/macro.c:1154 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" -msgstr "Hloubka rekurze(%d) je větší, než max(%d)\n" +msgstr "" #: rpmio/macro.c:1224 rpmio/macro.c:1241 -#, c-format +#, fuzzy, c-format msgid "Unterminated %c: %s\n" -msgstr "Neukončené %c: %s\n" +msgstr "Glob není dovolen: %s\n" #: rpmio/macro.c:1282 #, c-format msgid "A %% is followed by an unparseable macro\n" -msgstr "Za %% následuje neparsovatelné makro\n" +msgstr "" #: rpmio/macro.c:1411 #, c-format msgid "Macro %%%.*s not found, skipping\n" -msgstr "makro %%%.*s nenalezeno, přeskakuji\n" +msgstr "" #: rpmio/macro.c:1488 msgid "Target buffer overflow\n" -msgstr "Cílový buffer přetekl\n" +msgstr "" #. XXX Fstrerror #: rpmio/macro.c:1687 rpmio/macro.c:1693 -#, c-format +#, fuzzy, c-format msgid "File %s: %s\n" -msgstr "Soubor %s: %s\n" +msgstr "soubor %s: %s\n" #: rpmio/macro.c:1696 #, c-format msgid "File %s is smaller than %u bytes\n" -msgstr "Soubor %s je menší, než %d bajtů\n" +msgstr "" #: rpmio/rpmio.c:654 msgid "Success" -msgstr "Úspěch" +msgstr "" #: rpmio/rpmio.c:657 msgid "Bad server response" -msgstr "Chybná odezva FTP serveru" +msgstr "" #: rpmio/rpmio.c:660 msgid "Server I/O error" -msgstr "I/O chyba serveru" +msgstr "" #: rpmio/rpmio.c:663 msgid "Server timeout" -msgstr "Timeout serveru" +msgstr "" #: rpmio/rpmio.c:666 +#, fuzzy msgid "Unable to lookup server host address" -msgstr "Nelze převést jméno na IP adresu počítače" +msgstr "Nemohu otevřít cíl pro podepsání %s: %s\n" #: rpmio/rpmio.c:669 msgid "Unable to lookup server host name" -msgstr "Nelze převést IP na jméno počítače" +msgstr "" #: rpmio/rpmio.c:672 msgid "Failed to connect to server" -msgstr "Připojení k serveru selhalo" +msgstr "" #: rpmio/rpmio.c:675 msgid "Failed to establish data connection to server" -msgstr "Selhalo navázání datového spojení se serverem" +msgstr "" #: rpmio/rpmio.c:678 msgid "I/O error to local file" -msgstr "I/O chyba při lokálním souboru" +msgstr "" #: rpmio/rpmio.c:681 msgid "Error setting remote server to passive mode" -msgstr "Chyba při nastavení vzdáleného serveru do pasivního režimu" +msgstr "" #: rpmio/rpmio.c:684 +#, fuzzy msgid "File not found on server" -msgstr "Soubor nebyl na serveru nalezen" +msgstr "Soubor nenalezen: %s\n" #: rpmio/rpmio.c:687 msgid "Abort in progress" -msgstr "Probíhá přerušení" +msgstr "" #: rpmio/rpmio.c:691 +#, fuzzy msgid "Unknown or unexpected error" -msgstr "Neznámá nebo neočekávaná chyba" +msgstr "neočekávaný zdroj dotazu" #: rpmio/rpmio.c:1363 #, c-format msgid "logging into %s as %s, pw %s\n" -msgstr "přihlašování na %s jako %s, heslo %s\n" +msgstr "" #: rpmio/rpmlog.c:58 +#, fuzzy msgid "(no error)" -msgstr "(žádná chyba)" +msgstr "(chyba: 0x%x)" #. !< RPMLOG_EMERG #: rpmio/rpmlog.c:129 rpmio/rpmlog.c:130 rpmio/rpmlog.c:131 +#, fuzzy msgid "fatal error: " -msgstr "fatální chyba: " +msgstr "Interní chyba" #. !< RPMLOG_CRIT #: rpmio/rpmlog.c:132 +#, fuzzy msgid "error: " -msgstr "chyba: " +msgstr "(chyba: 0x%x)" #. !< RPMLOG_ERR #: rpmio/rpmlog.c:133 msgid "warning: " -msgstr "varování: " +msgstr "" #: rpmio/rpmmalloc.c:15 #, c-format msgid "memory alloc (%u bytes) returned NULL.\n" -msgstr "alokace paměti (%u bajtů) vrátila NULL.\n" +msgstr "" #: rpmio/url.c:118 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" -msgstr "varování: u %p ctrl %p nrefs != 0 (%s %s)\n" +msgstr "" #: rpmio/url.c:138 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" -msgstr "varování: u %p data %p nrefs != 0 (%s %s)\n" +msgstr "" #: rpmio/url.c:166 -#, fuzzy, c-format +#, c-format msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" -msgstr "varování: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" +msgstr "" #: rpmio/url.c:262 #, c-format msgid "Password for %s@%s: " -msgstr "Heslo pro %s@%s: " +msgstr "" #: rpmio/url.c:287 rpmio/url.c:313 -#, c-format +#, fuzzy, c-format msgid "error: %sport must be a number\n" -msgstr "chyba: %sport musí být číslo\n" +msgstr "řádek %d: Položka Epoch/Serial musí být číslo: %s\n" #: rpmio/url.c:462 +#, fuzzy msgid "url port must be a number\n" -msgstr "url port musí být číslo\n" +msgstr "řádek %d: Položka Epoch/Serial musí být číslo: %s\n" #. XXX Fstrerror #: rpmio/url.c:528 -#, c-format +#, fuzzy, c-format msgid "failed to create %s: %s\n" -msgstr "nemohu vytvořit %s: %s\n" - -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Špatné magické číslo" - -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: Fread selhalo: %s\n" - -#~ msgid "%s-%s-%s: immutable header region digest check failed\n" -#~ msgstr "%s-%s-%s: kontrola digestu v hlavičce selhala\n" - -#~ msgid "" -#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" -#~ msgstr "" -#~ "Porušený řetězec v balíčku na offsetu %d(0x%08x), zkouším znovu " -#~ "připojit...\n" - -#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" -#~ msgstr "Připojuji porušený řetězec na offsetu %d(0x%08x).\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "zavřen db soubor %s\n" - -#~ msgid "removed db file %s\n" -#~ msgstr "odstraněn db soubor %s\n" - -#~ msgid "bad db file %s\n" -#~ msgstr "špatný db soubor %s\n" - -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "otevírám db soubor %s mode 0x%x\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "nemohu vytvořit zámek %s na databázi\n" - -#~ msgid "error(%d) counting packages\n" -#~ msgstr "chyba(%d) při počítání balíčků\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "porušen free list (%u) - spusťte prosím\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "Pokud tento příkaz nevyřeší problém, naleznete více informací\n" -#~ "na http://www.rpm.org nebo v diskuzním listu rpm-list@redhat.com.\n" - -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "databáze je ve starém formátu; použijte --rebuilddb pro převod do nového\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "nekontrolovat cesty symbolických linek" - -#~ msgid "failed dependencies:\n" -#~ msgstr "nevyřešené závislosti:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) přidáno do keše závislostí.\n" - -#~ msgid "(unknown type)" -#~ msgstr "(neznámý typ)" - -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "režim kontroly (zastaralý)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "podepsat balíček (zahodit aktuální podpis)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "podepsat balíček (zahodit aktuální podpis)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "balíček neobsahuje ani uživatelská jména ani seznam id (nemělo by se " -#~ "nikdy stát)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "balíček neobsahuje ani jména skupin ani seznam id (nemělo by se nikdy " -#~ "stát)\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "podepsat balíček (zahodit aktuální podpis)" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "Generuji PGP podpis.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "Generuji GPG podpis.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "nezadány žádné balíčky pro odstranění" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Nemohu spustit pgp (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Nemohu spustit gpg\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Nemohu spustit pgp\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== relokace\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d vynechávám %s\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d přemísťuji %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "vynechávám multilib cestu %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "vynechávám %s %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "přemísťuji %s do %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "přemísťuji adresář %s do %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s ANO (přidány soubory)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "balíček %s koliduje: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-s (kešováno)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s ANO (db soubory)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s ANO (db balíček)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s NE\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s ANO (přidáno poskytuje)\n" +msgstr "nemohu zjistit stav %s: %s\n" #~ msgid "cannot open rpm database in %s\n" #~ msgstr "nemohu otevřít RPM databázi v %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "chyba: nemohu otevřít %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "přidat do balíčku podpis" - -#~ msgid "verify package signature" -#~ msgstr "ověřit podpis v balíčku" - -#~ msgid "skip any GPG signatures" -#~ msgstr "vynechat případné GPG podpisy" - -#~ msgid "skip any PGP signatures" -#~ msgstr "vynechat případné PGP podpisy" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "nekontrolovat md5 součty souborů" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "k dotazu na všechny balíčky zadány parametry navíc" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "pro kontrolu všech balíčků zadány parametry navíc" - -#~ msgid "no packages given for signature check" -#~ msgstr "ke kontrole podpisu nezadány žádné balíčky" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3910,6 +3741,9 @@ msgstr "nemohu vytvo #~ "ověřit instalaci balíčku použitím stejných voleb pro specifikaci balíčku, " #~ "jako pro -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "nekontrolovat md5 součty souborů" + #~ msgid "do not verify file attributes" #~ msgstr "nekontrolovat atributy souborů" @@ -4028,12 +3862,21 @@ msgstr "nemohu vytvo #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "přidat do balíčku podpis" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " --K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "vynechat případné PGP podpisy" + +#~ msgid "skip any GPG signatures" +#~ msgstr "vynechat případné GPG podpisy" + #~ msgid "make sure a valid database exists" #~ msgstr "zajistit, aby existovala platná databáze" @@ -4088,8 +3931,102 @@ msgstr "nemohu vytvo #~ msgstr "" #~ "--nomd5 může být použit jen při kontrole podpisů a ověřování balíčků" -#~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" -#~ msgstr "Nemohu spustit pgp. Vynechte kontrolu PGP pomocí --nopgp.\n" +#~ msgid "no packages given for signature check" +#~ msgstr "ke kontrole podpisu nezadány žádné balíčky" -#~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" -#~ msgstr "Nelze spustit gpg. Vynechte kontrolu GPG pomocí --nogpg.\n" +#~ msgid "no packages given for signing" +#~ msgstr "k podepsání nezadány žádné balíčky" + +#~ msgid "no packages given for uninstall" +#~ msgstr "nezadány žádné balíčky pro odstranění" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "k dotazu na všechny balíčky zadány parametry navíc" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "pro kontrolu všech balíčků zadány parametry navíc" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s ANO (přidány soubory)\n" + +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-s (kešováno)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s ANO (db soubory)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s ANO (db balíček)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s NE\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) přidáno do keše závislostí.\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "balíček %s-%s-%s má nesplněné požadavky: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "balíček %s koliduje: %s\n" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "režim kontroly (zastaralý)" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: Fread selhalo: %s\n" + +#, fuzzy +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "nemohu znovu otevřít payload: %s\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "Generuji podpis: %d\n" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "Generuji podpis: %d\n" + +#, fuzzy +#~ msgid "========== relocations\n" +#~ msgstr "========== ukládání tsort relací\n" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "OS je vyřazen: %s\n" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%s vytvořen jako %s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "Provádění(%s): %s\n" + +#, fuzzy +#~ msgid "relocating %s to %s\n" +#~ msgstr "Provádění(%s): %s\n" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "nemohu otevřít RPM databázi v %s\n" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "skupina %s neobsahuje žádné balíčky\n" + +#~ msgid "(unknown type)" +#~ msgstr "(neznámý typ)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Nemohu spustit %s: %s\n" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Nemohu spustit %s: %s\n" + +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Nemohu spustit %s: %s\n" diff --git a/po/da.po b/po/da.po index 5a17177dd..0bf9233b0 100644 --- a/po/da.po +++ b/po/da.po @@ -411,7 +411,7 @@ msgstr "ingen tar-arkiver angivet til opbygning" #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "ingen pakker angivet ved signering" +msgstr "ingen pakker angivet ved installation" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1792,7 +1792,7 @@ msgstr "udf #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "verificér ikke filerne i pakke" +msgstr "undlad at tjekke pakkers afhćngighedskrav" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2301,7 +2301,7 @@ msgstr "ugyldig db-fil %s\n" #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s JA (db tilfřrer)\n" +msgstr "%s: %-45s JA (tilfřjede 'provide')\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2562,7 +2562,7 @@ msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" +msgstr "pakke %s skaber konflikt: %s\n" #: lib/rpmps.c:278 #, c-format @@ -2794,8 +2794,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "verificér ikke filerne i pakke" #: lib/signature.c:1073 #, fuzzy @@ -3391,199 +3392,9 @@ msgstr "url-port skal v msgid "failed to create %s: %s\n" msgstr "kunne ikke oprette %s: %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Ugyldigt magisk tal" - -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: lćs manifest mislykkedes: %s\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "lukket db-fil %s\n" - -#~ msgid "removed db file %s\n" -#~ msgstr "fjernet db-fil %s\n" - -#~ msgid "bad db file %s\n" -#~ msgstr "ugyldig db-fil %s\n" - -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "ĺbner db-fil %s modus 0x%x\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "kunne ikke opnĺ %s lĺs pĺ database\n" - -#~ msgid "error(%d) counting packages\n" -#~ msgstr "fejl(%d) ved optćlling af pakker\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "fri-listen er ikke konsistent (%u)- křr venligst\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "Mere information kan findes pĺ http://www.rpm.org ellerpostlisten rpm-" -#~ "list@redhat.com\n" -#~ "hvis \"rpm --rebuilddb\" ikke lřser problemet.\n" - -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "gammelt databaseformat til stede; brug --rebuilddb for at oprette en " -#~ "database med det nye format\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "verificér ikke filerne i pakke" - -#~ msgid "failed dependencies:\n" -#~ msgstr "afhćngighedskrav, der ikke kunne imřdekommes:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) tilfřjet til afhćngigheds-buffer.\n" - -#~ msgid "(unknown type)" -#~ msgstr "(ukendt type)" - -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "gammel rpm verifikationstilstand" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "underskriv en pakke (slet nuvćrende signatur)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "underskriv en pakke (slet nuvćrende signatur)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "pakken har hverken en liste over brugernavne eller id (det burde ikke " -#~ "kunne ske)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "pakken har hverken en liste over gruppenavne eller id (det burde ikke " -#~ "kunne ske)\n" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "========== tsort'er pakker\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "underskriv en pakke (slet nuvćrende signatur)" - -#, fuzzy -#~ msgid "========== Package RSA signature\n" -#~ msgstr "========== tsort'er pakker\n" - -#, fuzzy -#~ msgid "========== Package DSA signature\n" -#~ msgstr "========== tsort'er pakker\n" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "Genererer signatur med pgp.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "Genererer signatur med gpg.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "ingen pakker angivet ved afinstallation" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Kunne ikke křre pgp (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Kunne ikke křre gpg\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Kunne ikke křre pgp\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== gemmer omrokeringer\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d ekskluderer %s\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d omrokerer %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "ekskluderer multilib-sti %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "ekskluderer %s %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "omrokerer %s til %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "omrokerer kataloget %s til %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s JA (tilfřjede filer)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "pakke %s skaber konflikt: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-3s (husket)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s JA (db-filer)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s JA (db-pakke)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s NEJ\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s JA (tilfřjede 'provide')\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "kan ikke ĺbne rpm-database i %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "kunne ikke ĺbne %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "tilfřj signatur til pakke" - -#~ msgid "verify package signature" -#~ msgstr "verificér pakkesignatur" - -#~ msgid "skip any GPG signatures" -#~ msgstr "overspring eventuelle GPG-signaturer" - -#~ msgid "skip any PGP signatures" -#~ msgstr "overspring eventuelle PGP-signaturer" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "tjek ikke filers md5-checksummer" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "ekstra parametre angivet ved forespřrgsel pĺ alle pakker" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "ekstra parametre angivet ved verifikation af alle pakker" - -#~ msgid "no packages given for signature check" -#~ msgstr "ingen pakker angivet ved signatur-tjek" - #~ msgid "rpm: %s\n" #~ msgstr "rpm %s\n" @@ -3930,6 +3741,9 @@ msgstr "kunne ikke oprette %s: %s\n" #~ "options as -q" #~ msgstr "tjek en pakkes installation ved brug af samme pakkeangivelse som -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "tjek ikke filers md5-checksummer" + #~ msgid "do not verify file attributes" #~ msgstr "tjek ikke filegenskaber" @@ -4048,12 +3862,21 @@ msgstr "kunne ikke oprette %s: %s\n" #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "tilfřj signatur til pakke" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " -K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "overspring eventuelle PGP-signaturer" + +#~ msgid "skip any GPG signatures" +#~ msgstr "overspring eventuelle GPG-signaturer" + #~ msgid "make sure a valid database exists" #~ msgstr "tjek at der eksisterer en gyldig database" @@ -4110,12 +3933,147 @@ msgstr "kunne ikke oprette %s: %s\n" #~ "verification" #~ msgstr "--nomd5 kan kun bruges ved signaturkontrol og pakkeverifikation" +#~ msgid "no packages given for signature check" +#~ msgstr "ingen pakker angivet ved signatur-tjek" + +#~ msgid "no packages given for signing" +#~ msgstr "ingen pakker angivet ved signering" + +#~ msgid "no packages given for uninstall" +#~ msgstr "ingen pakker angivet ved afinstallation" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "ekstra parametre angivet ved forespřrgsel pĺ alle pakker" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "ekstra parametre angivet ved verifikation af alle pakker" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s JA (tilfřjede filer)\n" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-3s (husket)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s JA (db-filer)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s JA (db-pakke)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s NEJ\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) tilfřjet til afhćngigheds-buffer.\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "pakke %s skaber konflikt: %s\n" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "gammel rpm verifikationstilstand" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: lćs manifest mislykkedes: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "kunne ikke ĺbne %s/packages.rpm\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "Genererer signatur med pgp.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "Genererer signatur med gpg.\n" + +#~ msgid "========== relocations\n" +#~ msgstr "========== gemmer omrokeringer\n" + +#~ msgid "%5d exclude %s\n" +#~ msgstr "%5d ekskluderer %s\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d omrokerer %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "ekskluderer multilib-sti %s%s\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "ekskluderer %s %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "omrokerer %s til %s\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "omrokerer kataloget %s til %s\n" + +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "pakken har hverken en liste over brugernavne eller id (det burde ikke " +#~ "kunne ske)\n" + +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "pakken har hverken en liste over gruppenavne eller id (det burde ikke " +#~ "kunne ske)\n" + +#~ msgid "closed db file %s\n" +#~ msgstr "lukket db-fil %s\n" + +#~ msgid "removed db file %s\n" +#~ msgstr "fjernet db-fil %s\n" + +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "ĺbner db-fil %s modus 0x%x\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "kunne ikke opnĺ %s lĺs pĺ database\n" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "fri-listen er ikke konsistent (%u)- křr venligst\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "Mere information kan findes pĺ http://www.rpm.org ellerpostlisten rpm-" +#~ "list@redhat.com\n" +#~ "hvis \"rpm --rebuilddb\" ikke lřser problemet.\n" + +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "gammelt databaseformat til stede; brug --rebuilddb for at oprette en " +#~ "database med det nye format\n" + +#~ msgid "error(%d) counting packages\n" +#~ msgstr "fejl(%d) ved optćlling af pakker\n" + +#~ msgid "(unknown type)" +#~ msgstr "(ukendt type)" + +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Kunne ikke křre pgp (%s)\n" + +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Kunne ikke křre gpg\n" + #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "Kunne ikke křre pgp. Brug --nopgp for at overspringe PGP-tjek.\n" #~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" #~ msgstr "Kunne ikke křre gpg. Brug --nogpg for at overspringe GPG-tjek.\n" +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Kunne ikke křre pgp\n" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "generér PGP/GPG-signatur" @@ -4295,6 +4253,9 @@ msgstr "kunne ikke oprette %s: %s\n" #~ msgid "locked db index %s/%s\n" #~ msgstr "lĺste db-index %s/%s\n" +#~ msgid "========== tsorting packages\n" +#~ msgstr "========== tsort'er pakker\n" + #~ msgid "" #~ "--notriggers may only be specified during package installation, erasure, " #~ "and verification" diff --git a/po/de.po b/po/de.po index 1d971105f..856db61c3 100644 --- a/po/de.po +++ b/po/de.po @@ -476,7 +476,7 @@ msgstr "Es wurde keine tar-Datei f #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "Es wurden keine Pakete für die Signatur angeben" +msgstr "Es wurden keine Pakete für die Installation angegeben" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1578,9 +1578,8 @@ msgid "(cached)" msgstr "" #: lib/depends.c:416 -#, fuzzy msgid "(rpmrc provides)" -msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" +msgstr "" #: lib/depends.c:432 #, fuzzy @@ -1594,9 +1593,8 @@ msgid "(db files)" msgstr "Öffnen von %s fehlgeschlagen: %s" #: lib/depends.c:465 -#, fuzzy msgid "(db provides)" -msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" +msgstr "" #: lib/depends.c:478 #, fuzzy @@ -1937,7 +1935,7 @@ msgstr "Keine Stufen ausf #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "Paket installieren" +msgstr "Dateiabhängigkeiten nicht überprüfen" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2471,9 +2469,8 @@ msgid "(added files)" msgstr "Öffnen von %s fehlgeschlagen: %s" #: lib/rpmal.c:765 -#, fuzzy msgid "(added provide)" -msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" +msgstr "" #: lib/rpmchecksig.c:58 #, fuzzy, c-format @@ -2980,8 +2977,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "Paket installieren" #: lib/signature.c:1073 #, fuzzy @@ -3596,166 +3594,10 @@ msgstr "Fehler: der FTP-Port muss eine Zahl sein\n" msgid "failed to create %s: %s\n" msgstr "anlegen von %s fehlgeschlagen\n" -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: ťreadLeadŤ fehlgeschlagen\n" - -# , c-format -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "Öffnen von %s fehlgeschlagen: %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "Datenbank aus der vorhandenen neu erstellen" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "kann %s lock für die Datenbank nicht bekommen" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "Fehler beim Suchen nach Paket %s\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "Paket installieren" - -#~ msgid "failed dependencies:\n" -#~ msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" - -#~ msgid "(unknown type)" -#~ msgstr "(unbekannter Typ)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "Anfrage-Modus" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "nicht möglich, die Signatur zu lesen" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "nicht möglich, die Signatur zu lesen" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "PGP-Signatur generieren" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "PGP-Signatur generieren" - -#~ msgid "no packages given for uninstall" -#~ msgstr "Es wurden keine Pakete für die Deinstallation angegeben" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Konnte pgp nicht durchführen" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Konnte pgp nicht durchführen" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Konnte pgp nicht durchführen" - -# , c-format -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "Hole %s heraus\n" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "kann Datei %s nicht öffnen: " - -# , c-format -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "Hole %s heraus\n" - -# , c-format -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "Hole %s heraus\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" - -#, fuzzy -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "Paket %s wird nicht in %s aufgeführt" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" - -# , c-format -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "Öffnen von %s fehlgeschlagen: %s" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" -#, fuzzy -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "Signatur einem Paket hinzufügen" - -#~ msgid "verify package signature" -#~ msgstr "Paketsignatur überprüfen" - -#, fuzzy -#~ msgid "skip any GPG signatures" -#~ msgstr "alle PGP-Signaturen überspringen" - -#~ msgid "skip any PGP signatures" -#~ msgstr "alle PGP-Signaturen überspringen" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "md5-Prüfsumme der Datei nicht überprüfen" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben" - -#~ msgid "no packages given for signature check" -#~ msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben" - #, fuzzy #~ msgid "Usage: rpm {--help}" #~ msgstr "Benutzung: rpm {--help}" @@ -4082,6 +3924,9 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgstr "" #~ "Ein Paket mit denselben Paketspezifikations-Optionen wie bei -q überprüfen" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "md5-Prüfsumme der Datei nicht überprüfen" + #~ msgid "do not verify file attributes" #~ msgstr "Dateiattribute nicht überprüfen" @@ -4192,6 +4037,9 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgid " --addsign + " #~ msgstr " -b " +#~ msgid "add a signature to a package" +#~ msgstr "Signatur einem Paket hinzufügen" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " -b " @@ -4200,6 +4048,13 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgid " -K + " #~ msgstr " -b " +#~ msgid "skip any PGP signatures" +#~ msgstr "alle PGP-Signaturen überspringen" + +#, fuzzy +#~ msgid "skip any GPG signatures" +#~ msgstr "alle PGP-Signaturen überspringen" + #~ msgid "make sure a valid database exists" #~ msgstr "Sicherstellen, daß eine gültige Datenbank vorhanden ist" @@ -4258,6 +4113,108 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ "--nopgp darf nur während der Signatur- und Paketüberprüfung angegeben " #~ "werden" +#~ msgid "no packages given for signature check" +#~ msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben" + +#~ msgid "no packages given for signing" +#~ msgstr "Es wurden keine Pakete für die Signatur angeben" + +#~ msgid "no packages given for uninstall" +#~ msgstr "Es wurden keine Pakete für die Deinstallation angegeben" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "die Datei ť%sŤ gehört zu keinem Paket\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "Paket %s wird nicht in %s aufgeführt" + +#, fuzzy +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "Paket %s wird nicht in %s aufgeführt" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "Anfrage-Modus" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: ťreadLeadŤ fehlgeschlagen\n" + +#, fuzzy +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "PGP-Signatur generieren" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "PGP-Signatur generieren" + +# , c-format +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "Hole %s heraus\n" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "kann Datei %s nicht öffnen: " + +# , c-format +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "Hole %s heraus\n" + +# , c-format +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "Hole %s heraus\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "Datenbank aus der vorhandenen neu erstellen" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "kann %s lock für die Datenbank nicht bekommen" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "Fehler beim Suchen nach Paket %s\n" + +#~ msgid "(unknown type)" +#~ msgstr "(unbekannter Typ)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Konnte pgp nicht durchführen" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Konnte pgp nicht durchführen" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." @@ -4266,6 +4223,10 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" #~ msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Konnte pgp nicht durchführen" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "PGP-Signatur generieren" @@ -4698,6 +4659,10 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ msgid "exec failed!\n" #~ msgstr "%s: Öffnen fehlgeschlagen\n" +#, fuzzy +#~ msgid "New Header signature\n" +#~ msgstr "nicht möglich, die Signatur zu lesen" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "Paket %s ist nicht installiert\n" @@ -4763,10 +4728,6 @@ msgstr "anlegen von %s fehlgeschlagen\n" #~ " [--sign] [--test] [--timecheck ] [--buildos " #~ "]" -#, fuzzy -#~ msgid "query package owning file" -#~ msgstr "Anfrage nach Paket, das die Datei besitzt" - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n" diff --git a/po/en_RN.po b/po/en_RN.po index b5760a5b0..bc469bd19 100644 --- a/po/en_RN.po +++ b/po/en_RN.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/es.po b/po/es.po index b5760a5b0..bc469bd19 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/eu_ES.po b/po/eu_ES.po index b5760a5b0..bc469bd19 100644 --- a/po/eu_ES.po +++ b/po/eu_ES.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/fi.po b/po/fi.po index 9270c1c85..8b4274817 100644 --- a/po/fi.po +++ b/po/fi.po @@ -424,7 +424,7 @@ msgstr "k #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "allekirjoitukselle ei määritelty paketteja" +msgstr "asennukselle ei määritelty paketteja" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1470,9 +1470,8 @@ msgid "(cached)" msgstr "" #: lib/depends.c:416 -#, fuzzy msgid "(rpmrc provides)" -msgstr "tiedostoa %s ei omista mikään paketti\n" +msgstr "" #: lib/depends.c:432 #, fuzzy @@ -1485,9 +1484,8 @@ msgid "(db files)" msgstr "en voinut avata %s: %s" #: lib/depends.c:465 -#, fuzzy msgid "(db provides)" -msgstr "tiedostoa %s ei omista mikään paketti\n" +msgstr "" #: lib/depends.c:478 #, fuzzy @@ -1821,7 +1819,7 @@ msgstr " #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "asenna paketti" +msgstr "älä tarkista paketin riippuvuuksia" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2348,9 +2346,8 @@ msgid "(added files)" msgstr "en voinut avata %s: %s" #: lib/rpmal.c:765 -#, fuzzy msgid "(added provide)" -msgstr "tiedostoa %s ei omista mikään paketti\n" +msgstr "" #: lib/rpmchecksig.c:58 #, fuzzy, c-format @@ -2848,8 +2845,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "asenna paketti" #: lib/signature.c:1073 #, fuzzy @@ -3455,161 +3453,10 @@ msgstr "virhe: ftpport pit msgid "failed to create %s: %s\n" msgstr "%s:n luonti epäonnistui\n" -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: readLead epäonnistui\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "en voinut avata %s: %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "en voi saada %s lukitusta tietokantaan" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "virhe etsittäessä pakettia %s\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "asenna paketti" - -#~ msgid "failed dependencies:\n" -#~ msgstr "puuttuvat riippuvuudet:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "tiedostoa %s ei omista mikään paketti\n" - -#~ msgid "(unknown type)" -#~ msgstr "(tuntematon tyyppi)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "kyselymoodi" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "en voinut lukea allekirjoitusta" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "en voinut lukea allekirjoitusta" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "generoi PGP-allekirjoitus" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "generoi PGP-allekirjoitus" - -#~ msgid "no packages given for uninstall" -#~ msgstr "poistolle ei määritelty paketteja" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "En voinut ajaa pgp:tä" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "En voinut ajaa pgp:tä" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "En voinut ajaa pgp:tä" - -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "Haen: %s\n" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "en voinut avata tiedostoa %s: " - -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "Haen: %s\n" - -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "Haen: %s\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "virhe luotaessa hakemistoa %s: %s" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "tiedostoa %s ei omista mikään paketti\n" - -#, fuzzy -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "paketti %s ei ole %s:ssä" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "tiedostoa %s ei omista mikään paketti\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "tiedostoa %s ei omista mikään paketti\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "en voinut avata %s: %s" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "virhe: en voi avata %s%s/packages.rpm\n" -#, fuzzy -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "virhe: en voi avata %s%s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "lisää allekirjoitus pakettiin" - -#~ msgid "verify package signature" -#~ msgstr "tarkista paketin allekirjoitus" - -#, fuzzy -#~ msgid "skip any GPG signatures" -#~ msgstr "ohita PGP-allekirjoitukset" - -#~ msgid "skip any PGP signatures" -#~ msgstr "ohita PGP-allekirjoitukset" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "älä tarkista tiedostojen md5-tarkistussummia" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä" - -#~ msgid "no packages given for signature check" -#~ msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja" - #, fuzzy #~ msgid "Usage: rpm {--help}" #~ msgstr "käyttö: rpm {--help}" @@ -3942,6 +3789,9 @@ msgstr "%s:n luonti ep #~ "tarkista paketin asennus käyttäen samoja paketin määrittelyparametrejä " #~ "kuin -q " +#~ msgid "do not verify file md5 checksums" +#~ msgstr "älä tarkista tiedostojen md5-tarkistussummia" + #~ msgid "do not verify file attributes" #~ msgstr "älä tarkista tiedostojen ominaisuuksia" @@ -4044,6 +3894,9 @@ msgstr "%s:n luonti ep #~ msgid " --addsign + " #~ msgstr " -b " +#~ msgid "add a signature to a package" +#~ msgstr "lisää allekirjoitus pakettiin" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " -b " @@ -4052,6 +3905,13 @@ msgstr "%s:n luonti ep #~ msgid " -K + " #~ msgstr " -b " +#~ msgid "skip any PGP signatures" +#~ msgstr "ohita PGP-allekirjoitukset" + +#, fuzzy +#~ msgid "skip any GPG signatures" +#~ msgstr "ohita PGP-allekirjoitukset" + #~ msgid "make sure a valid database exists" #~ msgstr "tarkista, että kunnollinen tietokanta löytyy" @@ -4108,6 +3968,105 @@ msgstr "%s:n luonti ep #~ "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa ja " #~ "paketteja todennettaessa" +#~ msgid "no packages given for signature check" +#~ msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja" + +#~ msgid "no packages given for signing" +#~ msgstr "allekirjoitukselle ei määritelty paketteja" + +#~ msgid "no packages given for uninstall" +#~ msgstr "poistolle ei määritelty paketteja" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "tiedostoa %s ei omista mikään paketti\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "tiedostoa %s ei omista mikään paketti\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "tiedostoa %s ei omista mikään paketti\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "paketti %s ei ole %s:ssä" + +#, fuzzy +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "paketti %s ei ole %s:ssä" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "kyselymoodi" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: readLead epäonnistui\n" + +#, fuzzy +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "virhe: en voi avata %s%s/packages.rpm\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "generoi PGP-allekirjoitus" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "generoi PGP-allekirjoitus" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "Haen: %s\n" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "en voinut avata tiedostoa %s: " + +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "Haen: %s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "Haen: %s\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "virhe luotaessa hakemistoa %s: %s" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "en voi saada %s lukitusta tietokantaan" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "virhe etsittäessä pakettia %s\n" + +#~ msgid "(unknown type)" +#~ msgstr "(tuntematon tyyppi)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "En voinut ajaa pgp:tä" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "En voinut ajaa pgp:tä" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" @@ -4116,6 +4075,10 @@ msgstr "%s:n luonti ep #~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" #~ msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "En voinut ajaa pgp:tä" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "generoi PGP-allekirjoitus" @@ -4555,6 +4518,10 @@ msgstr "%s:n luonti ep #~ msgid "exec failed!\n" #~ msgstr "%s: avaus ei onnistunut\n" +#, fuzzy +#~ msgid "New Header signature\n" +#~ msgstr "en voinut lukea allekirjoitusta" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "paketti %s ei ole asennettu\n" @@ -4624,10 +4591,6 @@ msgstr "%s:n luonti ep #~ " [--sign] [--test] [--timecheck ] [--buildos " #~ "]" -#, fuzzy -#~ msgid "query package owning file" -#~ msgstr "kysy pakettia, jonka omistuksessa on" - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "virhe: en voi avata %s%s/packages.rpm\n" diff --git a/po/fr.po b/po/fr.po index c65932aeb..42df883fd 100644 --- a/po/fr.po +++ b/po/fr.po @@ -455,7 +455,7 @@ msgstr "aucun package n'a t spcifi pour la construction" #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "aucun package n'a t spcifi pour la dsinstallation" +msgstr "aucun package n'a t spcifi pour l'installation" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1851,7 +1851,8 @@ msgstr "" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy msgid "don't verify package signature(s)" -msgstr " --sign - genre une signature PGP" +msgstr "" +" -f + - interroge le package qui appartient " #: lib/poptI.c:192 #, fuzzy @@ -2145,8 +2146,9 @@ msgid "don't verify PGP V3 RSA/MD5 signature(s)" msgstr "" #: lib/poptQV.c:298 +#, fuzzy msgid "sign package(s) (identical to --resign)" -msgstr "" +msgstr "aucun package n'a t spcifi pour la dsinstallation" #: lib/poptQV.c:300 #, fuzzy @@ -2158,8 +2160,9 @@ msgid "import an armored public key" msgstr "" #: lib/poptQV.c:304 +#, fuzzy msgid "sign package(s) (identical to --addsign)" -msgstr "" +msgstr "aucun package n'a t spcifi pour la dsinstallation" #: lib/poptQV.c:306 #, fuzzy @@ -2647,7 +2650,7 @@ msgstr "aucun package n'a t spcifi pour l'installation" #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "aucun package n'a t spcifi pour l'installation" +msgstr "aucun package n'a t spcifi pour la dsinstallation" #: lib/rpmps.c:278 #, c-format @@ -3474,97 +3477,10 @@ msgstr "" msgid "failed to create %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "aucun package n'a t spcifi pour la dsinstallation" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "aucun package n'a t spcifi pour l'installation" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "" -#~ " -f + - interroge le package qui appartient " - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr " --sign - genre une signature PGP" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr " --sign - genre une signature PGP" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr " --sign - genre une signature PGP" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr " --sign - genre une signature PGP" - -#~ msgid "no packages given for uninstall" -#~ msgstr "aucun package n'a t spcifi pour la dsinstallation" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "impossible d'ouvrir: %s\n" - -#, fuzzy -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "aucun package n'a t spcifi pour la dsinstallation" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "impossible d'ouvrir: %s\n" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "impossible d'ouvrir: %s\n" -#, fuzzy -#~ msgid "skip any GPG signatures" -#~ msgstr " --sign - genre une signature PGP" - -#, fuzzy -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "aucun argument n'a t fourni pour la requte" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "aucun argument n'a t fourni pour la requte" - -#~ msgid "no packages given for signature check" -#~ msgstr "aucun package n'a t spcifi pour la vrification de signature" - #, fuzzy #~ msgid "" #~ " [--replacepkgs] [--replacefiles] [--root ]" @@ -3813,6 +3729,10 @@ msgstr "impossible d'ouvrir: %s\n" #~ msgid " -K + " #~ msgstr " --checksig + - vrifie la signature PGP" +#, fuzzy +#~ msgid "skip any GPG signatures" +#~ msgstr " --sign - genre une signature PGP" + #, fuzzy #~ msgid "-u and --uninstall are deprecated and no longer work.\n" #~ msgstr "-u et --uninstall sont obsoltes et seront bientt supprims.\n" @@ -3850,6 +3770,72 @@ msgstr "impossible d'ouvrir: %s\n" #~ "verification" #~ msgstr "--sign ne peut tre spcifi que lors de la construction d'un package" +#~ msgid "no packages given for signature check" +#~ msgstr "aucun package n'a t spcifi pour la vrification de signature" + +#~ msgid "no packages given for uninstall" +#~ msgstr "aucun package n'a t spcifi pour la dsinstallation" + +#, fuzzy +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "aucun argument n'a t fourni pour la requte" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "aucun argument n'a t fourni pour la requte" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "aucun package n'a t spcifi pour l'installation" + +#, fuzzy +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "aucun package n'a t spcifi pour la dsinstallation" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "impossible d'ouvrir: %s\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr " --sign - genre une signature PGP" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr " --sign - genre une signature PGP" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "impossible d'ouvrir: %s\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "impossible d'ouvrir: %s\n" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "impossible d'ouvrir: %s\n" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "aucun package n'a t spcifi pour la dsinstallation" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "aucun package n'a t spcifi pour l'installation" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "impossible d'ouvrir: %s\n" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "impossible d'ouvrir: %s\n" + +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "impossible d'ouvrir: %s\n" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr " --sign - genre une signature PGP" @@ -4106,6 +4092,10 @@ msgstr "impossible d'ouvrir: %s\n" #~ msgid " --recompile " #~ msgstr " --checksig + - vrifie la signature PGP" +#, fuzzy +#~ msgid "New Header signature\n" +#~ msgstr " --sign - genre une signature PGP" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "aucun package n'a t spcifi pour l'installation" @@ -4131,11 +4121,6 @@ msgstr "impossible d'ouvrir: %s\n" #~ msgid " [--sign] [--nobuild] ]" #~ msgstr " qui matchent " -#, fuzzy -#~ msgid "query package owning file" -#~ msgstr "" -#~ " -f + - interroge le package qui appartient " - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "impossible d'ouvrir: %s\n" diff --git a/po/hu.po b/po/hu.po index b5760a5b0..bc469bd19 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/id.po b/po/id.po index b5760a5b0..bc469bd19 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/is.po b/po/is.po index 7b27f73d8..2771cbc96 100644 --- a/po/is.po +++ b/po/is.po @@ -1753,12 +1753,12 @@ msgstr "" #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "ekki yfirfara MD5 undirritun skráa" +msgstr "ekki skođa pakkaskilyrđin" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy msgid "don't verify package signature(s)" -msgstr "búa til undirskrift" +msgstr "ekki skođa pakkaskilyrđin" #: lib/poptI.c:192 msgid "do not execute any scriptlet(s) triggered by this package" @@ -2163,7 +2163,7 @@ msgstr "" #: lib/query.c:664 lib/rpminstall.c:513 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" -msgstr "gat ekki búiđ til %%%s %s\n" +msgstr "get ekki opnađ pakka gagnagrunn í\n" #: lib/query.c:708 #, c-format @@ -2192,7 +2192,7 @@ msgstr "Get ekki lesi #: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 #, fuzzy, c-format msgid "no package matches %s: %s\n" -msgstr "gat ekki búiđ til %%%s %s\n" +msgstr "get ekki opnađ pakka gagnagrunn í\n" #: lib/query.c:867 #, c-format @@ -2279,7 +2279,7 @@ msgstr "" #: lib/rpmchecksig.c:512 #, fuzzy, c-format msgid "%s: headerGetEntry failed\n" -msgstr "%s: Fseek brást: %s\n" +msgstr "%s: gat ekki lesiđ manifest: %s\n" #: lib/rpmchecksig.c:583 #, c-format @@ -2333,9 +2333,9 @@ msgstr "" #. @=branchstate@ #: lib/rpmds.c:605 -#, c-format +#, fuzzy, c-format msgid "package %s has unsatisfied %s: %s\n" -msgstr "" +msgstr "get ekki opnađ pakka gagnagrunn í\n" #: lib/rpminstall.c:165 msgid "Preparing..." @@ -2724,8 +2724,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "ekki yfirfara SHA1 undirritunina" #: lib/signature.c:1073 msgid "V3 RSA/MD5 signature: " @@ -3313,47 +3314,9 @@ msgstr "g msgid "failed to create %s: %s\n" msgstr "gat ekki búiđ til %s: %s\n" -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: gat ekki lesiđ manifest: %s\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "get ekki fengiđ %s lás á gagnagrunninn\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "ekki yfirfara symlink slóđ skráa" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "í pakkanum eru engir notandalistar (ţetta ćtti aldrei ađ koma fyrir)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "í pakkanum eru engir hópalistar (ţetta ćtti aldrei ađ koma fyrir)\n" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Gat ekki keyrt pgp (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Gat ekki keyrt gpg\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Gat ekki keyrt pgp\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d fćra %s -> %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %s\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "get ekki opnađ pakka gagnagrunn í %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "get ekki opnađ %s/packages.rpm\n" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3693,3 +3656,30 @@ msgstr "gat ekki b #~ msgid " -K + " #~ msgstr " -K + " + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "get ekki opnađ %s/packages.rpm\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d fćra %s -> %s\n" + +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "í pakkanum eru engir notandalistar (ţetta ćtti aldrei ađ koma fyrir)\n" + +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "í pakkanum eru engir hópalistar (ţetta ćtti aldrei ađ koma fyrir)\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "get ekki fengiđ %s lás á gagnagrunninn\n" + +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Gat ekki keyrt pgp (%s)\n" + +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Gat ekki keyrt gpg\n" + +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Gat ekki keyrt pgp\n" diff --git a/po/it.po b/po/it.po index b5760a5b0..bc469bd19 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index ed1d407f0..e6a9b7199 100644 --- a/po/ja.po +++ b/po/ja.po @@ -434,7 +434,7 @@ msgstr " #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "˝đĚž¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" +msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1848,7 +1848,7 @@ msgstr " #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "ĽŃĽĂĽąĄźĽ¸Ăć¤ÎĽŐĽĄĽ¤Ľë¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" +msgstr "ĽŃĽĂĽąĄźĽ¸¤Î°Í¸´Řˇ¸¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1959,7 +1959,7 @@ msgstr " #: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" -msgstr " ¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" +msgstr "ĽŐĽĄĽ¤Ľë¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" #: lib/poptQV.c:103 #, fuzzy @@ -1969,7 +1969,7 @@ msgstr " #: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" -msgstr " ¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" +msgstr "ĽŐĽĄĽ¤Ľë¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" #: lib/poptQV.c:107 #, fuzzy @@ -1979,7 +1979,7 @@ msgstr " #: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" -msgstr " ¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" +msgstr "ĽŐĽĄĽ¤Ľë¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" #: lib/poptQV.c:111 #, fuzzy @@ -2385,7 +2385,7 @@ msgstr " #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %s ¤Ď db ¤ŹÄ󜥤š¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" +msgstr "%s: %s ¤Ď provide ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" #: lib/rpmchecksig.c:58 #, fuzzy, c-format @@ -2656,7 +2656,7 @@ msgstr " #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n" +msgstr "%s ¤ČśĽšç¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤š: %s\n" #: lib/rpmps.c:278 #, fuzzy, c-format @@ -2893,8 +2893,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "ĽŃĽĂĽąĄźĽ¸Ăć¤ÎĽŐĽĄĽ¤Ľë¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" #: lib/signature.c:1073 #, fuzzy @@ -3502,202 +3503,10 @@ msgstr "url msgid "failed to create %s: %s\n" msgstr "%s ¤ÎşîŔŽ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "ÉÔŔľ¤ĘĽŢĽ¸ĽĂĽŻ" - -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: Fread ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s\n" - -#, fuzzy -#~ msgid "removed db file %s\n" -#~ msgstr "%s ÍѤΠfile Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "ÉÔŔľ¤ĘĽŐĽĄĽ¤Ľë¤ÎžőÂÖ: %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "ĽÇĄźĽżĽŮĄźĽšĽâĄźĽÉ 0x%x ¤ÎĽŞĄźĽ×Ľó (%s)\n" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "ĽÇĄźĽżĽŮĄźĽš¤Î %s ¤ňĽíĽĂĽŻ¤Ç¤­¤Ţ¤ť¤ó" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ľ¨ĽéĄź\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "free list corrupt (%u)- °Ę˛ź¤ňźÂšÔ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "¤â¤ˇĚäÂę¤ň˛ňˇč¤š¤ë¤ż¤á¤ËźÂšÔ¤ˇ¤ż \"rpm --rebuilddb\" ¤ŹźşÇÔ¤ˇ¤ż¤éĄ˘\n" -#~ "http://www.rpm.org ¤â¤ˇ¤Ż¤Ď rpm-list@redhat.com ĽáĄźĽęĽóĽ°ĽęĽšĽČ¤Ť¤é\n" -#~ "žÜşŮ¤ĘžđĘ󤏟čĆŔ¤Ç¤­¤Ţ¤šĄŁ\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "ĽŃĽĂĽąĄźĽ¸Ăć¤ÎĽŐĽĄĽ¤Ľë¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" - -#~ msgid "failed dependencies:\n" -#~ msgstr "°Í¸Ŕ­¤ÎˇçÇĄ:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: %s ¤ĎĽŃĽĂĽąĄźĽ¸¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" - -#~ msgid "(unknown type)" -#~ msgstr "(ÉÔĚŔ¤ĘĽżĽ¤Ľ×)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "Ě䤤šç¤ď¤ťĽâĄźĽÉ" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë˝đĚž¤ˇ¤Ţ¤š(¸˝şß¤Î˝đĚž¤ĎźÎ¤Ć¤é¤ě¤Ţ¤š)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë˝đĚž¤ˇ¤Ţ¤š(¸˝şß¤Î˝đĚž¤ĎźÎ¤Ć¤é¤ě¤Ţ¤š)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "ĽŃĽĂĽąĄźĽ¸¤Ď ĽćĄźĽśĚž¤Č id ĽęĽšĽČ¤ÎΞĘý¤Źˇç¤ą¤Ć¤¤¤Ţ¤š(¤ł¤ě¤Ďˇč¤ˇ¤ĆľŻ¤­¤Ć¤Ď" -#~ "¤Ę¤é¤Ę¤¤)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "ĽŃĽĂĽąĄźĽ¸¤ĎĽ°ĽëĄźĽ×Ěž¤Č id ĽęĽšĽČ¤ÎΞĘý¤Źˇç¤ą¤Ć¤¤¤Ţ¤š(¤ł¤ě¤Ďˇč¤ˇ¤ĆľŻ¤­¤Ć" -#~ "¤Ď¤Ę¤é¤Ę¤¤)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "żˇ¤ˇ¤¤ĽŘĽĂĽŔ˝đĚž\n" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "żˇ¤ˇ¤¤ĽŘĽĂĽŔ˝đĚž\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë˝đĚž¤ˇ¤Ţ¤š(¸˝şß¤Î˝đĚž¤ĎźÎ¤Ć¤é¤ě¤Ţ¤š)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "PGP ¤ňťČÍѤˇ¤Ć˝đĚž¤ÎŔ¸ŔŽĂć\n" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "GPG ¤ňťČÍѤˇ¤Ć˝đĚž¤ÎŔ¸ŔŽĂć\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "pgp ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó(%s)" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "gpg ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "pgp ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó" - -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "OS ¤Ď˝üł°¤ľ¤ě¤Ć¤¤¤Ţ¤š: %s" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" - -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n" - -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %s ¤ĎĽŐĽĄĽ¤ĽëĽęĽšĽČ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "%s ¤ČśĽšç¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤š: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %s ¤Ď db ĽŃĽĂĽąĄźĽ¸¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %s ¤Ď db ĽŃĽĂĽąĄźĽ¸¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "ĽŐĽĄĽ¤Ľë %s: %s\n" - -#, fuzzy -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %s ¤Ď provide ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n" -#, fuzzy -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n" - -#~ msgid "add a signature to a package" -#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë˝đĚž¤ňÄɲ䡤ޤš" - -#~ msgid "verify package signature" -#~ msgstr "˝đĚž¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤š" - -#, fuzzy -#~ msgid "skip any GPG signatures" -#~ msgstr "GPG ˝đĚž¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š" - -#~ msgid "skip any PGP signatures" -#~ msgstr "PGP ˝đĚž¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î md5 ĽÁĽ§ĽĂĽŻĽľĽŕ¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤ÎĚ䤤šç¤ď¤ť¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤Î¸ĄžÚ¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š" - -#~ msgid "no packages given for signature check" -#~ msgstr "˝đĚž¸Ąşş¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" - #, fuzzy #~ msgid "Usage: rpm {--help}" #~ msgstr "ťČÍŃËĄ: rpm {--help}" @@ -3835,6 +3644,9 @@ msgstr "%s #~ "-q ¤ČĆąÍͤËĆą¤¸ĽŃĽĂĽąĄźĽ¸ťŘÄ꼪Ľ×ĽˇĽçĽó¤ňźč¤ę\n" #~ "Ľ¤ĽóĽšĽČĄźĽë¤Îžőśˇ¤ň¸ĄžÚ¤ˇ¤Ţ¤š" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î md5 ĽÁĽ§ĽĂĽŻĽľĽŕ¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" + #~ msgid "do not verify file attributes" #~ msgstr "ĽŐĽĄĽ¤Ľë°Ŕ­¤Î¸ĄžÚ¤ň¤ˇ¤Ţ¤ť¤ó" @@ -3912,6 +3724,16 @@ msgstr "%s #~ msgid "like --rebuild, but don't build any package" #~ msgstr "--rebuild ¤Ëť÷¤Ć¤¤¤Ţ¤š¤ŹĄ˘ĽŃĽĂĽąĄźĽ¸¤ňşîŔŽ¤ˇ¤Ţ¤ť¤ó" +#~ msgid "add a signature to a package" +#~ msgstr "ĽŃĽĂĽąĄźĽ¸¤Ë˝đĚž¤ňÄɲ䡤ޤš" + +#~ msgid "skip any PGP signatures" +#~ msgstr "PGP ˝đĚž¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š" + +#, fuzzy +#~ msgid "skip any GPG signatures" +#~ msgstr "GPG ˝đĚž¤ňĽšĽ­ĽĂĽ×¤ˇ¤Ţ¤š" + #~ msgid "make sure a valid database exists" #~ msgstr "Í­¸ú¤ĘĽÇĄźĽżĽŮĄźĽš¤ŹÂ¸şß¤š¤ë¤ł¤Č¤ňłÎ¤Ť¤á¤Ţ¤š" @@ -3965,6 +3787,142 @@ msgstr "%s #~ "verification" #~ msgstr "--nomd5 ¤Ď˝đĚž¸Ąşş¤ČĽŃĽĂĽąĄźĽ¸¸ĄžÚťţ¤Î¤ßťČÍѤǤ­¤Ţ¤š" +#~ msgid "no packages given for signature check" +#~ msgstr "˝đĚž¸Ąşş¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" + +#~ msgid "no packages given for signing" +#~ msgstr "˝đĚž¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" + +#~ msgid "no packages given for uninstall" +#~ msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¤Î¤ż¤á¤ÎĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤ť¤ó" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤ÎĚ䤤šç¤ď¤ť¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "Á´ĽŃĽĂĽąĄźĽ¸¤Î¸ĄžÚ¤Î¤ż¤á¤Ë͞ʏ¤Ę°úżô¤Ź¤˘¤ę¤Ţ¤š" + +#, fuzzy +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %s ¤ĎĽŐĽĄĽ¤ĽëĽęĽšĽČ¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %s ¤Ď db ĽŃĽĂĽąĄźĽ¸¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %s ¤Ď db ĽŃĽĂĽąĄźĽ¸¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: %s ¤ĎĽŃĽĂĽąĄźĽ¸¤Ë˛Ă¤¨¤ë¤ł¤Č¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ţ¤šĄŁ\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤Ď require ¤ŹËţ¤ż¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "%s ¤ČśĽšç¤š¤ëĽŃĽĂĽąĄźĽ¸¤Ź¤˘¤ę¤Ţ¤š: %s\n" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "Ě䤤šç¤ď¤ťĽâĄźĽÉ" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: Fread ¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s\n" + +#, fuzzy +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "PGP ¤ňťČÍѤˇ¤Ć˝đĚž¤ÎŔ¸ŔŽĂć\n" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "GPG ¤ňťČÍѤˇ¤Ć˝đĚž¤ÎŔ¸ŔŽĂć\n" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "OS ¤Ď˝üł°¤ľ¤ě¤Ć¤¤¤Ţ¤š: %s" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" + +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "ĽŐĽĄĽ¤Ľë¤Î˝üł°: %s%s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "%s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "ĽÇĽŁĽěĽŻĽČĽę %s ¤ň %s ¤ËşĆÇŰĂÖ¤ˇ¤Ć¤¤¤Ţ¤š\n" + +#, fuzzy +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "ĽŃĽĂĽąĄźĽ¸¤Ď ĽćĄźĽśĚž¤Č id ĽęĽšĽČ¤ÎΞĘý¤Źˇç¤ą¤Ć¤¤¤Ţ¤š(¤ł¤ě¤Ďˇč¤ˇ¤ĆľŻ¤­¤Ć¤Ď" +#~ "¤Ę¤é¤Ę¤¤)" + +#, fuzzy +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "ĽŃĽĂĽąĄźĽ¸¤ĎĽ°ĽëĄźĽ×Ěž¤Č id ĽęĽšĽČ¤ÎΞĘý¤Źˇç¤ą¤Ć¤¤¤Ţ¤š(¤ł¤ě¤Ďˇč¤ˇ¤ĆľŻ¤­¤Ć" +#~ "¤Ď¤Ę¤é¤Ę¤¤)" + +#, fuzzy +#~ msgid "removed db file %s\n" +#~ msgstr "%s ÍѤΠfile Ľ¤ĽóĽÇĽĂĽŻĽš¤ňşď˝ü¤ˇ¤Ţ¤š\n" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "ĽÇĄźĽżĽŮĄźĽšĽâĄźĽÉ 0x%x ¤ÎĽŞĄźĽ×Ľó (%s)\n" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "ĽÇĄźĽżĽŮĄźĽš¤Î %s ¤ňĽíĽĂĽŻ¤Ç¤­¤Ţ¤ť¤ó" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "free list corrupt (%u)- °Ę˛ź¤ňźÂšÔ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "¤â¤ˇĚäÂę¤ň˛ňˇč¤š¤ë¤ż¤á¤ËźÂšÔ¤ˇ¤ż \"rpm --rebuilddb\" ¤ŹźşÇÔ¤ˇ¤ż¤éĄ˘\n" +#~ "http://www.rpm.org ¤â¤ˇ¤Ż¤Ď rpm-list@redhat.com ĽáĄźĽęĽóĽ°ĽęĽšĽČ¤Ť¤é\n" +#~ "žÜşŮ¤ĘžđĘ󤏟čĆŔ¤Ç¤­¤Ţ¤šĄŁ\n" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĂľş÷Ľ¨ĽéĄź\n" + +#~ msgid "(unknown type)" +#~ msgstr "(ÉÔĚŔ¤ĘĽżĽ¤Ľ×)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "pgp ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó(%s)" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "gpg ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "" @@ -3977,6 +3935,10 @@ msgstr "%s #~ "gpg ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n" #~ "GPG ĽÁĽ§ĽĂĽŻ¤ňĽšĽ­ĽĂĽ×¤š¤ë¤ż¤á¤Ë --nogpg ¤ňťČÍѤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ" +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "pgp ¤ňźÂšÔ¤Ç¤­¤Ţ¤ť¤ó" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "PGP/GPG ˝đĚž¤ňŔ¸ŔŽ¤ˇ¤Ţ¤š" @@ -4256,6 +4218,9 @@ msgstr "%s #~ msgid "expected size : %d\n" #~ msgstr "´üÂÔ¤ľ¤ě¤ëĽľĽ¤Ľş: %d\n" +#~ msgid "New Header signature\n" +#~ msgstr "żˇ¤ˇ¤¤ĽŘĽĂĽŔ˝đĚž\n" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "ĽŃĽš %s ¤ĎşĆÇŰĂ֤Ǥ­¤Ţ¤ť¤ó(ĽŃĽĂĽąĄźĽ¸ %s-%s-%s ¤ËÂФˇ¤Ć)" @@ -4337,10 +4302,6 @@ msgstr "%s #~ msgid "%s: %-45s YES (rpmlib version)\n" #~ msgstr "%s: %s ¤Ď rpmlib ¤ÎĽĐĄźĽ¸ĽçĽó¤Ë¤č¤Ă¤ĆËţ¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ\n" -#, fuzzy -#~ msgid "query package owning file" -#~ msgstr "ĽŐĽĄĽ¤Ľë¤ň˝ęÍ­¤ˇ¤Ć¤¤¤ëĽŃĽĂĽąĄźĽ¸¤ňĚ䤤šç¤ď¤ť¤Ţ¤š" - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "%s/packages.rpm ¤ňĽŞĄźĽ×Ľó¤Ç¤­¤Ţ¤ť¤ó\n" diff --git a/po/ko.po b/po/ko.po index dd699e689..0561fdb7a 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,8 +1,8 @@ msgid "" msgstr "" -"Project-Id-Version: rpm 4.0.3\n" +"Project-Id-Version: rpm 4.0.4\n" "POT-Creation-Date: 2002-05-28 12:01-0400\n" -"PO-Revision-Date: 2001-09-07 22:03+0900\n" +"PO-Revision-Date: 2002-03-04 17:17+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" "MIME-Version: 1.0\n" @@ -12,7 +12,7 @@ msgstr "" #: build.c:40 #, fuzzy msgid "Failed build dependencies:\n" -msgstr "ŔÇÁ¸źş šŽÁŚˇÎ ÁŚŔŰżĄ ˝ÇĆĐÇÔ:\n" +msgstr "ŔÇÁ¸źş šŽÁŚˇÎ ŔÎÇŘ ÁŚŔŰżĄ ˝ÇĆĐÇÔ:\n" #: build.c:71 #, c-format @@ -28,17 +28,17 @@ msgstr "tar #: build.c:170 #, c-format msgid "Failed to read spec file from %s\n" -msgstr "%s żĄź­ spec ĆÄŔĎŔť ŔĐ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%sżĄź­ spec ĆÄŔĎŔť ŔĐ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: build.c:198 #, c-format msgid "Failed to rename %s to %s: %m\n" -msgstr "%s żĄź­ %s (Ŕ¸)ˇÎ Ŕ̸§ şŻ°ćÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" +msgstr "%sŔÇ Ŕ̸§Ŕť %s(Ŕ¸)ˇÎ şŻ°ćÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" #: build.c:238 #, c-format msgid "failed to stat %s: %m\n" -msgstr "%s ŔÇ ťóĹÂ(stat)¸Ś ÇĽ˝ĂÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" +msgstr "%sŔÇ ťóĹÂ(stat)¸Ś ÇĽ˝ĂÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %m\n" #: build.c:243 #, c-format @@ -59,11 +59,11 @@ msgstr " #: build.c:322 #, c-format msgid "Building for target %s\n" -msgstr "%s (Ŕť)¸Ś ÁŚŔŰÇĎ°í ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś ÁŚŔŰÇĎ°í ŔÖ˝Ŕ´Ď´Ů\n" #: rpm2cpio.c:47 msgid "argument is not an RPM package\n" -msgstr "ŔÎźöˇÎ RPM ĆĐĹ°Áö°Ą ÁöÁ¤ľÇžîžß ÇŐ´Ď´Ů\n" +msgstr "ŔÎźö °ŞŔ¸ˇÎ RPM ĆĐĹ°Áö°Ą ÁöÁ¤ľÇžîžß ÇŐ´Ď´Ů\n" #: rpm2cpio.c:53 msgid "error reading header from package\n" @@ -76,7 +76,7 @@ msgstr "payload #: rpmqv.c:112 msgid "print the version of rpm being used" -msgstr "ÇöŔç ťçżë ÁßŔÎ rpm šöŔüŔť ÇĽ˝ĂÇŐ´Ď´Ů" +msgstr "ÇöŔç ťçżëľÇ°í ŔÖ´Â rpm šöŔüŔť ÇĽ˝ĂÇŐ´Ď´Ů" #: rpmqv.c:115 msgid "provide less detailed output" @@ -88,7 +88,7 @@ msgstr " #: rpmqv.c:119 msgid "define macro with value " -msgstr "<şťšŽ> ŔÇ łťżë(value)Ŕ¸ˇÎ <Ŕ̸§> ¸ĹĹŠˇÎ¸Ś Á¤ŔÇÇŐ´Ď´Ů" +msgstr "<şťšŽ>ŔÇ łťżë(value)Ŕ¸ˇÎ <Ŕ̸§> ¸ĹĹŠˇÎ¸Ś Á¤ŔÇÇŐ´Ď´Ů" #: rpmqv.c:120 msgid "' '" @@ -104,7 +104,7 @@ msgstr "<ÇĽ #: rpmqv.c:125 msgid "send stdout to " -msgstr "ÇĽÁŘĂâˇÂŔť <¸íˇÉ> Ŕ¸ˇÎ ş¸łŔ´Ď´Ů" +msgstr "ÇĽÁŘĂâˇÂŔť <¸íˇÉ>Ŕ¸ˇÎ ş¸łŔ´Ď´Ů" #: rpmqv.c:126 msgid "" @@ -112,7 +112,7 @@ msgstr "< #: rpmqv.c:128 msgid "use as the top level directory" -msgstr "<ľđˇşĹ与> ¸Ś ĂÖťóŔ§ ľđˇşĹ与ˇÎ ťçżëÇŐ´Ď´Ů" +msgstr "<ľđˇşĹ与>¸Ś ĂÖťóŔ§ ľđˇşĹ与ˇÎ ťçżëÇŐ´Ď´Ů" #: rpmqv.c:129 lib/poptI.c:215 msgid "" @@ -120,7 +120,7 @@ msgstr "< #: rpmqv.c:131 msgid "read instead of default macro file(s)" -msgstr "ąâşť ¸ĹĹŠˇÎ ĆÄŔĎ ´ë˝Ĺ <ĆÄŔĎ:..> Ŕť ŔĐžîľéŔÔ´Ď´Ů" +msgstr "ąâşť ¸ĹĹŠˇÎ ĆÄŔĎ ´ë˝Ĺ <ĆÄŔĎ:..>Ŕť ŔĐžîľéŔÔ´Ď´Ů" #: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 msgid "" @@ -128,7 +128,7 @@ msgstr "< #: rpmqv.c:135 rpmqv.c:139 msgid "read instead of default rpmrc file(s)" -msgstr "ąâşť rpmrc ĆÄŔĎ ´ë˝Ĺ <ĆÄŔĎ:..> Ŕť ŔĐžîľéŔÔ´Ď´Ů" +msgstr "ąâşť rpmrc ĆÄŔĎ ´ë˝Ĺ <ĆÄŔĎ:..>Ŕť ŔĐžîľéŔÔ´Ď´Ů" #: rpmqv.c:143 msgid "display final rpmrc and macro configuration" @@ -152,11 +152,11 @@ msgstr "URL Äł #: rpmqv.c:175 msgid "Query options (with -q or --query):" -msgstr "ÁúŔÇ żÉźÇ (-q śÇ´Â --query żÍ ÇÔ˛˛ ťçżë):" +msgstr "ÁúŔÇ żÉźÇ (-q śÇ´Â --query żÉźÇ°ú ÇÔ˛˛ ťçżë):" #: rpmqv.c:178 msgid "Verify options (with -V or --verify):" -msgstr "°ËÁő żÉźÇ (-V śÇ´Â --verify żÍ ÇÔ˛˛ ťçżë):" +msgstr "°ËÁő żÉźÇ (-V śÇ´Â --verify żÉźÇ°ú ÇÔ˛˛ ťçżë):" #: rpmqv.c:184 msgid "Signature options:" @@ -169,7 +169,7 @@ msgstr " #: rpmqv.c:196 msgid "Build options with [ | | ]:" msgstr "" -"´ŮŔ˝°ú ÇÔ˛˛ ťçżëľÉ ÁŚŔŰ żÉźÇ [ | | <źŇ˝ş ĆĐĹ°Áö> ]:" +"´ŮŔ˝°ú ÇÔ˛˛ ťçżëÇĎ´Â ÁŚŔŰ żÉźÇ [ | | <źŇ˝ş ĆĐĹ°Áö> ]:" #: rpmqv.c:202 msgid "Install/Upgrade/Erase options:" @@ -188,7 +188,7 @@ msgstr "%s: %s\n" #: rpmqv.c:232 #, c-format msgid "RPM version %s\n" -msgstr "RPM - %s\n" +msgstr "RPM šöŔü - %s\n" #: rpmqv.c:239 #, fuzzy @@ -197,12 +197,12 @@ msgstr "Copyright (C) 1998-2000 - Red Hat, Inc." #: rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" -msgstr "ŔĚ ÇÁˇÎą×ˇĽŔş GNU Public License łťżĄź­ ŔÚŔŻˇÓ°Ô ŔçščĆ÷ľÉ źö ŔÖ˝Ŕ´Ď´Ů." +msgstr "ŔĚ ÇÁˇÎą×ˇĽŔş GNU Public License łťżĄź­ ŔÚŔŻˇÓ°Ô ŔçščĆ÷ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:252 #, c-format msgid "Usage: %s {--help}\n" -msgstr " ťçżëšý: %s {--help}\n" +msgstr "* ťçżëšý: %s {--help}\n" #: rpmqv.c:605 msgid "The --rcfile option has been eliminated.\n" @@ -215,15 +215,15 @@ msgstr " #: rpmqv.c:612 #, c-format msgid "Internal error in argument processing (%d) :-(\n" -msgstr "(%d) ŔÇ ŔÎźö Ăł¸Ž °úÁ¤ Áß łťşÎ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů :-(\n" +msgstr "ŔÎźö Ăł¸Ž°úÁ¤ (%d) ľľÁß łťşÎ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů :-(\n" #: rpmqv.c:653 rpmqv.c:659 rpmqv.c:665 rpmqv.c:703 msgid "only one major mode may be specified" -msgstr "ÇĎłŞŔÇ ÁÖżä(major) ¸đľĺ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "ÇĎłŞŔÇ ÁÖ(major) ¸đľĺ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:682 msgid "one type of query/verify may be performed at a time" -msgstr "ÁúŔÇ/°ËÁő ÁßżĄź­ ÇŃ°ĄÁö ŔŻÇüŔş ľż˝ĂżĄ źöÇŕľÉ źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "ÁúŔÇ/°ËÁő ŔŻÇüŔş °˘°˘ ´Ů¸Ľ ŔŻÇü°ú ľż˝ĂżĄ źöÇŕÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:686 msgid "unexpected query flags" @@ -239,7 +239,7 @@ msgstr " #: rpmqv.c:733 msgid "--dbpath given for operation that does not use a database" -msgstr "--dbpath ´Â ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ťçżëÇĎÁö žĘąâ Ŕ§ÇŃ żÉźÇŔÔ´Ď´Ů" +msgstr "--dbpath´Â ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ťçżëÇĎÁö žĘąâ Ŕ§ÇŃ żÉźÇŔÔ´Ď´Ů" #: rpmqv.c:739 msgid "only installation, upgrading, rmsource and rmspec may be forced" @@ -251,86 +251,86 @@ msgstr " #: rpmqv.c:744 msgid "only one of --prefix or --relocate may be used" -msgstr "--prefix śÇ´Â --relocate żÉźÇ Áß ÇĎłŞ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--prefix śÇ´Â --relocate żÉźÇ Áß ÇĎłŞ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:747 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -"--relocate żÍ --excludepath żÉźÇŔş ĂÖ˝ĹŔÇ ĆĐĹ°Áö¸Ś źłÄĄÇŇ ś§żĄ¸¸ ťçżëÇĎ˝Ç źö " -"ŔÖ˝Ŕ´Ď´Ů" +"--relocate żÍ --excludepath żÉźÇŔş ĂÖ˝ĹŔÇ ĆĐĹ°Áö¸Ś źłÄĄÇŇ ś§żĄ¸¸ ťçżëÇŇ źö ŔÖ" +"˝Ŕ´Ď´Ů" #: rpmqv.c:750 msgid "--prefix may only be used when installing new packages" -msgstr "--prefix żÉźÇŔş ĂÖ˝ĹŔÇ ĆĐĹ°Áö¸Ś źłÄĄÇŇ ś§żĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--prefix żÉźÇŔş ĂÖ˝ĹŔÇ ĆĐĹ°Áö¸Ś źłÄĄÇŇ ś§żĄ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:753 msgid "arguments to --prefix must begin with a /" -msgstr "--prefix żÉźÇŔÇ ŔÎźö´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔ۾Ǟîžß ÇŐ´Ď´Ů" +msgstr "--prefix żÉźÇŔÇ ŔÎźö´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů" #: rpmqv.c:756 msgid "--hash (-h) may only be specified during package installation" -msgstr "--hash (-h) żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--hash (-h) żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:760 msgid "--percent may only be specified during package installation" -msgstr "--percent żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--percent żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:765 msgid "--replacefiles may only be specified during package installation" -msgstr "--replacefiles żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--replacefiles żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:769 msgid "--replacepkgs may only be specified during package installation" -msgstr "--replacepkgs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--replacepkgs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:773 msgid "--excludedocs may only be specified during package installation" -msgstr "--excludedocs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--excludedocs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:777 msgid "--includedocs may only be specified during package installation" -msgstr "--includedocs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--includedocs żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:781 msgid "only one of --excludedocs and --includedocs may be specified" -msgstr "--excludedocs żÍ --includedocs żÉźÇ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--excludedocs żÍ --includedocs żÉźÇ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:785 msgid "--ignorearch may only be specified during package installation" -msgstr "--ignorearch żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--ignorearch żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:789 msgid "--ignoreos may only be specified during package installation" -msgstr "--ignoreos żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--ignoreos żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:794 msgid "--ignoresize may only be specified during package installation" -msgstr "--ignoresize żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--ignoresize żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:798 msgid "--allmatches may only be specified during package erasure" -msgstr "--allmatches żÉźÇŔş ĆĐĹ°Áö ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--allmatches żÉźÇŔş ĆĐĹ°Áö ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:802 msgid "--allfiles may only be specified during package installation" -msgstr "--allfiles żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--allfiles żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:807 msgid "--justdb may only be specified during package installation and erasure" -msgstr "--justdb żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--justdb żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:812 msgid "" "script disabling options may only be specified during package installation " "and erasure" -msgstr "˝şĹŠ¸łĆŽ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "˝şĹŠ¸łĆŽ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:817 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" -msgstr "ĆŽ¸Ž°Ĺ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "ĆŽ¸Ž°Ĺ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄżÍ ťčÁŚ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:821 msgid "" @@ -338,25 +338,25 @@ msgid "" "recompilation, installation,erasure, and verification" msgstr "" "--nodeps żÉźÇŔş ĆĐĹ°Áö ÁŚŔŰ, ŔçÁŚŔŰ(rebuild), ŔçÄÄĆÄŔĎ(recompile), źłÄĄ, ťč" -"ÁŚ, °ËÁő˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +"ÁŚ, °ËÁő˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:826 msgid "" "--test may only be specified during package installation, erasure, and " "building" -msgstr "--test żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, ÁŚŔ۽ÿĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--test żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, ÁŚŔ۽ÿĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:831 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -"--root (-r) żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, ÁúŔÇ, ľĽŔĚĹÍşŁŔĚ˝ş Ŕ繸Ăŕ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ" -"˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +"--root (-r) żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, ÁúŔÇ, ľĽŔĚĹÍşŁŔĚ˝ş Ŕ繸Ăŕ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ " +"źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:843 msgid "arguments to --root (-r) must begin with a /" -msgstr "--root (-r) żÉźÇŔÇ ŔÎźö´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔ۾Ǟîžß ÇŐ´Ď´Ů" +msgstr "--root (-r) żÉźÇŔÇ ŔÎźö´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů" #: rpmqv.c:867 msgid "no files to sign\n" @@ -377,11 +377,11 @@ msgstr " #: rpmqv.c:898 msgid "Pass phrase check failed\n" -msgstr "ĆĐ˝ş ą¸šŽ(pass phrase) °ËťçżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "ĆĐ˝ş ą¸šŽ(pass phrase)ŔĚ żĂšŮ¸ŁÁö žĘ˝Ŕ´Ď´Ů\n" #: rpmqv.c:902 msgid "Pass phrase is good.\n" -msgstr "ĆĐ˝ş ą¸šŽ(pass phrase)ŔĚ żĂšŮ¸¨´Ď´Ů.\n" +msgstr "ĆĐ˝ş ą¸šŽ(pass phrase)ŔĚ ŔĎÄĄÇŐ´Ď´Ů.\n" #: rpmqv.c:907 #, c-format @@ -390,7 +390,7 @@ msgstr " #: rpmqv.c:914 msgid "--sign may only be used during package building" -msgstr "--sign żÉźÇŔş ĆĐĹ°Áö ÁŚŔ۽ÿĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +msgstr "--sign żÉźÇŔş ĆĐĹ°Áö ÁŚŔ۽ÿĄ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #: rpmqv.c:931 msgid "exec failed\n" @@ -398,24 +398,23 @@ msgstr " #: rpmqv.c:964 msgid "no packages files given for rebuild" -msgstr "ŔçÁŚŔŰ(rebuild)ÇŇ ĆĐĹ°Áö ĆÄŔĎŔť ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" +msgstr "ŔçÁŚŔŰ(rebuild)ÇŇ ĆĐĹ°Áö ĆÄŔĎŔĚ ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" #: rpmqv.c:1032 msgid "no spec files given for build" -msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ÇĘżäÇŃ spec ĆÄŔĎŔť ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" +msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ÇĘżäÇŃ spec ĆÄŔĎŔĚ ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" #: rpmqv.c:1034 msgid "no tar files given for build" -msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ÇĘżäÇŃ tar ĆÄŔĎŔť ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" +msgstr "ĆĐĹ°Áö ÁŚŔŰżĄ ÇĘżäÇŃ tar ĆÄŔĎŔĚ ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" #: rpmqv.c:1056 -#, fuzzy msgid "no packages given for erase" -msgstr "ź­¸íÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" +msgstr "ťčÁŚÇŇ ĆĐĹ°Áö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" #: rpmqv.c:1097 msgid "no packages given for install" -msgstr "źłÄĄÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" +msgstr "źłÄĄÇŇ ĆĐĹ°Áö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" #: rpmqv.c:1113 msgid "no arguments given for query" @@ -446,12 +445,12 @@ msgstr " #: build/build.c:219 #, c-format msgid "Exec of %s failed (%s): %s\n" -msgstr "%s ŔÇ ˝ÇÇ࿥ ˝ÇĆĐÇÔ (%s): %s\n" +msgstr "%sŔÇ ˝ÇÇ࿥ ˝ÇĆĐÇÔ (%s): %s\n" #: build/build.c:228 #, c-format msgid "Bad exit status from %s (%s)\n" -msgstr "%s ŔÇ Ŕ߸řľČ Ážˇá ťóȲ (%s)\n" +msgstr "%sŔÇ Ŕ߸řľČ Ážˇá ťóȲ (%s)\n" #: build/build.c:328 msgid "" @@ -465,15 +464,15 @@ msgstr "" #: build/expression.c:224 msgid "syntax error while parsing ==\n" -msgstr "'==' şÎşĐżĄź­ ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "'==' Ŕť Ăł¸Ž(parsing)ÇĎ´Â ľľÁß ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: build/expression.c:254 msgid "syntax error while parsing &&\n" -msgstr "'&&' şÎşĐżĄź­ ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "'&&' Ŕť Ăł¸Ž(parsing)ÇĎ´Â ľľÁß ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: build/expression.c:263 msgid "syntax error while parsing ||\n" -msgstr "'||' şÎşĐżĄź­ ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "'||' Ŕť Ăł¸Ž(parsing)ÇĎ´Â ľľÁß ą¸šŽ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: build/expression.c:306 msgid "parse error in expression\n" @@ -485,11 +484,11 @@ msgstr "'(' #: build/expression.c:375 msgid "- only on numbers\n" -msgstr "'-' ´Â źýŔÚżĄ¸¸ ťçżëľË´Ď´Ů\n" +msgstr "'-' ´Â źýŔÚżĄ¸¸ ťçżëÇŐ´Ď´Ů\n" #: build/expression.c:391 msgid "! only on numbers\n" -msgstr "'!' ´Â źýŔÚżĄ¸¸ ťçżëľË´Ď´Ů\n" +msgstr "'!' ´Â źýŔÚżĄ¸¸ ťçżëÇŐ´Ď´Ů\n" #: build/expression.c:438 build/expression.c:491 build/expression.c:554 #: build/expression.c:651 @@ -498,15 +497,15 @@ msgstr " #: build/expression.c:451 msgid "* / not suported for strings\n" -msgstr "'* /' ´Â šŽŔÚż­żĄź­ ťçżëÇĎ˝Ç źö žř˝Ŕ´Ď´Ů\n" +msgstr "'* /' ´Â šŽŔÚż­żĄź­ ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n" #: build/expression.c:507 msgid "- not suported for strings\n" -msgstr "'-' ´Â šŽŔÚż­żĄź­ ťçżëÇĎ˝Ç źö žř˝Ŕ´Ď´Ů\n" +msgstr "'-' ´Â šŽŔÚż­żĄź­ ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n" #: build/expression.c:664 msgid "&& and || not suported for strings\n" -msgstr "'&&' żÍ '||' ´Â šŽŔÚż­żĄź­ ťçżëÇĎ˝Ç źö žř˝Ŕ´Ď´Ů\n" +msgstr "'&&' żÍ '||' ´Â šŽŔÚż­żĄź­ ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n" #: build/expression.c:698 build/expression.c:745 msgid "syntax error in expression\n" @@ -520,12 +519,12 @@ msgstr "TIMECHECK #: build/files.c:341 build/files.c:537 build/files.c:726 #, c-format msgid "Missing '(' in %s %s\n" -msgstr "%s %s żĄź­ '(' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "%s %sżĄ '(' °Ą žř˝Ŕ´Ď´Ů\n" #: build/files.c:352 build/files.c:665 build/files.c:737 #, c-format msgid "Missing ')' in %s(%s\n" -msgstr "%s(%s żĄź­ ')' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "%s(%sżĄ ')' °Ą žř˝Ŕ´Ď´Ů\n" #: build/files.c:390 build/files.c:690 #, c-format @@ -535,7 +534,7 @@ msgstr " #: build/files.c:498 #, c-format msgid "Missing %s in %s %s\n" -msgstr "%2$s %3$s żĄź­ %1$s (Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "%2$s %3$sżĄ %1$s °Ą žř˝Ŕ´Ď´Ů\n" #: build/files.c:553 #, c-format @@ -560,29 +559,29 @@ msgstr " #: build/files.c:764 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" -msgstr "şńÁ¤ťóŔűŔÎ ˇÎÄÉŔĎŔÇ ąćŔĚ: %%lang(%2$s) ŔÇ \"%1$.*s\"\n" +msgstr "şńÁ¤ťóŔűŔÎ ˇÎÄÉŔĎ ąćŔĚ: %%lang(%2$s)żĄ \"%1$.*s\"\n" #. @innercontinue@ #: build/files.c:775 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" -msgstr "%%lang(%2$s) żĄ ÁßşšľČ ˇÎÄÉŔĎ %1$.*s (ŔĚ)°Ą Á¸ŔçÇŐ´Ď´Ů\n" +msgstr "%%lang(%2$s)żĄ ÁßşšľČ ˇÎÄÉŔĎ %1$.*s°Ą Á¸ŔçÇŐ´Ď´Ů\n" #: build/files.c:932 #, c-format msgid "Hit limit for %%docdir\n" -msgstr "%%docdirŔĚ ÇѰ迥 Ŕ̸Łˇś˝Ŕ´Ď´Ů\n" +msgstr "%%docdirŔÇ ÇŃ°č°Ą ĂĘ°úľÇžú˝Ŕ´Ď´Ů\n" #: build/files.c:938 #, c-format msgid "Only one arg for %%docdir\n" -msgstr "%%docdirżĄ´Â ÇĎłŞŔÇ ŔÎźö¸¸ ÁöÁ¤ľÉ źö ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "%%docdirżĄ ÇĎłŞŔÇ ŔÎźö¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů\n" #. We already got a file -- error #: build/files.c:966 #, c-format msgid "Two files on one line: %s\n" -msgstr "ÇĎłŞŔÇ ÁŮżĄ ľÎ°łŔÇ ĆÄŔĎŔĚ Á¸ŔçÇÔ: %s\n" +msgstr "ÇĎłŞŔÇ Ç࿥ ľÎ°łŔÇ ĆÄŔĎŔĚ Á¸ŔçÇÔ: %s\n" #: build/files.c:981 #, c-format @@ -607,7 +606,7 @@ msgstr "BuildRoot #: build/files.c:1531 #, c-format msgid "File doesn't match prefix (%s): %s\n" -msgstr "ĆÄŔĎŔĚ prefix (%s) (żÍ)°ú ŔĎÄĄÇĎÁö žĘŔ˝: %s\n" +msgstr "ĆÄŔĎŔĚ prefix (%s)żÍ ŔĎÄĄÇĎÁö žĘŔ˝: %s\n" #: build/files.c:1555 #, c-format @@ -620,9 +619,9 @@ msgid "Bad owner/group: %s\n" msgstr "Ŕ߸řľČ źŇŔŻŔÚ/ą×ˇě: %s\n" #: build/files.c:1611 -#, fuzzy, c-format +#, c-format msgid "File%5d: %07o %s.%s\t %s\n" -msgstr "ĆÄŔĎ %4d: %07o %s.%s\t %s\n" +msgstr "ĆÄŔĎ%5d: %07o %s.%s\t %s\n" #: build/files.c:1720 #, c-format @@ -647,7 +646,7 @@ msgstr "%s #: build/files.c:1831 build/pack.c:155 #, c-format msgid "line: %s\n" -msgstr "ÁŮ(line): %s\n" +msgstr "Çŕ: %s\n" #: build/files.c:2206 #, c-format @@ -658,32 +657,32 @@ msgstr " #: build/files.c:2280 #, c-format msgid "Couldn't exec %s: %s\n" -msgstr "%s (Ŕť)¸Ś ˝ÇÇŕÇŇ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ˝ÇÇŕÇŇ źö žřŔ˝: %s\n" #: build/files.c:2285 #, c-format msgid "Couldn't fork %s: %s\n" -msgstr "%s (Ŕť)¸Ś fork ÇŇ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś fork ÇŇ źö žřŔ˝: %s\n" #: build/files.c:2369 #, c-format msgid "%s failed\n" -msgstr "%s (ŔĚ)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%s(ŔĚ)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: build/files.c:2373 #, c-format msgid "failed to write all data to %s\n" -msgstr "%s żĄ ¸đľç ŔڡḌ ąâˇĎÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%sżĄ ¸đľç ŔڡḌ ąâˇĎÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: build/files.c:2529 #, c-format msgid "Finding %s: (using %s)...\n" -msgstr "%s (Ŕť)¸Ś ĂŁ´Â Áß: (%s ťçżë)...\n" +msgstr "%s(Ŕť)¸Ś ĂŁ´Â Áß: (%s ťçżë)...\n" #: build/files.c:2558 build/files.c:2572 #, c-format msgid "Failed to find %s:\n" -msgstr "%s (Ŕť)¸Ś ĂŁ´ÂľĽ ˝ÇĆĐÇÔ:\n" +msgstr "%s(Ŕť)¸Ś ĂŁ´ÂľĽ ˝ÇĆĐÇÔ:\n" #: build/files.c:2694 #, c-format @@ -717,12 +716,12 @@ msgstr " #: build/names.c:196 #, c-format msgid "Could not canonicalize hostname: %s\n" -msgstr "ČŁ˝şĆŽ ¸íŔť Á¤ąÔČ­(canonicalize) ÇŇ źö žřŔ˝: %s\n" +msgstr "ČŁ˝şĆŽ¸íŔť Á¤ąÔČ­(canonicalize) ÇŇ źö žřŔ˝: %s\n" #: build/pack.c:88 #, c-format msgid "create archive failed on file %s: %s\n" -msgstr "%s ĆÄŔĎżĄ žĆÄŤŔ̺긌 ťýźşÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "%s ĆÄŔĎŔÇ žĆÄŤŔ̺긌 ťýźşÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" #: build/pack.c:91 #, c-format @@ -772,27 +771,27 @@ msgstr "ĆŽ #: build/pack.c:295 #, c-format msgid "readRPM: open %s: %s\n" -msgstr "RPM ŔĐąâ(readRPM): %s (Ŕť)¸Ś żą´Ď´Ů: %s\n" +msgstr "RPM ŔĐąâ(readRPM): %s(Ŕť)¸Ś żą´Ď´Ů: %s\n" #: build/pack.c:305 #, c-format msgid "readRPM: read %s: %s\n" -msgstr "RPM ŔĐąâ(readRPM): %s (Ŕť)¸Ś ŔĐ˝Ŕ´Ď´Ů: %s\n" +msgstr "RPM ŔĐąâ(readRPM): %s(Ŕť)¸Ś ŔĐ˝Ŕ´Ď´Ů: %s\n" #: build/pack.c:314 build/pack.c:538 #, c-format msgid "%s: Fseek failed: %s\n" -msgstr "%s: FseekżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%s: FseekŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" #: build/pack.c:342 #, c-format msgid "readRPM: %s is not an RPM package\n" -msgstr "RPM ŔĐąâ(readRPM): %s (Ŕş)´Â RPM ĆĐĹ°Áö°Ą žĆ´Ő´Ď´Ů\n" +msgstr "RPM ŔĐąâ(readRPM): %s(Ŕş)´Â RPM ĆĐĹ°Áö°Ą žĆ´Ő´Ď´Ů\n" #: build/pack.c:351 #, c-format msgid "readRPM: reading header from %s\n" -msgstr "RPM ŔĐąâ(readRPM): %s żĄź­ Çě´ő¸Ś ŔĐ°í ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "RPM ŔĐąâ(readRPM): %sżĄź­ Çě´ő¸Ś ŔĐ°í ŔÖ˝Ŕ´Ď´Ů\n" #: build/pack.c:480 msgid "Unable to create immutable header region.\n" @@ -822,7 +821,7 @@ msgstr " #: build/pack.c:591 #, c-format msgid "Could not open %s: %s\n" -msgstr "%s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" #: build/pack.c:627 lib/psm.c:1463 #, c-format @@ -832,27 +831,27 @@ msgstr " #: build/pack.c:642 #, c-format msgid "Unable to open sigtarget %s: %s\n" -msgstr "ź­¸íÇŇ ´ëťó %s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" +msgstr "ź­¸íÇŇ ´ëťó %s(Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" #: build/pack.c:653 #, c-format msgid "Unable to read header from %s: %s\n" -msgstr "%s ŔÇ Çě´ő¸Ś ŔĐŔť źö žřŔ˝: %s\n" +msgstr "%sŔÇ Çě´ő¸Ś ŔĐŔť źö žřŔ˝: %s\n" #: build/pack.c:667 #, c-format msgid "Unable to write header to %s: %s\n" -msgstr "%s żĄ Çě´ő¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" +msgstr "%sżĄ Çě´ő¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" #: build/pack.c:677 #, c-format msgid "Unable to read payload from %s: %s\n" -msgstr "%s ŔÇ payload¸Ś ŔĐŔť źö žřŔ˝: %s\n" +msgstr "%sŔÇ payload¸Ś ŔĐŔť źö žřŔ˝: %s\n" #: build/pack.c:683 #, c-format msgid "Unable to write payload to %s: %s\n" -msgstr "%s żĄ payload¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" +msgstr "%sżĄ payload¸Ś ŔŰźşÇŇ źö žřŔ˝: %s\n" #: build/pack.c:708 lib/psm.c:1753 #, c-format @@ -867,12 +866,12 @@ msgstr "%s #: build/pack.c:792 #, c-format msgid "cannot create %s: %s\n" -msgstr "%s (Ŕť)¸Ś ťýźşÇŇ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ťýźşÇŇ źö žřŔ˝: %s\n" #: build/parseBuildInstallClean.c:32 #, c-format msgid "line %d: second %s\n" -msgstr "%d šř° ÁŮ: ľÎšř° %s\n" +msgstr "%d šř° Çŕ: ľÎšř° %s\n" #: build/parseChangelog.c:125 #, c-format @@ -890,14 +889,14 @@ msgid "bad date in %%changelog: %s\n" msgstr "%%changelogżĄ Ŕ߸řľČ łŻÂĽ: %s\n" #: build/parseChangelog.c:155 -#, fuzzy, c-format +#, c-format msgid "%%changelog not in descending chronological order\n" -msgstr "%%changelog°Ą łŻÂĽźřŔ¸ˇÎ ľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" +msgstr "%%changelog°Ą łŻÂĽ(chronological) źřŔ¸ˇÎ ľÇžîŔÖÁö žĘ˝Ŕ´Ď´Ů\n" #: build/parseChangelog.c:163 build/parseChangelog.c:174 #, c-format msgid "missing name in %%changelog\n" -msgstr "%%changelogżĄź­ Ŕ̸§Ŕť ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "%%changelogżĄ Ŕ̸§ŔĚ şüÁŽŔÖ˝Ŕ´Ď´Ů\n" #: build/parseChangelog.c:181 #, c-format @@ -907,37 +906,37 @@ msgstr "%%changelog #: build/parseDescription.c:47 #, c-format msgid "line %d: Error parsing %%description: %s\n" -msgstr "%d šř° ÁŮ: %%descriptionżĄź­ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%descriptionżĄź­ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" #: build/parseDescription.c:60 build/parseFiles.c:56 build/parseScript.c:199 #, c-format msgid "line %d: Bad option %s: %s\n" -msgstr "%d šř° ÁŮ: %s (Ŕş)´Â Ŕ߸řľČ żÉźÇŔÔ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %s(Ŕş)´Â Ŕ߸řľČ żÉźÇŔÔ´Ď´Ů: %s\n" #: build/parseDescription.c:75 build/parseFiles.c:70 build/parseScript.c:213 #, c-format msgid "line %d: Too many names: %s\n" -msgstr "%d šř° ÁŮ: Ŕ̸§ŔĚ łĘšŤ ¸š˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: Ŕ̸§ŔĚ łĘšŤ ¸š˝Ŕ´Ď´Ů: %s\n" #: build/parseDescription.c:85 build/parseFiles.c:79 build/parseScript.c:222 #, c-format msgid "line %d: Package does not exist: %s\n" -msgstr "%d šř° ÁŮ: ĆĐĹ°Áö°Ą Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: ĆĐĹ°Áö°Ą Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů: %s\n" #: build/parseDescription.c:97 #, c-format msgid "line %d: Second description\n" -msgstr "%d šř° ÁŮ: ľÎšř° łťżë(description)\n" +msgstr "%d šř° Çŕ: ľÎšř° łťżë(description)\n" #: build/parseFiles.c:42 #, c-format msgid "line %d: Error parsing %%files: %s\n" -msgstr "%d šř° ÁŮ: %%filesżĄź­ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%filesżĄź­ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" #: build/parseFiles.c:86 #, c-format msgid "line %d: Second %%files list\n" -msgstr "%d šř° ÁŮ: ľÎšř° %%files ¸ńˇĎ\n" +msgstr "%d šř° Çŕ: ľÎšř° %%files ¸ńˇĎ\n" #: build/parsePreamble.c:234 #, c-format @@ -962,7 +961,7 @@ msgstr " #: build/parsePreamble.c:271 #, c-format msgid "%s field must be present in package: %s\n" -msgstr "%s Ç׸ń(field)Ŕş šÝľĺ˝Ă ĆĐĹ°ÁöżĄ Ć÷ÇԾǞîžßÇÔ: %s\n" +msgstr "ĆĐĹ°ÁöżĄ šÝľĺ˝Ă %s Ç׸ń(field)Ŕť Ć÷ÇÔÇŘžßÇÔ: %s\n" #: build/parsePreamble.c:299 #, c-format @@ -987,23 +986,23 @@ msgstr " #: build/parsePreamble.c:434 #, c-format msgid "line %d: Tag takes single token only: %s\n" -msgstr "%d šř° ÁŮ: Ĺ¹׿Ą ÇĎłŞŔÇ ĹäĹŤ¸¸ ŔÖ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: Ĺ¹׿Ą ÇĎłŞŔÇ ĹäĹŤ¸¸ ŔÖ˝Ŕ´Ď´Ů: %s\n" #: build/parsePreamble.c:474 #, c-format msgid "line %d: Malformed tag: %s\n" -msgstr "%d šř° ÁŮ: żĂšŮ¸ŁÁö ¸řÇŃ ĹÂą×ŔÔ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: żĂšŮ¸ŁÁö ¸řÇŃ ĹÂą×ŔÔ´Ď´Ů: %s\n" #. Empty field #: build/parsePreamble.c:482 #, c-format msgid "line %d: Empty tag: %s\n" -msgstr "%d šř° ÁŮ: ĹÂą×°Ą şńžîŔÖ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: ĹÂą×°Ą şńžîŔÖ˝Ŕ´Ď´Ů: %s\n" #: build/parsePreamble.c:505 build/parsePreamble.c:512 #, c-format msgid "line %d: Illegal char '-' in %s: %s\n" -msgstr "%d šř° ÁŮ: %s żĄ şÎŔűÇŐÇŃ šŽŔÚ '-' °Ą ŔÖŔ˝: %s\n" +msgstr "%d šř° Çŕ: %sżĄ şÎŔűÇŐÇŃ šŽŔÚ '-' °Ą ŔÖŔ˝: %s\n" #: build/parsePreamble.c:573 build/parseSpec.c:410 #, c-format @@ -1013,32 +1012,32 @@ msgstr "BuildRoot #: build/parsePreamble.c:586 #, c-format msgid "line %d: Prefixes must not end with \"/\": %s\n" -msgstr "%d šř° ÁŮ: Prefixes´Â Ŕý´ë \"/\" ˇÎ łĄłŞź­´Â žČľË´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: Prefixes´Â Ŕý´ë \"/\" ˇÎ łĄłŞź­´Â žČľË´Ď´Ů: %s\n" #: build/parsePreamble.c:598 #, c-format msgid "line %d: Docdir must begin with '/': %s\n" -msgstr "%d šř° ÁŮ: DocdirŔş šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: DocdirŔş šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů: %s\n" #: build/parsePreamble.c:610 #, c-format msgid "line %d: Epoch/Serial field must be a number: %s\n" -msgstr "%d šř° ÁŮ: Epoch/Serial Ç׸ń(field)Ŕş šÝľĺ˝Ă źýŔÚŔĚžîžß ÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: Epoch/Serial Ç׸ń(field)Ŕş šÝľĺ˝Ă źýŔÚŔĚžîžß ÇŐ´Ď´Ů: %s\n" #: build/parsePreamble.c:650 build/parsePreamble.c:661 #, c-format msgid "line %d: Bad %s: qualifiers: %s\n" -msgstr "%d šř° ÁŮ: Ŕ߸řľČ %s: źö˝ÄŔÚ(qualifier): %s\n" +msgstr "%d šř° Çŕ: Ŕ߸řľČ %s: źö˝ÄŔÚ(qualifier): %s\n" #: build/parsePreamble.c:687 #, c-format msgid "line %d: Bad BuildArchitecture format: %s\n" -msgstr "%d šř° ÁŮ: Ŕ߸řľČ BuildArchitecture Çü˝ÄŔÔ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: Ŕ߸řľČ BuildArchitecture Çü˝ÄŔÔ´Ď´Ů: %s\n" #: build/parsePreamble.c:696 #, c-format msgid "Internal error: Bogus tag %d\n" -msgstr "łťşÎ żŔˇů šßťý: ş¸°Ĺ˝ş(Bogus) ĹÂą× %d\n" +msgstr "łťşÎ żŔˇů: ş¸°Ĺ˝ş(Bogus) ĹÂą× %d\n" #: build/parsePreamble.c:852 #, c-format @@ -1053,7 +1052,7 @@ msgstr " #: build/parsePreamble.c:885 #, c-format msgid "line %d: Unknown tag: %s\n" -msgstr "%d šř° ÁŮ: žË źö žř´Â ĹÂą×ŔÔ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: žË źö žř´Â ĹÂą×ŔÔ´Ď´Ů: %s\n" #: build/parsePreamble.c:907 msgid "Spec file can't use BuildRoot\n" @@ -1067,120 +1066,120 @@ msgstr " #: build/parsePrep.c:86 #, c-format msgid "No patch number %d\n" -msgstr "ĆĐÄĄ šřČŁ %d °Ą žř˝Ŕ´Ď´Ů\n" +msgstr "ĆĐÄĄ šřČŁ %d°Ą žř˝Ŕ´Ď´Ů\n" #: build/parsePrep.c:180 #, c-format msgid "No source number %d\n" -msgstr "źŇ˝ş šřČŁ %d °Ą žř˝Ŕ´Ď´Ů\n" +msgstr "źŇ˝ş šřČŁ %d°Ą žř˝Ŕ´Ď´Ů\n" #: build/parsePrep.c:202 #, c-format msgid "Couldn't download nosource %s: %s\n" -msgstr "nosource %s (Ŕť)¸Ś ´ŮżîˇÎľĺ ÇŇ źö žřŔ˝: %s\n" +msgstr "nosource %s(Ŕť)¸Ś ´ŮżîˇÎľĺÇŇ źö žřŔ˝: %s\n" #: build/parsePrep.c:303 #, c-format msgid "Error parsing %%setup: %s\n" -msgstr "%%setupżĄź­ żŔˇů°Ą šßťýÇÔ: %s\n" +msgstr "%%setupżĄź­ żŔˇů šßťý: %s\n" #: build/parsePrep.c:318 #, c-format msgid "line %d: Bad arg to %%setup: %s\n" -msgstr "%d šř° ÁŮ: %%setupżĄ Ŕ߸řľČ ŔÎźö°Ą ŔÖ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%setupżĄ Ŕ߸řľČ ŔÎźö°Ą ŔÖ˝Ŕ´Ď´Ů: %s\n" #: build/parsePrep.c:336 #, c-format msgid "line %d: Bad %%setup option %s: %s\n" -msgstr "%d šř° ÁŮ: Ŕ߸řľČ %%setup żÉźÇ %s: %s\n" +msgstr "%d šř° Çŕ: %%setupżĄ Ŕ߸řľČ %s żÉźÇ: %s\n" #: build/parsePrep.c:476 #, c-format msgid "line %d: Need arg to %%patch -b: %s\n" -msgstr "%d šř° ÁŮ: %%patch -b żĄ ŔÎźö°Ą ÇĘżäÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%patch -b żĄ ŔÎźö°Ą ÇĘżäÇŐ´Ď´Ů: %s\n" #: build/parsePrep.c:485 #, c-format msgid "line %d: Need arg to %%patch -z: %s\n" -msgstr "%d šř° ÁŮ: %%patch -z żĄ ŔÎźö°Ą ÇĘżäÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%patch -z żĄ ŔÎźö°Ą ÇĘżäÇŐ´Ď´Ů: %s\n" #: build/parsePrep.c:497 #, c-format msgid "line %d: Need arg to %%patch -p: %s\n" -msgstr "%d šř° ÁŮ: %%patch -p żĄ ŔÎźö°Ą ÇĘżäÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%patch -p żĄ ŔÎźö°Ą ÇĘżäÇŐ´Ď´Ů: %s\n" #: build/parsePrep.c:504 #, c-format msgid "line %d: Bad arg to %%patch -p: %s\n" -msgstr "%d šř° ÁŮ: %%patch -p żĄ Ŕ߸řľČ ŔÎźö°Ą ŔÖ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%patch -p żĄ Ŕ߸řľČ ŔÎźö°Ą ŔÖ˝Ŕ´Ď´Ů: %s\n" #: build/parsePrep.c:511 msgid "Too many patches!\n" -msgstr "ĆĐÄĄŔÇ źö°Ą łĘšŤ ¸š˝Ŕ´Ď´Ů!\n" +msgstr "ĆĐÄĄ°Ą łĘšŤ ¸š˝Ŕ´Ď´Ů!\n" #: build/parsePrep.c:515 #, c-format msgid "line %d: Bad arg to %%patch: %s\n" -msgstr "%d šř° ÁŮ: %%patchżĄ Ŕ߸řľČ ŔÎźö°Ą ŔÖ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %%patchżĄ Ŕ߸řľČ ŔÎźö°Ą ŔÖ˝Ŕ´Ď´Ů: %s\n" #: build/parsePrep.c:550 #, c-format msgid "line %d: second %%prep\n" -msgstr "%d šř° ÁŮ: ľÎšř° %%prep\n" +msgstr "%d šř° Çŕ: ľÎšř° %%prep\n" #: build/parseReqs.c:101 #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" msgstr "" -"%d šř° ÁŮ: ŔÇÁ¸źş ĹäĹŤ(token)Ŕş šÝľĺ˝Ă 'šŽŔÚ-źýŔÚŔÇÁśÇŐ', '_' śÇ´Â '/' ˇÎ ˝Ă" +"%d šř° Çŕ: ŔÇÁ¸źş ĹäĹŤ(token)Ŕş šÝľĺ˝Ă 'šŽŔÚ-źýŔÚ ÁśÇŐ', '_' śÇ´Â '/' ˇÎ ˝Ă" "ŔŰÇŘžß ÇŐ´Ď´Ů: %s\n" #: build/parseReqs.c:112 #, c-format msgid "line %d: File name not permitted: %s\n" -msgstr "%d šř° ÁŮ: ĆÄŔĎ Ŕ̸§ŔĚ Çă°ĄľÇÁö žĘ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: ÇŘ´ç ĆÄŔϸíŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů: %s\n" #: build/parseReqs.c:144 #, c-format msgid "line %d: Versioned file name not permitted: %s\n" -msgstr "%d šř° ÁŮ: šöŔüŔĚ ¸í˝ĂľČ ĆÄŔĎ Ŕ̸§ŔĚ Çă°ĄľÇÁö žĘ˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: šöŔüŔĚ ¸í˝ĂľČ ĆÄŔϸíŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů: %s\n" #: build/parseReqs.c:175 #, c-format msgid "line %d: Version required: %s\n" -msgstr "%d šř° ÁŮ: šöŔüŔĚ ÇĘżäÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: šöŔüŔĚ ÇĘżäÇŐ´Ď´Ů: %s\n" #: build/parseScript.c:165 #, c-format msgid "line %d: triggers must have --: %s\n" -msgstr "%d šř° ÁŮ: ĆŽ¸Ž°Ĺ´Â šÝľĺ˝Ă '--' ¸Ś Ć÷ÇÔÇŘžß ÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: ĆŽ¸Ž°Ĺ´Â šÝľĺ˝Ă '--' ¸Ś Ć÷ÇÔÇŘžß ÇŐ´Ď´Ů: %s\n" #: build/parseScript.c:175 build/parseScript.c:238 #, c-format msgid "line %d: Error parsing %s: %s\n" -msgstr "%d šř° ÁŮ: %s żĄź­ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %sżĄź­ żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: %s\n" #: build/parseScript.c:186 #, c-format msgid "line %d: script program must begin with '/': %s\n" -msgstr "%d šř° ÁŮ: ˝şĹŠ¸łĆŽ ÇÁˇÎą×ˇĽŔş šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: ˝şĹŠ¸łĆŽ ÇÁˇÎą×ˇĽŔş šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů: %s\n" #: build/parseScript.c:230 #, c-format msgid "line %d: Second %s\n" -msgstr "%d šř° ÁŮ: ľÎšř° %s\n" +msgstr "%d šř° Çŕ: ľÎšř° %s\n" #: build/parseSpec.c:148 #, c-format msgid "line %d: %s\n" -msgstr "%d šř° ÁŮ: %s\n" +msgstr "%d šř° Çŕ: %s\n" #. XXX Fstrerror #: build/parseSpec.c:198 #, c-format msgid "Unable to open %s: %s\n" -msgstr "%s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" #: build/parseSpec.c:214 #, c-format @@ -1190,7 +1189,7 @@ msgstr "%%if #: build/parseSpec.c:286 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" -msgstr "%s:%d: parseExpressionBooleanżĄź­ %d (Ŕť)¸Ś šÝČŻÇĎż´˝Ŕ´Ď´Ů\n" +msgstr "%s:%d: parseExpressionBooleanżĄź­ %d °ŞŔĚ šÝČŻľÇžú˝Ŕ´Ď´Ů\n" #: build/parseSpec.c:295 #, c-format @@ -1219,13 +1218,12 @@ msgstr " #: build/poptBT.c:116 #, c-format msgid "buildroot already specified, ignoring %s\n" -msgstr "buildroot´Â ŔĚšĚ ÁöÁ¤ľÇžî ŔÖ˝Ŕ´Ď´Ů, %s (Ŕť)¸Ś šŤ˝ĂÇŐ´Ď´Ů\n" +msgstr "buildroot´Â ŔĚšĚ ÁöÁ¤ľÇžî ŔÖ˝Ŕ´Ď´Ů, %s(Ŕť)¸Ś šŤ˝ĂÇŐ´Ď´Ů\n" #: build/poptBT.c:146 #, c-format msgid "build through %prep (unpack sources and apply patches) from " -msgstr "" -" ŔÇ %prep (źŇ˝ş¸Ś ÇŽ°í ĆĐÄĄ¸Ś ŔűżëÇĎ´Â °úÁ¤) Ŕť ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ŔÇ %prep (źŇ˝ş¸Ś ÇŽ°í ĆĐÄĄ¸Ś ŔűżëÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 #: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 @@ -1234,35 +1232,33 @@ msgstr "" -msgstr " ŔÇ %build (%prep °ú ÄÄĆÄŔĎÇĎ´Â °úÁ¤) ¸Ś ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ŔÇ %build (%prep°ú ÄÄĆÄŔĎÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:152 msgid "build through %install (%prep, %build, then install) from " -msgstr "" -" ŔÇ %install (%prep, %build żÍ źłÄĄÇĎ´Â °úÁ¤) Ŕť ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ŔÇ %install (%prep, %buildżÍ źłÄĄÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:155 #, c-format msgid "verify %files section from " -msgstr " ŔÇ %files Ç׸ń(section)Ŕť °ËťçÇŐ´Ď´Ů" +msgstr "ŔÇ %files Ç׸ń(section)Ŕť °ËťçÇŐ´Ď´Ů" #: build/poptBT.c:158 msgid "build source and binary packages from " -msgstr " ˇÎ źŇ˝şżÍ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ˇÎ źŇ˝şżÍ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:161 msgid "build binary package only from " -msgstr " ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:164 msgid "build source package only from " -msgstr " ˇÎ źŇ˝ş ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ˇÎ źŇ˝ş ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:168 #, c-format msgid "build through %prep (unpack sources and apply patches) from " -msgstr "" -" ŔÇ %prep (źŇ˝ş¸Ś ÇŽ°í ĆĐÄĄ¸Ś ŔűżëÇĎ´Â °úÁ¤) Ŕť ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +msgstr "Ŕť %prep (źŇ˝ş¸Ś ÇŽ°í ĆĐÄĄ¸Ś ŔűżëÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 #: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 @@ -1271,33 +1267,32 @@ msgstr "" -msgstr " ŔÇ %build (%prep °ú ÄÄĆÄŔĎÇĎ´Â °úÁ¤) ¸Ś ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +msgstr "Ŕť %build (%prep°ú ÄÄĆÄŔĎÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:174 msgid "build through %install (%prep, %build, then install) from " -msgstr "" -" ŔÇ %install (%prep, %build żÍ źłÄĄÇĎ´Â °úÁ¤) Ŕť ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +msgstr "Ŕť %install (%prep, %buildżÍ źłÄĄÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:177 #, c-format msgid "verify %files section from " -msgstr " ŔÇ %files Ç׸ń(section)Ŕť °ËťçÇŐ´Ď´Ů" +msgstr "ŔÇ %files Ç׸ń(section)Ŕť °ËťçÇŐ´Ď´Ů" #: build/poptBT.c:180 msgid "build source and binary packages from " -msgstr " ˇÎ źŇ˝şżÍ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ˇÎ źŇ˝şżÍ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:183 msgid "build binary package only from " -msgstr " ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:186 msgid "build source package only from " -msgstr " ˇÎ źŇ˝ş ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" +msgstr "ˇÎ źŇ˝ş ĆĐĹ°Áö ¸¸Ŕť ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:190 msgid "build binary package from " -msgstr "<źŇ˝ş ĆĐĹ°Áö> ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" +msgstr "<źŇ˝ş ĆĐĹ°Áö>ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:191 build/poptBT.c:194 msgid "" @@ -1307,7 +1302,7 @@ msgstr "< msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -"<źŇ˝ş ĆĐĹ°Áö> ŔÇ %install (%prep, %build żÍ źłÄĄÇĎ´Â °úÁ¤) Ŕť ĹëÇŘ ÁŚŔŰÇŐ´Ď´Ů" +"<źŇ˝ş ĆĐĹ°Áö>¸Ś %install (%prep, %buildżÍ źłÄĄÇĎ´Â °úÁ¤)Ŕ¸ˇÎ ÁŚŔŰÇŐ´Ď´Ů" #: build/poptBT.c:197 msgid "override build root" @@ -1323,7 +1318,7 @@ msgstr "rpm4 #: build/poptBT.c:203 msgid "ignore ExcludeArch: directives from spec file" -msgstr "ExcludeArch¸Ś šŤ˝ĂÇÔ: spec ĆÄŔĎżĄź­ ÁöÁ¤(directive)ÇŐ´Ď´Ů" +msgstr "ExcludeArch¸Ś šŤ˝ĂÇÔ: spec ĆÄŔĎżĄź­ ÁöÁ¤(directive)ľË´Ď´Ů" #: build/poptBT.c:205 msgid "debug file state machine" @@ -1343,7 +1338,7 @@ msgstr "( #: build/poptBT.c:214 msgid "do not accept i18N msgstr's from specfile" -msgstr "specĆÄŔĎŔÇ i18N msgstrŔť ÇăżëÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "specĆÄŔĎŔÇ i18N msgstrŔť ťçżë(accept)ÇĎÁö žĘ˝Ŕ´Ď´Ů" #: build/poptBT.c:216 msgid "remove sources when done" @@ -1367,22 +1362,22 @@ msgstr " #: build/poptBT.c:226 msgid "lookup i18N strings in specfile catalog" -msgstr "specĆÄŔĎ ¸ńˇĎ(catalog)żĄź­ i18N šŽŔÚż­Ŕť ĂŁ˝Ŕ´Ď´Ů" +msgstr "specĆÄŔĎ ¸ńˇĎ(catalog)żĄź­ i18N šŽŔÚż­Ŕť °ËťöÇŐ´Ď´Ů" #: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" -msgstr "%d šř° ÁŮ: Ŕ߸řľČ źýŔÚŔÔ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: Ŕ߸řľČ źýŔÚŔÔ´Ď´Ů: %s\n" #: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" -msgstr "%d šř° ÁŮ: Ŕ߸řľČ no%s źýŔÚŔÔ´Ď´Ů: %d\n" +msgstr "%d šř° Çŕ: no%s(Ŕş)´Â Ŕ߸řľČ źýŔÚŔÔ´Ď´Ů: %d\n" #: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" -msgstr "%d šř° ÁŮ: Ŕ߸řľČ %s źýŔÚŔÔ´Ď´Ů: %s\n" +msgstr "%d šř° Çŕ: %s(Ŕş)´Â Ŕ߸řľČ źýŔÚŔÔ´Ď´Ů: %s\n" #: lib/cpio.c:192 #, c-format @@ -1415,7 +1410,7 @@ msgstr "MD5 #: lib/cpio.c:221 msgid "Internal error" -msgstr "łťşÎ żŔˇů šßťý" +msgstr "łťşÎ żŔˇů" #: lib/cpio.c:222 msgid "Archive file not in header" @@ -1447,7 +1442,7 @@ msgstr "%s: %-45s #: lib/depends.c:453 #, fuzzy msgid "(db files)" -msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" +msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" #: lib/depends.c:465 #, fuzzy @@ -1462,12 +1457,12 @@ msgstr " #: lib/depends.c:817 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" -msgstr "" +msgstr "´ŮŔ˝°ú °üˇĂľČ ĆĐĹ°Áö Ŕ̸§Ŕť šŤ˝ĂÇŐ´Ď´Ů [%d]\t%s -> %s\n" #: lib/depends.c:937 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" -msgstr "tsort °ü°čżĄź­ %s-%s-%s \"%s\" (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" +msgstr "tsort °ü°čżĄź­ %s-%s-%s \"%s\"(Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" #. Record all relations. #: lib/depends.c:1207 @@ -1476,16 +1471,16 @@ msgstr "========== tsort #. T4. Scan for zeroes. #: lib/depends.c:1313 -#, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -"========== ĆĐĹ°Áö¸Ś tsort ÇŐ´Ď´Ů (źřź­, #źąŔÓŔÚ, #ČÄŔÓŔÚ, ąíŔĚ[depth])\n" +"========== ĆĐĹ°Áö¸Ś tsort ÇŐ´Ď´Ů (źřź­, #źąŔÓŔÚ, #ČÄŔÓŔÚ, ĆŽ¸Ž, ąíŔĚ" +"[depth])\n" #: lib/depends.c:1406 msgid "========== successors only (presentation order)\n" -msgstr "========== ČÄŔÓŔÚ [successors only] (ÇĽÇö źř)\n" +msgstr "========== ČÄŔÓŔÚ¸¸ [successors only] (ÇĽÇö źř)\n" #: lib/depends.c:1476 msgid "LOOP:\n" @@ -1507,23 +1502,21 @@ msgid "(not a number)" msgstr "(źýŔÚ°Ą žĆ´Ő´Ď´Ů)" #: lib/formats.c:139 -#, fuzzy msgid "(not base64)" -msgstr "(źýŔÚ°Ą žĆ´Ő´Ď´Ů)" +msgstr "(base64°Ą žĆ´Ő´Ď´Ů)" #: lib/formats.c:149 msgid "(invalid type)" -msgstr "" +msgstr "(şÎŔűÇŐÇŃ Ĺ¸ŔÔ)" #: lib/formats.c:211 lib/formats.c:256 -#, fuzzy msgid "(not a blob)" -msgstr "(źýŔÚ°Ą žĆ´Ő´Ď´Ů)" +msgstr "(BLOB[Binary Large OBject]ŔĚ žĆ´Ő´Ď´Ů)" #: lib/fs.c:75 #, c-format msgid "mntctl() failed to return size: %s\n" -msgstr "mntctl()żĄź­ żëˇŽŔť šÝČŻÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "mntctl()żĄź­ ĹŠąâ¸Ś šÝČŻÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" #: lib/fs.c:90 #, c-format @@ -1533,17 +1526,17 @@ msgstr "mntctl() #: lib/fs.c:110 lib/fs.c:193 lib/fs.c:296 #, c-format msgid "failed to stat %s: %s\n" -msgstr "%s ŔÇ ťóĹÂ(stat)¸Ś ÇĽ˝ĂÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "%sŔÇ ťóĹÂ(stat)¸Ś ÇĽ˝ĂÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" #: lib/fs.c:153 rpmio/url.c:508 #, c-format msgid "failed to open %s: %s\n" -msgstr "%s (Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "%s(Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" #: lib/fs.c:319 #, c-format msgid "file %s is on an unknown device\n" -msgstr "%s ĆÄŔĎŔĚ žË źö žř´Â ŔĺÄĄ ťóżĄ Á¸ŔçÇŐ´Ď´Ů\n" +msgstr "%s ĆÄŔĎŔş žË źö žř´Â ŔĺÄĄ ťóżĄ ŔÖ˝Ŕ´Ď´Ů\n" #: lib/fsm.c:321 #, fuzzy @@ -1558,62 +1551,61 @@ msgstr "%9d %s\n" #: lib/fsm.c:1198 #, c-format msgid "%s directory created with perms %04o.\n" -msgstr "%04o Çă°ĄąÇ(perms)ŔÇ %s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n" +msgstr "%2$04oŔÇ Çă°ĄąÇ(perms)Ŕť °ĄÁř %1$s ľđˇşĹ与°Ą ťýźşľÇžú˝Ŕ´Ď´Ů.\n" #: lib/fsm.c:1489 #, c-format msgid "archive file %s was not found in header file list\n" -msgstr "Çě´ő ĆÄŔĎ ¸ńˇĎżĄź­ žĆÄŤŔĚşę ĆÄŔĎ %s (Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "Çě´ő ĆÄŔĎ ¸ńˇĎżĄź­ žĆÄŤŔĚşę ĆÄŔĎ %s(Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů\n" #: lib/fsm.c:1612 lib/fsm.c:1738 #, c-format msgid "%s saved as %s\n" -msgstr "%s (ŔĚ)°Ą %s (Ŕ¸)ˇÎ ŔúŔĺľÇžú˝Ŕ´Ď´Ů\n" +msgstr "%s(ŔĚ)°Ą %s(Ŕ¸)ˇÎ ŔúŔĺľÇžú˝Ŕ´Ď´Ů\n" #: lib/fsm.c:1764 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" -msgstr "%s %s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: şó ľđˇşĹ与°Ą žĆ´Ő´Ď´Ů\n" +msgstr "%s %s ľđˇşĹ与 ťčÁŚżĄ ˝ÇĆĐÇÔ: şó ľđˇşĹ与°Ą žĆ´Ő´Ď´Ů\n" #: lib/fsm.c:1770 #, c-format msgid "%s rmdir of %s failed: %s\n" -msgstr "%s %s ľđˇşĹ与¸Ś ťčÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "%s %s ľđˇşĹ与 ťčÁŚżĄ ˝ÇĆĐÇÔ: %s\n" #: lib/fsm.c:1780 #, c-format msgid "%s unlink of %s failed: %s\n" -msgstr "%s %s ¸ľĹŠ¸Ś ÇŘÁŚÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "%s %s ¸ľĹŠ ÇŘÁŚżĄ ˝ÇĆĐÇÔ: %s\n" #: lib/fsm.c:1800 #, c-format msgid "%s created as %s\n" -msgstr "%s (ŔĚ)°Ą %s (Ŕ¸)ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů\n" +msgstr "%s(ŔĚ)°Ą %s(Ŕ¸)ˇÎ ťýźşľÇžú˝Ŕ´Ď´Ů\n" #: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 #, c-format msgid "error creating temporary file %s\n" -msgstr "Ŕӽà ĆÄŔĎ %s (Ŕť)¸Ś ťýźşÇĎ´Â ľľÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "Ŕӽà ĆÄŔĎ %s(Ŕť)¸Ś ťýźşÇĎ´Â ľľÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577 #, c-format msgid "%s: readLead failed\n" -msgstr "%s: readLeadżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%s: readLeadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: lib/package.c:184 msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "ŔĚ RPM šöŔüżĄź­´Â ĆĐĹ°ÂĄ šöŔü '1' ŔĚ ÁöżřľÇÁö žĘ˝Ŕ´Ď´Ů\n" +msgstr "ŔĚ RPM šöŔüŔş ĆĐĹ°ÂĄ šöŔü '1' Ŕť ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů\n" #: lib/package.c:192 msgid "" "only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" -"ŔĚ RPM šöŔüżĄź­´Â ÁÖżä šřČŁ(major number) <= 4 ŔÇ ĆĐĹ°ÂĄ ¸¸Ŕť ÁöżřÇŐ´Ď´Ů\n" +msgstr "ŔĚ RPM šöŔüŔş ÁÖ šřČŁ(major number)°Ą <= 4 ŔÎ ĆĐĹ°ÂĄ ¸¸Ŕť ÁöżřÇŐ´Ď´Ů\n" #: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593 #, c-format msgid "%s: rpmReadSignature failed\n" -msgstr "%s: rpmReadSignatureżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%s: rpmReadSignatureŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598 #, c-format @@ -1623,7 +1615,7 @@ msgstr "%s: #: lib/package.c:251 lib/rpmchecksig.c:498 #, fuzzy, c-format msgid "%s: headerRead failed\n" -msgstr "%s: readLeadżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%s: readLeadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669 #, c-format @@ -1633,19 +1625,19 @@ msgstr "" #: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527 #, c-format msgid "%s: Fread failed: %s\n" -msgstr "%s: FreadżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%s: FreadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" #: lib/poptI.c:49 msgid "exclude paths must begin with a /" -msgstr "ÁŚżÜ˝ĂĹł °ćˇÎ´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔ۾Ǟîžß ÇŐ´Ď´Ů" +msgstr "ÁŚżÜ˝ĂĹł °ćˇÎ´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů" #: lib/poptI.c:61 msgid "relocations must begin with a /" -msgstr "ŔçščÄĄ˝ĂżĄ´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔ۾Ǟîžß ÇŐ´Ď´Ů" +msgstr "ŔçščÄĄ˝ĂżĄ´Â šÝľĺ˝Ă '/' ˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů" #: lib/poptI.c:63 msgid "relocations must contain a =" -msgstr "ŔçščÄĄ˝ĂżĄ´Â šÝľĺ˝Ă '=' ŔĚ Ć÷ÇԾǞîžß ÇŐ´Ď´Ů" +msgstr "ŔçščÄĄ˝ĂżĄ´Â šÝľĺ˝Ă '=' Ŕť Ć÷ÇÔÇŘžß ÇŐ´Ď´Ů" #: lib/poptI.c:66 msgid "relocations must have a / following the =" @@ -1653,28 +1645,29 @@ msgstr " #: lib/poptI.c:80 msgid "rollback takes a time/date stamp argument" -msgstr "" +msgstr "ˇŃšé(rollback)ŔÇ ŔÎźö´Â ˝Ă°Ł/łŻÂĽ ˝şĹĆÇÁ ŔÔ´Ď´Ů" #: lib/poptI.c:87 -#, fuzzy msgid "malformed rollback time/date stamp argument" -msgstr "żĂšŮ¸ŁÁö ¸řÇŃ ˇŃšé(rollback) ˝Ă°Ł" +msgstr "ˇŃšé(rollback)ŔÇ ŔÎźöŔÎ ˝Ă°Ł/łŻÂĽ ˝şĹĆÇÁ°Ą żĂšŮ¸ŁÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:106 msgid "install all files, even configurations which might otherwise be skipped" -msgstr "žîś°ÇŃ źłÁ¤żĄ ťó°üžřŔĚ ĆĐĹ°Áö žČŔÇ ¸đľç ĆÄŔĎŔť źłÄĄÇŐ´Ď´Ů" +msgstr "" +"ĆŻÁ¤ ĆÄŔĎŔť ťýˇŤÇĎąâ Ŕ§ÇŃ źłÁ¤ŔĚ ŔűżëľČ °ćżěżĄľľ, ĆĐĹ°Áö žČŔÇ ¸đľç ĆÄŔĎŔť źł" +"ÄĄÇŐ´Ď´Ů" #: lib/poptI.c:110 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" msgstr "" -"<ĆĐĹ°Áö> Ŕ̸§°ú ŔĎÄĄÇĎ´Â ĆĐĹ°Áö´Â ¸đľÎ ÁŚ°ĹÇŐ´Ď´Ů (<ĆĐĹ°Áö> żĄ żŠˇŻ°łŔÇ ĆĐĹ°" -"Áö¸Ś ÁöÁ¤ÇĎ˝Ç °ćżěżĄ´Â żŔˇů°Ą šßťýľË´Ď´Ů)" +"<ĆĐĹ°Áö> Ŕ̸§°ú ŔĎÄĄÇĎ´Â ĆĐĹ°Áö´Â ¸đľÎ ÁŚ°ĹÇŐ´Ď´Ů (<ĆĐĹ°Áö>żĄ żŠˇŻ°łŔÇ ĆĐĹ°Áö" +"¸Ś ľż˝ĂżĄ ÁöÁ¤ÇŇ °ćżěżĄ´Â żŔˇů°Ą šßťýÇŐ´Ď´Ů)" #: lib/poptI.c:116 lib/poptI.c:171 msgid "do not execute package scriptlet(s)" -msgstr "ĆĐĹ°Áö ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "ĆĐĹ°Áö ˝şĹŠ¸łĆ˛¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:120 msgid "relocate files in non-relocateable package" @@ -1698,7 +1691,7 @@ msgstr " #: lib/poptI.c:131 msgid "skip files with leading component " -msgstr "<°ćˇÎ> ˇÎ ˝ĂŔ۾Ǵ ĆÄŔĎŔş źłÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů " +msgstr "<°ćˇÎ>ˇÎ ˝ĂŔ۾Ǵ ĆÄŔĎŔş źłÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů " #: lib/poptI.c:132 msgid "" @@ -1762,27 +1755,27 @@ msgstr "" #: lib/poptI.c:174 #, c-format msgid "do not execute %%pre scriptlet (if any)" -msgstr "%%pre ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" +msgstr "%%pre ˝şĹŠ¸łĆ˛¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" #: lib/poptI.c:177 #, c-format msgid "do not execute %%post scriptlet (if any)" -msgstr "%%post ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" +msgstr "%%post ˝şĹŠ¸łĆ˛¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" #: lib/poptI.c:180 #, c-format msgid "do not execute %%preun scriptlet (if any)" -msgstr "%%preun ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" +msgstr "%%preun ˝şĹŠ¸łĆ˛¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" #: lib/poptI.c:183 #, c-format msgid "do not execute %%postun scriptlet (if any)" -msgstr "%%postun ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" +msgstr "%%postun ˝şĹŠ¸łĆ˛¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů (ŔÖŔť °ćżě)" #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "ĆÄŔĎŔÇ MD5 Ăŕžŕ(digest)Ŕť °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "ĆĐĹ°ÁöŔÇ ŔÇÁ¸źşŔť °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1791,27 +1784,29 @@ msgstr " #: lib/poptI.c:192 msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "ŔĚ ĆĐĹ°ÁöżĄ ŔÇÇŘ šßťýľÇ´Â ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "" +"ŔĚ ĆĐĹ°ÁöżĄ ŔÇÇŘ ťýźşľÇ´Â(triggered) žîś°ÇŃ ˝şĹŠ¸łĆ˛¸´(scriptlet)ľľ ˝ÇÇŕÇĎÁö " +"žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:195 #, c-format msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "%%triggerprein ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "žîś°ÇŃ %%triggerprein ˝şĹŠ¸łĆ˛¸´(scriptlet)ľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:198 #, c-format msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "%%triggerin ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "žîś°ÇŃ %%triggerin ˝şĹŠ¸łĆ˛¸´(scriptlet)ľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:201 #, c-format msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "%%triggerun ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "žîś°ÇŃ %%triggerun ˝şĹŠ¸łĆ˛¸´(scriptlet)ľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:204 #, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "%%triggerpostun ˝şĹŠ¸łĆŽ¸´(scriptlet)Ŕť ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "žîś°ÇŃ %%triggerpostun ˝şĹŠ¸łĆ˛¸´(scriptlet)ľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/poptI.c:208 msgid "" @@ -1828,11 +1823,11 @@ msgstr " #: lib/poptI.c:214 msgid "relocate the package to , if relocatable" msgstr "" -"ŔçščÄĄ ąâ´ÉŔĚ ŔÖ´Â ĆĐĹ°ÁöŔÇ °ćżě, ÁöÁ¤ľČ <ľđˇşĹ与> ˇÎ ŔçščÄĄÇĎżŠ źłÄĄÇŐ´Ď´Ů" +"ŔçščÄĄ ąâ´ÉŔĚ ŔÖ´Â ĆĐĹ°ÁöŔÇ °ćżě, ÁöÁ¤ÇŃ <ľđˇşĹ与>ˇÎ ŔçščÄĄÇĎżŠ źłÄĄÇŐ´Ď´Ů" #: lib/poptI.c:217 msgid "relocate files from path to " -msgstr "<ŔĚŔü°ćˇÎ> żĄź­ <ťőˇÎżî°ćˇÎ> ˇÎ ĆÄŔĎŔť ŔçščÄĄ ÇŐ´Ď´Ů" +msgstr "<ŔĚŔü°ćˇÎ>żĄź­ <ťőˇÎżî°ćˇÎ>ˇÎ ĆÄŔĎŔť ŔçščÄĄ ÇŐ´Ď´Ů" #: lib/poptI.c:218 msgid "=" @@ -1851,9 +1846,8 @@ msgid "reinstall if the package is already present" msgstr "ĆĐĹ°Áö°Ą ŔĚšĚ źłÄĄľÇžî ŔÖ´Â °ćżěżĄľľ źłÄĄÇŐ´Ď´Ů" #: lib/poptI.c:229 -#, fuzzy msgid "deinstall new, reinstall old, package(s), back to " -msgstr "ťőˇÎżî ĆĐĹ°Áö ťčÁŚ, ŔĚŔü ĆĐĹ°Áö Ŕ石ĥ, łŻÂĽ şšą¸(back to date)" +msgstr "ťőˇÎ źłÄĄ ťčÁŚ, ŔĚŔü źłÄĄ Ŕ石ĥ, ĆĐĹ°Áö, <łŻÂĽ> şšą¸(back to date)" #: lib/poptI.c:230 msgid "" @@ -1878,30 +1872,27 @@ msgstr "rpm #: lib/poptQV.c:99 msgid "query/verify package(s) owning file" -msgstr "ĆÄŔĎŔť źŇŔŻÇĎ°í ŔÖ´Â ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" +msgstr "ĆÄŔĎŔĚ ľéžîŔÖ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" #: lib/poptQV.c:101 -#, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "ĆÄŔĎŔť źŇŔŻÇĎ°í ŔÖ´Â ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" +msgstr "ĆÄŔĎ ˝Äş°ŔÚ(identifier)¸Ś ťçżëÇĎżŠ ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" #: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "ą×ˇě žČŔÇ ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" #: lib/poptQV.c:105 -#, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "ĆÄŔĎŔť źŇŔŻÇĎ°í ŔÖ´Â ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" +msgstr "Çě´ő ˝Äş°ŔÚ(identifier)¸Ś ťçżëÇĎżŠ ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" #: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "ĆĐĹ°Áö ĆÄŔĎŔť ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů (żš: šŮŔ̳ʸŽ *.rpm ĆÄŔĎ)" #: lib/poptQV.c:109 -#, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "ĆÄŔĎŔť źŇŔŻÇĎ°í ŔÖ´Â ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" +msgstr "ĆĐĹ°Áö ˝Äş°ŔÚ(identifier)¸Ś ťçżëÇĎżŠ ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" #: lib/poptQV.c:111 msgid "rpm query mode" @@ -1920,13 +1911,12 @@ msgid "" msgstr "" #: lib/poptQV.c:119 -#, fuzzy msgid "query/verify package(s) from install transaction" -msgstr "ą×ˇě žČŔÇ ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" +msgstr "źłÄĄ łťżëŔť ĹëÇŘ ĆĐĹ°Áö¸Ś ÁúŔÇ/°ËÁő ÇŐ´Ď´Ů" #: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" -msgstr "ĆĐĹ°ÁöˇÎ ŔÎÇĎżŠ šßťýľÇ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" +msgstr "ĆĐĹ°ÁöˇÎ ŔÎÇŘ ťýźşľÇ´Â(triggered) ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" #: lib/poptQV.c:123 msgid "rpm verify mode" @@ -1950,7 +1940,7 @@ msgstr " #: lib/poptQV.c:191 msgid "dump basic file information" -msgstr "ąâşť ĆÄŔĎ Á¤ş¸¸Ś žËˇÁÁÝ´Ď´Ů" +msgstr "ąâşť ĆÄŔĎ Á¤ş¸¸Ś ş¸żŠÁÝ´Ď´Ů" #: lib/poptQV.c:193 msgid "list files in package" @@ -2065,21 +2055,21 @@ msgstr " #: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" -msgstr "%d ľĽŔĚĹÍ ŔŻÇüŔş ťçżëÇĎ˝Ç źö žř˝Ŕ´Ď´Ů\n" +msgstr "%d ľĽŔĚĹÍ ŔŻÇüŔş ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n" #: lib/psm.c:455 #, c-format msgid "cannot create %%%s %s\n" -msgstr "%%%s %s (Ŕť)¸Ś ťýźşÇŇ źö žř˝Ŕ´Ď´Ů\n" +msgstr "%%%s %s(Ŕť)¸Ś ťýźşÇŇ źö žř˝Ŕ´Ď´Ů\n" #: lib/psm.c:461 #, c-format msgid "cannot write to %%%s %s\n" -msgstr "%%%s %s (Ŕť)¸Ś ŔŰźşÇŇ źö žř˝Ŕ´Ď´Ů\n" +msgstr "%%%s %s(Ŕť)¸Ś ŔŰźşÇŇ źö žř˝Ŕ´Ď´Ů\n" #: lib/psm.c:492 msgid "source package expected, binary found\n" -msgstr "źŇ˝ş ĆĐĹ°Áö°Ą żäą¸ľË´Ď´Ů, šŮŔ̳ʸŽ¸Ś ĂŁžŇ˝Ŕ´Ď´Ů\n" +msgstr "źŇ˝ş ĆĐĹ°Áö°Ą ÇĘżäÇϸç, šŮŔ̳ʸŽ°Ą °ËťöľÇžú˝Ŕ´Ď´Ů\n" #: lib/psm.c:611 msgid "source package contains no .spec file\n" @@ -2094,27 +2084,26 @@ msgstr "%s: %s #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -"%2$s-%3$s-%4$s ŔÇ %1$s ˝şĹŠ¸łĆŽ¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, waitpid°Ą %" -"5$s (Ŕť)¸Ś šÝČŻÇĎż´˝Ŕ´Ď´Ů \n" +"%2$s-%3$s-%4$sŔÇ %1$s ˝şĹŠ¸łĆ˛¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, waitpid°Ą %5" +"$s(Ŕť)¸Ś šÝČŻÇĎż´˝Ŕ´Ď´Ů\n" #: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -"%2$s-%3$s-%4$s ŔÇ %1$s ˝şĹŠ¸łĆŽ¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, Ážˇá ťóȲ %" -"5$d\n" +"%2$s-%3$s-%4$sŔÇ %1$s ˝şĹŠ¸łĆ˛¸´(scriptlet) ˝ÇÇ࿥ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, Ážˇá ťóȲ %5" +"$d\n" #: lib/psm.c:1248 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" -msgstr "%s: %s-%s-%s (ŔĚ)°Ą %d ŔÇ ĆÄŔĎŔť °Ž°í ŔÖ˝Ŕ´Ď´Ů, Ĺ×˝şĆŽ = %d\n" +msgstr "%s: %s-%s-%sżĄ %dŔÇ ĆÄŔĎŔĚ ŔÖ˝Ŕ´Ď´Ů, Ĺ×˝şĆŽ = %d\n" #: lib/psm.c:1370 #, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" msgstr "" -"%s: %s ˝şĹŠ¸łĆŽ¸´(scriptlet)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s (Ŕť)¸Ś ťýˇŤÇŐ´Ď" -"´Ů\n" +"%s: %s ˝şĹŠ¸łĆ˛¸´(scriptlet)ŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů (%d), %s-%s-%s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n" #: lib/psm.c:1514 #, c-format @@ -2133,17 +2122,17 @@ msgstr " #: lib/psm.c:1566 msgid " on file " -msgstr " ´ŮŔ˝ ĆÄŔĎżĄ " +msgstr " ´ŮŔ˝ ĆÄŔĎŔÇ " #: lib/psm.c:1761 #, c-format msgid "%s failed on file %s: %s\n" -msgstr "%2$s ĆÄŔĎŔÇ %1$s (ŔĚ)°Ą ˝ÇĆĐÇÔ: %3$s\n" +msgstr "%2$s ĆÄŔĎŔÇ %1$s(ŔĚ)°Ą ˝ÇĆĐÇÔ: %3$s\n" #: lib/psm.c:1764 #, c-format msgid "%s failed: %s\n" -msgstr "%s (ŔĚ)°Ą ˝ÇĆĐÇÔ: %s\n" +msgstr "%s(ŔĚ)°Ą ˝ÇĆĐÇÔ: %s\n" #: lib/query.c:127 lib/rpmts.c:262 #, c-format @@ -2186,18 +2175,18 @@ msgstr " #: lib/query.c:466 #, c-format msgid "can't query %s: %s\n" -msgstr "%s (Ŕť)¸Ś ÁúŔÇÇŇ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ÁúŔÇÇŇ źö žřŔ˝: %s\n" #: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500 #: lib/rpminstall.c:883 #, c-format msgid "open of %s failed: %s\n" -msgstr "%s (Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" +msgstr "%s(Ŕť)¸Ś żŠ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" #: lib/query.c:632 #, c-format msgid "query of %s failed\n" -msgstr "%s (Ŕť)¸Ś ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: lib/query.c:638 msgid "old format source packages cannot be queried\n" @@ -2206,12 +2195,13 @@ msgstr " #: lib/query.c:664 lib/rpminstall.c:513 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" -msgstr "%s (Ŕť)¸Ś šßťý˝ĂĹ°´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" +msgstr "%s(żÍ)°ú ŔĎÄĄÇĎ´Â ĆĐĹ°Áö°Ą žřŔ˝: %s\n" #: lib/query.c:708 #, c-format msgid "query of specfile %s failed, can't parse\n" -msgstr "%s spec ĆÄŔĎŔť ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, ĆÄŔĎŔť şĐźŽÇŇ źö žř˝Ŕ´Ď´Ů\n" +msgstr "" +"%s spec ĆÄŔĎŔť ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů, ĆÄŔĎŔť Ăł¸Ž(parse)ÇŇ źö žř˝Ŕ´Ď´Ů\n" #: lib/query.c:729 msgid "no packages\n" @@ -2225,27 +2215,27 @@ msgstr "%s #: lib/query.c:759 #, c-format msgid "no package triggers %s\n" -msgstr "%s (Ŕť)¸Ś šßťý˝ĂĹ°´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś ťýźşÇĎ´Â(trigger) ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" #: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 -#, fuzzy, c-format +#, c-format msgid "malformed %s: %s\n" -msgstr "%s (Ŕť)¸Ś ŔĐ´ÂľĽ ˝ÇĆĐÇÔ: %s.\n" +msgstr "%s(ŔĚ)°Ą Ŕ߸řľĘ: %s\n" #: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 -#, fuzzy, c-format +#, c-format msgid "no package matches %s: %s\n" -msgstr "%s (Ŕť)¸Ś šßťý˝ĂĹ°´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" +msgstr "%s(żÍ)°ú ŔĎÄĄÇĎ´Â ĆĐĹ°Áö°Ą žřŔ˝: %s\n" #: lib/query.c:867 #, c-format msgid "no package requires %s\n" -msgstr "%s (Ŕť)¸Ś ÇĘżäˇÎ ÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś ÇĘżäˇÎ ÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" #: lib/query.c:878 #, c-format msgid "no package provides %s\n" -msgstr "%s (Ŕť)¸Ś ÁŚ°řÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś ÁŚ°řÇĎ´Â ĆĐĹ°Áö°Ą žř˝Ŕ´Ď´Ů\n" #: lib/query.c:912 #, c-format @@ -2255,7 +2245,7 @@ msgstr "%s #: lib/query.c:916 #, c-format msgid "file %s is not owned by any package\n" -msgstr "%s ĆÄŔĎŔş žîś˛ ĆĐĹ°ÁöżĄľľ źÓÇŘ ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" +msgstr "%s ĆÄŔĎŔş žîś˛ ĆĐĹ°ÁöżĄľľ ľéžîŔÖÁö žĘ˝Ŕ´Ď´Ů\n" #: lib/query.c:943 #, c-format @@ -2270,22 +2260,22 @@ msgstr " #: lib/query.c:951 #, c-format msgid "record %u could not be read\n" -msgstr "ąâˇĎ(record) šřČŁ %u (Ŕş)´Â ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "ąâˇĎ(record) šřČŁ %u(Ŕş)´Â ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" #: lib/query.c:962 lib/rpminstall.c:671 #, c-format msgid "package %s is not installed\n" -msgstr "%s ĆĐĹ°Áö´Â źłÄĄľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" +msgstr "%s ĆĐĹ°Áö°Ą źłÄĄľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů\n" #: lib/rpmal.c:688 #, fuzzy msgid "(added files)" -msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" +msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s żš (db°Ą ÁŚ°řÇÔ)\n" +msgstr "%s: %-45s żš (ÁŚ°řŔĚ Ăß°ĄľĘ)\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2294,12 +2284,12 @@ msgstr "%s: #: lib/rpmchecksig.c:70 msgid "makeTempFile failed\n" -msgstr "makeTempFileżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "makeTempFileŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: lib/rpmchecksig.c:111 #, c-format msgid "%s: Fwrite failed: %s\n" -msgstr "%s: FwriteżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%s: FwriteŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" #: lib/rpmchecksig.c:174 #, fuzzy, c-format @@ -2314,17 +2304,17 @@ msgstr "%s: v2.0 RPM #: lib/rpmchecksig.c:277 #, c-format msgid "%s: writeLead failed: %s\n" -msgstr "%s: writeLeadżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%s: writeLeadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" #: lib/rpmchecksig.c:283 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" -msgstr "%s: rpmWriteSignatureżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" +msgstr "%s: rpmWriteSignatureŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" #: lib/rpmchecksig.c:512 #, fuzzy, c-format msgid "%s: headerGetEntry failed\n" -msgstr "%s: readLeadżĄ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "%s: readLeadŔĚ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: lib/rpmchecksig.c:583 #, c-format @@ -2382,7 +2372,7 @@ msgstr " %s A %s\tB %s\n" #: lib/rpmds.c:605 #, fuzzy, c-format msgid "package %s has unsatisfied %s: %s\n" -msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" +msgstr "%s ĆĐĹ°ÁöŔÇ ÇĘżäťçÇ×(łťżŞ)ŔĚ ¸¸ÁˇÇĎÁö žĘŔ˝: %s\n" #: lib/rpminstall.c:165 msgid "Preparing..." @@ -2395,19 +2385,19 @@ msgstr " #: lib/rpminstall.c:310 #, c-format msgid "Retrieving %s\n" -msgstr "%s (Ŕť)¸Ś şšą¸ÇŐ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś şšą¸ÇŐ´Ď´Ů\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist #: lib/rpminstall.c:323 #, c-format msgid " ... as %s\n" -msgstr " ... %s (Ŕ¸)ˇÎ\n" +msgstr " ... %s(Ŕ¸)ˇÎ\n" #: lib/rpminstall.c:327 #, c-format msgid "skipping %s - transfer failed - %s\n" -msgstr "%s (Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů - ŔüźŰ(transfer)żĄ ˝ÇĆĐÇÔ - %s\n" +msgstr "%s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů - ŔüźŰ(transfer)żĄ ˝ÇĆĐÇÔ - %s\n" #: lib/rpminstall.c:424 #, c-format @@ -2422,17 +2412,17 @@ msgstr "%s #: lib/rpminstall.c:480 #, c-format msgid "file %s requires a newer version of RPM\n" -msgstr "%s ĆÄŔĎŔĚ ĂֽŠšöŔüŔÇ RPMŔť ÇĘżäˇÎ ÇŐ´Ď´Ů\n" +msgstr "%s ĆÄŔĎŔş ĂֽŠšöŔüŔÇ RPMŔť ÇĘżäˇÎ ÇŐ´Ď´Ů\n" #: lib/rpminstall.c:492 lib/rpminstall.c:739 #, c-format msgid "%s cannot be installed\n" -msgstr "%s (Ŕş)´Â źłÄĄľÉ źö žř˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕş)´Â źłÄĄÇŇ źö žř˝Ŕ´Ď´Ů\n" #: lib/rpminstall.c:528 #, c-format msgid "found %d source and %d binary packages\n" -msgstr "%d ŔÇ źŇ˝şżÍ %d ŔÇ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ĂŁžŇ˝Ŕ´Ď´Ů\n" +msgstr "%dŔÇ źŇ˝şżÍ %dŔÇ šŮŔ̳ʸŽ ĆĐĹ°Áö°Ą °ËťöľÇžú˝Ŕ´Ď´Ů\n" #: lib/rpminstall.c:542 lib/rpminstall.c:1070 #, fuzzy @@ -2459,22 +2449,22 @@ msgstr "\"%s\" #: lib/rpminstall.c:699 msgid "removing these packages would break dependencies:\n" -msgstr "ŔĚ ĆĐĹ°ÁöľéŔť ÁŚ°ĹÇϸé ŔÇÁ¸źşŔĚ ąúÁú źö ŔÖŔ˝:\n" +msgstr "ŔĚ ĆĐĹ°ÁöľéŔť ÁŚ°ĹÇŇ °ćżě ŔÇÁ¸źşŔĚ ąúÁú źö ŔÖŔ˝:\n" #: lib/rpminstall.c:726 #, c-format msgid "cannot open %s: %s\n" -msgstr "%s (Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ż­ źö žřŔ˝: %s\n" #: lib/rpminstall.c:732 #, c-format msgid "Installing %s\n" -msgstr "%s (Ŕť)¸Ś źłÄĄÇŐ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś źłÄĄÇŐ´Ď´Ů\n" #: lib/rpminstall.c:1064 -#, c-format +#, fuzzy, c-format msgid "rollback %d packages to %s" -msgstr "" +msgstr "(+%d,-%d) ĆĐĹ°Áö¸Ś %sŔ¸ˇÎ ˇŃšé(rollback)ÇŐ´Ď´Ů" #: lib/rpmlead.c:47 #, c-format @@ -2489,12 +2479,12 @@ msgstr "" #: lib/rpmps.c:215 #, fuzzy, c-format msgid "package %s is intended for a %s architecture" -msgstr "%s (Ŕş)´Â ´Ů¸Ľ žĆĹ°ĹŘĂĸŚ Ŕ§ÇŃ ĆĐĹ°ÁöŔÔ´Ď´Ů" +msgstr "%s(Ŕş)´Â ´Ů¸Ľ žĆĹ°ĹŘĂĸŚ Ŕ§ÇŃ ĆĐĹ°ÁöŔÔ´Ď´Ů" #: lib/rpmps.c:220 #, fuzzy, c-format msgid "package %s is intended for a %s operating system" -msgstr "%s (Ŕş)´Â ´Ů¸Ľ żîżľĂźÁŚ¸Ś Ŕ§ÇŃ ĆĐĹ°ÁöŔÔ´Ď´Ů" +msgstr "%s(Ŕş)´Â ´Ů¸Ľ żîżľĂźÁŚ¸Ś Ŕ§ÇŃ ĆĐĹ°ÁöŔÔ´Ď´Ů" #: lib/rpmps.c:225 #, c-format @@ -2509,12 +2499,12 @@ msgstr "%2$s #: lib/rpmps.c:235 #, c-format msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "%2$s (żÍ)°ú %3$s ŔÇ źłÄĄ °úÁ¤żĄź­ %1$s ĆÄŔĎŔĚ ź­ˇÎ ĂćľšÇŐ´Ď´Ů" +msgstr "%2$s(żÍ)°ú %3$sŔÇ źłÄĄ °úÁ¤żĄź­ %1$s ĆÄŔĎŔĚ ź­ˇÎ ĂćľšÇŐ´Ď´Ů" #: lib/rpmps.c:240 #, c-format msgid "file %s from install of %s conflicts with file from package %s" -msgstr "%2$s żĄź­ źłÄĄľÇ´Â %1$s ĆÄŔĎŔş %3$s ĆĐĹ°ÁöŔÇ ĆÄŔĎ°ú ĂćľšÇŐ´Ď´Ů" +msgstr "%2$sżĄź­ źłÄĄľÇ´Â %1$s ĆÄŔĎŔş %3$s ĆĐĹ°ÁöŔÇ ĆÄŔĎ°ú ĂćľšÇŐ´Ď´Ů" #: lib/rpmps.c:245 #, c-format @@ -2525,37 +2515,37 @@ msgstr "%s #, c-format msgid "installing package %s needs %ld%cb on the %s filesystem" msgstr "" -"%4$s ĆÄŔϽýşĹŰ ťóżĄź­ %1$s ĆĐĹ°Áö¸Ś źłÄĄÇŇ °ćżěżĄ´Â %2$ld%3$cb (ŔĚ)°Ą ÇĘżäÇŐ" +"%4$s ĆÄŔϽýşĹŰ ťóżĄź­ %1$s ĆĐĹ°Áö¸Ś źłÄĄÇŇ °ćżěżĄ´Â %2$ld%3$cb(ŔĚ)°Ą ÇĘżäÇŐ" "´Ď´Ů" #: lib/rpmps.c:260 #, c-format msgid "installing package %s needs %ld inodes on the %s filesystem" msgstr "" -"%3$s ĆÄŔϽýşĹŰ ťóżĄź­ %1$s ĆĐĹ°Áö¸Ś źłÄĄÇŇ °ćżěżĄ´Â %2$ld ŔÇ žĆŔĚłëľĺ(inode)" +"%3$s ĆÄŔϽýşĹŰ ťóżĄź­ %1$s ĆĐĹ°Áö¸Ś źłÄĄÇŇ °ćżěżĄ´Â %2$ldŔÇ žĆŔĚłëľĺ(inode)" "°Ą ÇĘżäÇŐ´Ď´Ů" #: lib/rpmps.c:265 #, c-format msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "" -"%s ĆĐĹ°ÁöŔÇ źą(pre)-ĆŽˇŁŔčźÇ ˝Ă˝şĹŰÄÝ(syscall): %s (ŔĚ)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s" +"%s ĆĐĹ°ÁöŔÇ źą(pre)-ĆŽˇŁŔčźÇ ˝Ă˝şĹŰÄÝ(syscall): %s(ŔĚ)°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s" #: lib/rpmps.c:269 -#, fuzzy, c-format +#, c-format msgid "package %s has unsatisfied Requires: %s\n" -msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" +msgstr "%s ĆĐĹ°ÁöŔÇ ÇĘżäťçÇ×(łťżŞ)ŔĚ ¸¸ÁˇÇĎÁö žĘŔ˝: %s\n" #: lib/rpmps.c:273 -#, fuzzy, c-format +#, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżä ťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" +msgstr "%s ĆĐĹ°ÁöŔÇ ĂćľšťçÇ×(łťżŞ)ŔĚ ¸¸ÁˇÇĎÁö žĘŔ˝: %s\n" #: lib/rpmps.c:278 #, c-format msgid "unknown error %d encountered while manipulating package %s" msgstr "" -"%2$s ĆĐĹ°Áö¸Ś Ăł¸ŽÇĎ´Â °úÁ¤żĄź­ žË źö žř´Â żŔˇů %1$d (ŔĚ)°Ą šßťýÇß˝Ŕ´Ď´Ů" +"%2$s ĆĐĹ°Áö¸Ś Ăł¸ŽÇĎ´Â °úÁ¤żĄź­ žË źö žř´Â żŔˇů %1$d(ŔĚ)°Ą šßťýÇß˝Ŕ´Ď´Ů" #: lib/rpmps.c:359 #, fuzzy @@ -2570,22 +2560,22 @@ msgstr " ( #: lib/rpmrc.c:191 #, c-format msgid "missing second ':' at %s:%d\n" -msgstr "%s żĄź­ ľÎšř° ':' Ŕť ĂŁŔť źö žřŔ˝:%d\n" +msgstr "%sżĄ ľÎšř° ':' ŔĚ žřŔ˝:%d\n" #: lib/rpmrc.c:194 #, c-format msgid "missing architecture name at %s:%d\n" -msgstr "%s żĄź­ žĆĹ°ĹŘĂÄ Ŕ̸§Ŕť ĂŁŔť źö žřŔ˝:%d\n" +msgstr "%sżĄ žĆĹ°ĹŘĂĸíŔĚ žřŔ˝:%d\n" #: lib/rpmrc.c:348 #, c-format msgid "Incomplete data line at %s:%d\n" -msgstr "%s ŔÇ ľĽŔĚĹÍ Ç׸ń(line)ŔĚ şŇĂćşĐÇÔ:%d\n" +msgstr "%sŔÇ ľĽŔĚĹÍ Ç׸ń(line)ŔĚ şŇĂćşĐÇÔ:%d\n" #: lib/rpmrc.c:353 #, c-format msgid "Too many args in data line at %s:%d\n" -msgstr "%s ŔÇ ľĽŔĚĹÍ Ç׸ń(line)żĄ ŔÎźö°Ą łĘšŤ ¸šŔ˝:%d\n" +msgstr "%sŔÇ ľĽŔĚĹÍ Ç׸ń(line)żĄ ŔÎźö°Ą łĘšŤ ¸šŔ˝:%d\n" #: lib/rpmrc.c:361 #, c-format @@ -2595,48 +2585,48 @@ msgstr " #: lib/rpmrc.c:398 #, c-format msgid "Incomplete default line at %s:%d\n" -msgstr "%s ŔÇ ąâşť Ç׸ń(line)ŔĚ şŇĂćşĐÇÔ:%d\n" +msgstr "%sŔÇ ąâşť Ç׸ń(line)ŔĚ şŇĂćşĐÇÔ:%d\n" #: lib/rpmrc.c:403 #, c-format msgid "Too many args in default line at %s:%d\n" -msgstr "%s ŔÇ ąâşť Ç׸ń(line)żĄ ŔÎźö°Ą łĘšŤ ¸šŔ˝:%d\n" +msgstr "%sŔÇ ąâşť Ç׸ń(line)żĄ ŔÎźö°Ą łĘšŤ ¸šŔ˝:%d\n" #. XXX Feof(fd) #: lib/rpmrc.c:573 #, c-format msgid "Failed to read %s: %s.\n" -msgstr "%s (Ŕť)¸Ś ŔĐ´ÂľĽ ˝ÇĆĐÇÔ: %s.\n" +msgstr "%s(Ŕť)¸Ś ŔĐ´ÂľĽ ˝ÇĆĐÇÔ: %s.\n" #: lib/rpmrc.c:611 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" -msgstr "%2$s żĄź­ ':' (0x%1$02x ĂŁŔ˝) Ŕť ĂŁŔť źö žřŔ˝:%3$d\n" +msgstr "%2$sżĄ ':' (0x%1$02x ĂŁŔ˝) ŔĚ žřŔ˝:%3$d\n" #: lib/rpmrc.c:628 lib/rpmrc.c:702 #, c-format msgid "missing argument for %s at %s:%d\n" -msgstr "%2$s żĄź­ %1$s (Ŕť)¸Ś Ŕ§ÇŃ ŔÎźö¸Ś ĂŁŔť źö žřŔ˝:%3$d\n" +msgstr "%2$sżĄ %1$s(Ŕť)¸Ś Ŕ§ÇŃ ŔÎźö°Ą žřŔ˝:%3$d\n" #: lib/rpmrc.c:645 lib/rpmrc.c:667 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" -msgstr "%2$s ŔÇ %1$s ČŽŔĺ(expansion)ŔĚ ˝ÇĆĐÇÔ:%3$d \"%4$s\"\n" +msgstr "%2$sŔÇ %1$s ČŽŔĺ(expansion)żĄ ˝ÇĆĐÇÔ:%3$d \"%4$s\"\n" #: lib/rpmrc.c:654 #, c-format msgid "cannot open %s at %s:%d: %s\n" -msgstr "%2$s ŔÇ %1$s (Ŕť)¸Ś ż­ źö žřŔ˝:%3$d: %4$s\n" +msgstr "%2$sŔÇ %1$s(Ŕť)¸Ś ż­ źö žřŔ˝:%3$d: %4$s\n" #: lib/rpmrc.c:694 #, c-format msgid "missing architecture for %s at %s:%d\n" -msgstr "%2$s żĄź­ %1$s (Ŕť)¸Ś Ŕ§ÇŃ žĆĹ°ĹŘĂĸŚ ĂŁŔť źö žřŔ˝:%3$d\n" +msgstr "%2$sżĄ %1$s(Ŕť)¸Ś Ŕ§ÇŃ žĆĹ°ĹŘĂÄ°Ą žřŔ˝:%3$d\n" #: lib/rpmrc.c:761 #, c-format msgid "bad option '%s' at %s:%d\n" -msgstr "%2$s żĄ Ŕ߸řľČ żÉźÇ '%1$s':%3$d\n" +msgstr "%2$sżĄ Ŕ߸řľČ '%1$s' żÉźÇ:%3$d\n" #: lib/rpmrc.c:1386 #, c-format @@ -2645,22 +2635,22 @@ msgstr " #: lib/rpmrc.c:1387 msgid "Please contact rpm-list@redhat.com\n" -msgstr "rpm-list@redhat.com Ŕ¸ˇÎ żŹśôÁֽù⠚ٜř´Ď´Ů\n" +msgstr "rpm-list@redhat.comŔ¸ˇÎ żŹśôšŮśř´Ď´Ů\n" #: lib/rpmrc.c:1612 #, c-format msgid "Cannot expand %s\n" -msgstr "%s (Ŕť)¸Ś ČŽŔĺ(expand)ÇŇ źö žř˝Ŕ´Ď´Ů\n" +msgstr "%s(Ŕť)¸Ś ČŽŔĺ(expand)ÇŇ źö žř˝Ŕ´Ď´Ů\n" #: lib/rpmrc.c:1617 #, c-format msgid "Cannot read %s, HOME is too large.\n" -msgstr "%s (Ŕť)¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů, HOMEŔĚ łĘšŤ ĹŽ´Ď´Ů.\n" +msgstr "%s(Ŕť)¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů, HOMEŔĚ łĘšŤ ĹŽ´Ď´Ů.\n" #: lib/rpmrc.c:1634 #, c-format msgid "Unable to open %s for reading: %s.\n" -msgstr "%s (Ŕť)¸Ś ż­ źö žřŔ˝: %s.\n" +msgstr "%s(Ŕť)¸Ś ż­ źö žřŔ˝: %s.\n" #: lib/rpmts.c:131 lib/rpmts.c:173 #, c-format @@ -2670,7 +2660,7 @@ msgstr "%s #. Get available space on mounted file systems. #: lib/rpmts.c:560 msgid "getting list of mounted filesystems\n" -msgstr "¸śżîĆŽľČ ĆÄŔϽýşĹŰŔÇ ¸ńˇĎŔť źöÁýÇĎ°í ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "" #: lib/signature.c:126 msgid "file is not regular -- skipping size check\n" @@ -2705,13 +2695,13 @@ msgstr " #: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677 #: lib/signature.c:710 -#, fuzzy, c-format +#, c-format msgid "Could not exec %s: %s\n" -msgstr "%s (Ŕť)¸Ś ˝ÇÇŕÇŇ źö žřŔ˝: %s\n" +msgstr "%s(Ŕť)¸Ś ˝ÇÇŕÇŇ źö žřŔ˝: %s\n" #: lib/signature.c:329 msgid "pgp failed\n" -msgstr "pgpżĄ ˝ÇĆĐÇÔ\n" +msgstr "pgp°Ą ˝ÇĆĐÇÔ\n" #. PGP failed to write signature #. Just in case @@ -2735,7 +2725,7 @@ msgstr "%d #: lib/signature.c:427 msgid "gpg failed\n" -msgstr "gpgżĄ ˝ÇĆĐÇÔ\n" +msgstr "gpg°Ą ˝ÇĆĐÇÔ\n" #. GPG failed to write signature #. Just in case @@ -2758,17 +2748,17 @@ msgstr "%d #: lib/signature.c:715 lib/signature.c:766 #, c-format msgid "Invalid %%_signature spec in macro file\n" -msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ şÎŔűÇŐÇŃ %%_signatureŔÇ łťżëŔĚ ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ ĆÄŔĎ žČżĄ şÎŔűÇŐÇŃ %%_signature łťżë(spec)ŔĚ ŔÖ˝Ŕ´Ď´Ů\n" #: lib/signature.c:745 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" -msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ \"%%_gpg_name\" Ŕť źłÁ¤ÇŘ ÁÖźĹžß ÇŐ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ ĆÄŔĎ žČżĄ šÝľĺ˝Ă \"%%_gpg_name\"Ŕť źłÁ¤ÇŘžß ÇŐ´Ď´Ů\n" #: lib/signature.c:758 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" -msgstr "¸ĹĹŠˇÎ ĆÄŔĎżĄ \"%%_pgp_name\" Ŕť źłÁ¤ÇŘ ÁÖźĹžß ÇŐ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ ĆÄŔĎ žČżĄ šÝľĺ˝Ă \"%%_pgp_name\"Ŕť źłÁ¤ÇŘžß ÇŐ´Ď´Ů\n" #: lib/signature.c:802 #, fuzzy @@ -2780,13 +2770,14 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "SHA1 Ăŕžŕ(digest) Çě´ő¸Ś °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/signature.c:1073 #, fuzzy msgid "V3 RSA/MD5 signature: " -msgstr "MD5 ź­¸íŔş °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" +msgstr "žîś°ÇŃ MD5 ź­¸íľľ °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" #: lib/signature.c:1183 msgid "Header " @@ -2803,7 +2794,7 @@ msgstr "" #: lib/signature.c:1286 msgid "Broken MD5 digest: UNSUPPORTED\n" -msgstr "" +msgstr "źŐťóľČ MD5 Ăŕžŕ(digest): ÁöżřÇĎÁö žĘŔ˝\n" #: lib/signature.c:1290 #, fuzzy, c-format @@ -2813,7 +2804,7 @@ msgstr " #: lib/transaction.c:104 #, c-format msgid "%s skipped due to missingok flag\n" -msgstr "missingok Ç᥹סΠŔÎÇŘ %s (Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n" +msgstr "missingok Ç᥹סΠŔÎÇŘ %s(Ŕť)¸Ś ťýˇŤÇŐ´Ď´Ů\n" #. @innercontinue@ #: lib/transaction.c:893 @@ -2824,17 +2815,17 @@ msgstr "%s #: lib/verify.c:284 #, c-format msgid "missing %s" -msgstr "´ŮŔ˝Ŕť ĂŁŔť źö žř˝Ŕ´Ď´Ů %s" +msgstr "´ŮŔ˝Ŕť ĂŁŔť źö žřŔ˝ %s" #: lib/verify.c:380 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " -msgstr "%s-%s-%s żĄ ŔÇÁ¸źş šŽÁŚ šßťý: " +msgstr "%s-%s-%sżĄ ŔÇÁ¸źş šŽÁŚ šßťý: " #: rpmdb/db3.c:156 #, c-format msgid "db%d error(%d) from %s: %s\n" -msgstr "%3$s ŔÇ db%1$d żŔˇů(%2$d): %4$s\n" +msgstr "%3$sŔÇ db%1$d żŔˇů(%2$d): %4$s\n" #: rpmdb/db3.c:159 #, c-format @@ -2844,41 +2835,41 @@ msgstr "db%d #: rpmdb/db3.c:185 #, c-format msgid "closed db environment %s/%s\n" -msgstr "´ÝČů db ČŻ°ć %s/%s\n" +msgstr "´ÝČů db ČŻ°ć %s/%s\n" #: rpmdb/db3.c:203 #, c-format msgid "removed db environment %s/%s\n" -msgstr "ťčÁŚľČ db ČŻ°ć %s/%s\n" +msgstr "ťčÁŚľČ db ČŻ°ć %s/%s\n" #: rpmdb/db3.c:243 #, c-format msgid "opening db environment %s/%s %s\n" -msgstr "ż­¸° db ČŻ°ć %s/%s\n" +msgstr "żŠ´ÂÁß db ČŻ°ć %s/%s %s\n" #: rpmdb/db3.c:678 #, c-format msgid "closed db index %s/%s\n" -msgstr "´ÝČů db ŔÎľŚ˝ş %s/%s\n" +msgstr "´ÝČů db ŔÎľŚ˝ş %s/%s\n" #: rpmdb/db3.c:745 #, c-format msgid "verified db index %s/%s\n" -msgstr "°ËÁőľČ db ŔÎľŚ˝ş %s/%s\n" +msgstr "°ËÁőľČ db ŔÎľŚ˝ş %s/%s\n" #: rpmdb/db3.c:967 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" -msgstr "ż­¸° db ŔÎľŚ˝ş %s/%s %s ¸đľĺ=0x%x\n" +msgstr "żŠ´ÂÁß db ŔÎľŚ˝ş %s/%s %s ¸đľĺ=0x%x\n" #: rpmdb/db3.c:1183 #, c-format msgid "cannot get %s lock on %s/%s\n" -msgstr "Ŕá°ÜŔÖ´Â %2$s/%3$s ŔÇ %1$s (Ŕť)¸Ś žňŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "%2$s/%3$sŔÇ ŔáąÝľČ(lock) %1$s(Ŕť)¸Ś žňŔť źö žř˝Ŕ´Ď´Ů\n" #: rpmdb/db3.c:1185 msgid "exclusive" -msgstr "ÁŚżÜÇÔ(exclusive)" +msgstr "ĆóźâŔű(exclusive)" #: rpmdb/db3.c:1185 msgid "shared" @@ -2887,27 +2878,27 @@ msgstr " #: rpmdb/db3.c:1189 #, c-format msgid "locked db index %s/%s\n" -msgstr "Ŕáąä db ŔÎľŚ˝ş %s/%s\n" +msgstr "ŔáąÝľČ db ŔÎľŚ˝ş %s/%s\n" #: rpmdb/dbconfig.c:396 #, c-format msgid "unrecognized db option: \"%s\" ignored.\n" -msgstr "ŔÎÁőľÇÁö žĘŔş db żÉźÇ: \"%s\" (Ŕť)¸Ś šŤ˝ĂÇŐ´Ď´Ů.\n" +msgstr "ŔÎÁőľÇÁö žĘŔş db żÉźÇ: \"%s\"(Ŕť)¸Ś šŤ˝ĂÇŐ´Ď´Ů.\n" #: rpmdb/dbconfig.c:434 #, c-format msgid "%s has invalid numeric value, skipped\n" -msgstr "%s (Ŕş)´Â şÎŔűÇŐÇŃ źöÄĄ °ŞŔÔ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" +msgstr "%s(Ŕş)´Â şÎŔűÇŐÇŃ źöÄĄ °ŞŔÔ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" #: rpmdb/dbconfig.c:443 #, c-format msgid "%s has too large or too small long value, skipped\n" -msgstr "%s (Ŕş)´Â łĘšŤ ĹŠ°ĹłŞ łĘšŤ ŔŰŔş Á¤źö(long) °ŞŔÔ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" +msgstr "%s(Ŕş)´Â łĘšŤ ĹŠ°ĹłŞ łĘšŤ ŔűŔş Á¤źö(long) °ŞŔÔ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" #: rpmdb/dbconfig.c:452 #, c-format msgid "%s has too large or too small integer value, skipped\n" -msgstr "%s (Ŕş)´Â łĘšŤ ĹŠ°ĹłŞ łĘšŤ ŔŰŔş Á¤źö(int) °ŞŔÔ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" +msgstr "%s(Ŕş)´Â łĘšŤ ĹŠ°ĹłŞ łĘšŤ ŔűŔş Á¤źö(int) °ŞŔÔ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" #. This should not be allowed #. @-modfilesys@ @@ -2918,12 +2909,12 @@ msgstr "dataLength() RPM_STRING_TYPE ÄŤ #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2215 msgid "missing { after %" -msgstr "'%' ľÚżĄ '{' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů" +msgstr "'%' ľÚżĄ '{' °Ą žř˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2245 msgid "missing } after %{" -msgstr "'%{' ľÚżĄ '}' ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů" +msgstr "'%{' ľÚżĄ '}' °Ą žř˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2259 @@ -2943,47 +2934,47 @@ msgstr " #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2317 msgid "] expected at end of array" -msgstr "ščż­ŔÇ łĄşÎşĐżĄ ']' °Ą ÇĘżäÇŐ´Ď´Ů" +msgstr "ščż­ŔÇ łĄşÎşĐżĄ ']' °Ą żÍžßÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2335 msgid "unexpected ]" -msgstr "şŇÇĘżäÇŃ ']' °Ą ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů" +msgstr "şŇÇĘżäÇŃ ']' °Ą ŔÖ˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2339 msgid "unexpected }" -msgstr "şŇÇĘżäÇŃ '}' °Ą ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů" +msgstr "şŇÇĘżäÇŃ '}' °Ą ŔÖ˝Ŕ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2406 msgid "? expected in expression" -msgstr "ÇĽÇö˝ÄżĄ '?' °Ą ÇĘżäÇŐ´Ď´Ů" +msgstr "ÇĽÇö˝ÄżĄ '?' °Ą żÍžßÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2415 msgid "{ expected after ? in expression" -msgstr "ÇĽÇö˝ÄżĄź­ '?' ľÚżĄ '{' °Ą ÇĘżäÇŐ´Ď´Ů" +msgstr "ÇĽÇö˝ÄŔÇ '?' ľÚżĄ '{' °Ą żÍžßÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2428 rpmdb/header.c:2473 msgid "} expected in expression" -msgstr "ÇĽÇö˝ÄżĄ '}' °Ą ÇĘżäÇŐ´Ď´Ů" +msgstr "ÇĽÇö˝ÄżĄ '}' °Ą żÍžßÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2438 msgid ": expected following ? subexpression" -msgstr "ÇϺΠǼÇö˝Ä(subexpression)ŔÇ '?' ´ŮŔ˝żĄ ':' ŔĚ ÇĘżäÇŐ´Ď´Ů" +msgstr "'?' ÇĎşÎÇĽÇö˝Ä(subexpression) ľÚżĄ ':' ŔĚ żÍžßÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2458 msgid "{ expected after : in expression" -msgstr "ÇĽÇö˝ÄżĄź­ ':' ľÚżĄ '{' °Ą ÇĘżäÇŐ´Ď´Ů" +msgstr "ÇĽÇö˝ÄŔÇ ':' ľÚżĄ '{' °Ą żÍžßÇŐ´Ď´Ů" #. @-observertrans -readonlytrans@ #: rpmdb/header.c:2483 msgid "| expected at end of expression" -msgstr "ÇĽÇö˝ÄŔÇ łĄşÎşĐżĄ '|' °Ą ÇĘżäÇŐ´Ď´Ů" +msgstr "ÇĽÇö˝ÄŔÇ łĄşÎşĐżĄ '|' °Ą żÍžßÇŐ´Ď´Ů" #: rpmdb/poptDB.c:19 msgid "initialize database" @@ -3008,13 +2999,13 @@ msgstr "( #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -"DB ĹÂą× ĂĘąâČ­[dbiTagsInit]: ŔÎÁőľÇÁö žĘŔş ĹÂą× Ŕ̸§: \"%s\" (Ŕş)´Â šŤ˝ĂľË´Ď" +"DB ĹÂą× ĂĘąâČ­[dbiTagsInit]: ŔÎÁőľÇÁö žĘŔş ĹÂą× Ŕ̸§: \"%s\"(Ŕş)´Â šŤ˝ĂľË´Ď" "´Ů\n" #: rpmdb/rpmdb.c:238 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" -msgstr "db%2$d (Ŕť)¸Ś ŔĚżëÇĎżŠ %1$s ŔÎľŚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů - %3$s (%4$d)\n" +msgstr "db%2$d(Ŕť)¸Ś ŔĚżëÇĎżŠ %1$s ŔÎľŚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů - %3$s (%4$d)\n" #: rpmdb/rpmdb.c:260 #, c-format @@ -3035,17 +3026,17 @@ msgstr "" #: rpmdb/rpmdb.c:1384 #, fuzzy, c-format msgid "error(%d) storing record #%d into %s\n" -msgstr "%3$s (Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "%3$s(Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: rpmdb/rpmdb.c:1966 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" -msgstr "rpmdb: źŐťóľČ Çě´ő #%u (ŔĚ)°Ą şšą¸(retrieved)ľÇžú˝Ŕ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů.\n" +msgstr "rpmdb: źŐťóľČ Çě´ő #%u(ŔĚ)°Ą şšą¸(retrieved)ľÇžú˝Ŕ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů.\n" #: rpmdb/rpmdb.c:2231 #, c-format msgid "%s: cannot read header at 0x%x\n" -msgstr "%s: 0x%x ŔÇ Çě´ő¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" +msgstr "%s: 0x%xŔÇ Çě´ő¸Ś ŔĐŔť źö žř˝Ŕ´Ď´Ů\n" #: rpmdb/rpmdb.c:2292 #, fuzzy, c-format @@ -3056,7 +3047,7 @@ msgstr "" #: rpmdb/rpmdb.c:2403 #, c-format msgid "removing \"%s\" from %s index.\n" -msgstr "%2$s ŔÎľŚ˝şżĄź­ \"%1$s\" (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" +msgstr "%2$s ŔÎľŚ˝şżĄź­ \"%1$s\"(Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" #: rpmdb/rpmdb.c:2407 #, c-format @@ -3072,12 +3063,12 @@ msgstr "" #: rpmdb/rpmdb.c:2455 #, fuzzy, c-format msgid "error(%d) storing record \"%s\" into %s\n" -msgstr "%3$s (Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "%3$s(Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: rpmdb/rpmdb.c:2465 #, fuzzy, c-format msgid "error(%d) removing record \"%s\" from %s\n" -msgstr "%3$s żĄź­ %2$s ˇšÄھ希 ťčÁŚÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "%3$sżĄź­ %2$s ˇšÄھ希 ťčÁŚÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: rpmdb/rpmdb.c:2607 #, c-format @@ -3087,7 +3078,7 @@ msgstr " #: rpmdb/rpmdb.c:2811 #, c-format msgid "adding \"%s\" to %s index.\n" -msgstr "%2$s ŔÎľŚ˝şżĄ \"%1$s\" (Ŕť)¸Ś Ăß°ĄÇŐ´Ď´Ů.\n" +msgstr "%2$s ŔÎľŚ˝şżĄ \"%1$s\"(Ŕť)¸Ś Ăß°ĄÇŐ´Ď´Ů.\n" #: rpmdb/rpmdb.c:2815 #, c-format @@ -3097,12 +3088,12 @@ msgstr "%2$s #: rpmdb/rpmdb.c:2851 #, c-format msgid "error(%d) storing record %s into %s\n" -msgstr "%3$s (Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" +msgstr "%3$s(Ŕ¸)ˇÎ %2$s ˇšÄھ希 ŔúŔĺÇĎ´Â ľľÁß żŔˇů(%1$d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" #: rpmdb/rpmdb.c:3190 #, c-format msgid "removing %s after successful db3 rebuild.\n" -msgstr "db3¸Ś Ŕ繸Ăŕ ÇŃ ČÄżĄ %s (Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" +msgstr "db3¸Ś Ŕ繸ĂŕÇŃ ČÄżĄ %s(Ŕť)¸Ś ťčÁŚÇŐ´Ď´Ů.\n" #: rpmdb/rpmdb.c:3225 msgid "no dbpath has been set" @@ -3111,12 +3102,12 @@ msgstr "db #: rpmdb/rpmdb.c:3252 #, c-format msgid "rebuilding database %s into %s\n" -msgstr "%2$s żĄ ľĽŔĚĹÍşŁŔĚ˝ş %1$s (Ŕť)¸Ś Ŕ繸Ăŕ ÇŐ´Ď´Ů\n" +msgstr "%2$sżĄ %1$s ľĽŔĚĹÍşŁŔĚ˝ş¸Ś Ŕ繸Ăŕ ÇŐ´Ď´Ů\n" #: rpmdb/rpmdb.c:3256 #, c-format msgid "temporary database %s already exists\n" -msgstr "Ŕӽà ľĽŔĚĹÍşŁŔĚ˝ş %s (ŔĚ)°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů\n" +msgstr "Ŕӽà ľĽŔĚĹÍşŁŔĚ˝ş %s(ŔĚ)°Ą ŔĚšĚ Á¸ŔçÇŐ´Ď´Ů\n" #: rpmdb/rpmdb.c:3262 #, c-format @@ -3131,22 +3122,22 @@ msgstr "%s #: rpmdb/rpmdb.c:3271 #, c-format msgid "opening old database with dbapi %d\n" -msgstr "dbapi %d (Ŕť)¸Ś ĹëÇŘ ŔĚŔü ľĽŔĚĹÍşŁŔĚ˝ş¸Ś żą´Ď´Ů\n" +msgstr "dbapi %dˇÎ ŔĚŔü ľĽŔĚĹÍşŁŔĚ˝ş¸Ś żą´Ď´Ů\n" #: rpmdb/rpmdb.c:3282 #, c-format msgid "opening new database with dbapi %d\n" -msgstr "dbapi %d (Ŕť)¸Ś ĹëÇŘ ťőˇÎżî ľĽŔĚĹÍşŁŔĚ˝ş¸Ś żą´Ď´Ů\n" +msgstr "dbapi %dˇÎ ťőˇÎżî ľĽŔĚĹÍşŁŔĚ˝ş¸Ś żą´Ď´Ů\n" #: rpmdb/rpmdb.c:3306 #, c-format msgid "record number %u in database is bad -- skipping.\n" -msgstr "ľĽŔĚĹÍşŁŔĚ˝şŔÇ ˇšÄÚľĺ šřČŁ %u (ŔĚ)°Ą Ŕ߸řľÇžú˝Ŕ´Ď´Ů -- ťýˇŤÇŐ´Ď´Ů.\n" +msgstr "ľĽŔĚĹÍşŁŔĚ˝şŔÇ ˇšÄÚľĺ šřČŁ %u(ŔĚ)°Ą Ŕ߸řľÇžú˝Ŕ´Ď´Ů -- ťýˇŤÇŐ´Ď´Ů.\n" #: rpmdb/rpmdb.c:3346 #, c-format msgid "cannot add record originally at %u\n" -msgstr "%u żĄ ˇšÄھ希 Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů\n" +msgstr "%użĄ ĂłŔ˝şÎĹÍ ˇšÄھ希 Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů\n" #: rpmdb/rpmdb.c:3364 msgid "failed to rebuild database: original database remains in place\n" @@ -3160,7 +3151,7 @@ msgstr " #: rpmdb/rpmdb.c:3374 #, c-format msgid "replace files in %s with files from %s to recover" -msgstr "şšą¸ÇĎąâ Ŕ§ÇŘ $2$s ŔÇ ĆÄŔĎŔť $1$s ŔÇ ĆÄŔϡΠąłĂźÇŐ´Ď´Ů" +msgstr "şšą¸ÇĎąâ Ŕ§ÇŘ $2$sŔÇ ĆÄŔĎŔť $1$sŔÇ ĆÄŔϡΠąłĂźÇŐ´Ď´Ů" #: rpmdb/rpmdb.c:3384 #, c-format @@ -3175,7 +3166,7 @@ msgstr "%s #: rpmio/macro.c:225 #, c-format msgid "======================== active %d empty %d\n" -msgstr "======================== %d Č°źş, %d şńžîŔÖŔ˝\n" +msgstr "======================== %d Č°źş %d şńžîŔÖŔ˝\n" #. XXX just in case #: rpmio/macro.c:354 @@ -3191,42 +3182,42 @@ msgstr "%3d<%*s( #: rpmio/macro.c:632 #, c-format msgid "Macro %%%s has unterminated body\n" -msgstr "¸ĹĹŠˇÎ %%%s żĄ ÁžˇáľÇÁö žĘŔş łťżë(body)ŔĚ ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ %%%sżĄ ÁžˇáľÇÁö žĘŔş łťżë(body)ŔĚ ŔÖ˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:661 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" -msgstr "¸ĹĹŠˇÎ %%%s żĄ şÎŔűÇŐÇŃ Ŕ̸§ŔĚ ŔÖ˝Ŕ´Ď´Ů (%%define)\n" +msgstr "¸ĹĹŠˇÎ %%%sżĄ şÎŔűÇŐÇŃ Ŕ̸§ŔĚ ŔÖ˝Ŕ´Ď´Ů (%%define)\n" #: rpmio/macro.c:667 #, c-format msgid "Macro %%%s has unterminated opts\n" -msgstr "¸ĹĹŠˇÎ %%%s żĄ ÁžˇáľÇÁö žĘŔş żÉźÇŔĚ ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ %%%sżĄ ÁžˇáľÇÁö žĘŔş żÉźÇŔĚ ŔÖ˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:672 #, c-format msgid "Macro %%%s has empty body\n" -msgstr "¸ĹĹŠˇÎ %%%s żĄ şńžîŔÖ´Â łťżë(body)ŔĚ ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ %%%sżĄ şńžîŔÖ´Â łťżë(body)ŔĚ ŔÖ˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:678 #, c-format msgid "Macro %%%s failed to expand\n" -msgstr "¸ĹĹŠˇÎ %%%s (Ŕť)¸Ś ČŽŔĺ(expand)ÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ %%%s(Ŕť)¸Ś ČŽŔĺ(expand)ÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:715 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" -msgstr "¸ĹĹŠˇÎ %%%s żĄ şÎŔűÇŐÇŃ Ŕ̸§ŔĚ ŔÖ˝Ŕ´Ď´Ů (%%undefine)\n" +msgstr "¸ĹĹŠˇÎ %%%sżĄ şÎŔűÇŐÇŃ Ŕ̸§ŔĚ ŔÖ˝Ŕ´Ď´Ů (%%undefine)\n" #: rpmio/macro.c:831 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" -msgstr "¸ĹĹŠˇÎ %%%s (%s) (Ŕş)´Â ˇšş§ %d ŔĚÇĎżĄź­´Â ťçżëľÉ źö žř˝Ŕ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ %%%s (%s)´Â ˇšş§ %d ŔĚÇĎżĄź­´Â ťçżëÇŇ źö žř˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:951 #, c-format msgid "Unknown option %c in %s(%s)\n" -msgstr "%2$s(%3$s) żĄ žË źö žř´Â żÉźÇ %1$c (ŔĚ)°Ą ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "%2$s(%3$s)żĄ žË źö žř´Â żÉźÇ %1$c(ŔĚ)°Ą ŔÖ˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:1154 #, c-format @@ -3236,17 +3227,17 @@ msgstr " #: rpmio/macro.c:1224 rpmio/macro.c:1241 #, c-format msgid "Unterminated %c: %s\n" -msgstr "ÁžˇáľÇÁö žĘŔş %c: %s\n" +msgstr "%c(ŔĚ)°Ą ÁžˇáľÇÁö žĘŔ˝: %s\n" #: rpmio/macro.c:1282 #, c-format msgid "A %% is followed by an unparseable macro\n" -msgstr "şĐźŽÇŇ źö žř´Â ¸ĹĹŠˇÎ ´ŮŔ˝żĄ '%%' °Ą ŔÖ˝Ŕ´Ď´Ů\n" +msgstr "'%%' ´ŮŔ˝żĄ Ăł¸ŽÇŇ źö žř´Â(unparseable) ¸ĹĹŠˇÎ°Ą ŔÖ˝Ŕ´Ď´Ů\n" #: rpmio/macro.c:1411 #, c-format msgid "Macro %%%.*s not found, skipping\n" -msgstr "¸ĹĹŠˇÎ %%%.*s (Ŕť)¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" +msgstr "¸ĹĹŠˇÎ %%%.*s¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů, ťýˇŤÇŐ´Ď´Ů\n" #: rpmio/macro.c:1488 msgid "Target buffer overflow\n" @@ -3261,7 +3252,7 @@ msgstr "%s #: rpmio/macro.c:1696 #, c-format msgid "File %s is smaller than %u bytes\n" -msgstr "%s ĆÄŔĎŔĚ %u šŮŔĚĆŽ żëˇŽş¸´Ů Ŕű˝Ŕ´Ď´Ů\n" +msgstr "%s ĆÄŔĎŔĚ %u šŮŔĚĆŽ ş¸´Ů Ŕű˝Ŕ´Ď´Ů\n" #: rpmio/rpmio.c:654 msgid "Success" @@ -3269,7 +3260,7 @@ msgstr " #: rpmio/rpmio.c:657 msgid "Bad server response" -msgstr "ź­šö ŔŔ´äŔĚ Ŕ߸řľÇžú˝Ŕ´Ď´Ů" +msgstr "Ŕ߸řľČ ź­šö ŔŔ´äŔÔ´Ď´Ů" #: rpmio/rpmio.c:660 msgid "Server I/O error" @@ -3281,11 +3272,11 @@ msgstr " #: rpmio/rpmio.c:666 msgid "Unable to lookup server host address" -msgstr "ź­šö ČŁ˝şĆŽ Á֟ҸŚ ĂŁŔť źö žř˝Ŕ´Ď´Ů" +msgstr "ź­šö ČŁ˝şĆŽ Á֟ҸŚ °ËťöÇŇ źö žř˝Ŕ´Ď´Ů" #: rpmio/rpmio.c:669 msgid "Unable to lookup server host name" -msgstr "ź­šö ČŁ˝şĆŽ Ŕ̸§Ŕť ĂŁŔť źö žř˝Ŕ´Ď´Ů" +msgstr "ź­šö ČŁ˝şĆŽ Ŕ̸§Ŕť °ËťöÇŇ źö žř˝Ŕ´Ď´Ů" #: rpmio/rpmio.c:672 msgid "Failed to connect to server" @@ -3293,7 +3284,7 @@ msgstr " #: rpmio/rpmio.c:675 msgid "Failed to establish data connection to server" -msgstr "ź­šöˇÎ ŔÚˇá Á˘źÓŔť ˝ĂľľÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů" +msgstr "ź­šöżĄ ľĽŔĚĹÍ Á˘źÓŔť ˝ĂľľÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů" #: rpmio/rpmio.c:678 msgid "I/O error to local file" @@ -3319,7 +3310,7 @@ msgstr " #: rpmio/rpmio.c:1363 #, c-format msgid "logging into %s as %s, pw %s\n" -msgstr "%s żĄ %s (Ŕ¸)ˇÎ ąâˇĎ(logging)ÇŐ´Ď´Ů, pw %s\n" +msgstr "%sżĄ %s(Ŕ¸)ˇÎ ąâˇĎ(logging)ÇŐ´Ď´Ů, pw %s\n" #: rpmio/rpmlog.c:58 msgid "(no error)" @@ -3343,7 +3334,7 @@ msgstr " #: rpmio/rpmmalloc.c:15 #, c-format msgid "memory alloc (%u bytes) returned NULL.\n" -msgstr "(%u šŮŔĚĆŽ)ŔÇ ¸Ţ¸đ¸Ž ÇŇ´ç °ŞŔĚ NULLˇÎ šÝČŻľÇžú˝Ŕ´Ď´Ů.\n" +msgstr "¸Ţ¸đ¸Ž ÇŇ´ç °Ş (%u šŮŔĚĆŽ)ŔĚ NULLŔť šÝČŻÇĎż´˝Ŕ´Ď´Ů.\n" #: rpmio/url.c:118 #, c-format @@ -3356,14 +3347,14 @@ msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "°ć°í: u %p data %p nrefs != 0 (%s %s)\n" #: rpmio/url.c:166 -#, fuzzy, c-format +#, c-format msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" -msgstr "°ć°í: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" +msgstr "°ć°í: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" #: rpmio/url.c:262 #, c-format msgid "Password for %s@%s: " -msgstr "%s@%s ŔÇ ĆĐ˝şżöľĺ: " +msgstr "%s@%sŔÇ ĆĐ˝şżöľĺ: " #: rpmio/url.c:287 rpmio/url.c:313 #, c-format @@ -3378,202 +3369,10 @@ msgstr "URL #: rpmio/url.c:528 #, c-format msgid "failed to create %s: %s\n" -msgstr "%s (Ŕť)¸Ś ťýźşÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" - -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Ŕ߸řľČ magic ŔÔ´Ď´Ů" - -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: ŔĐ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" - -#~ msgid "%s-%s-%s: immutable header region digest check failed\n" -#~ msgstr "" -#~ "%s-%s-%s: °íÁ¤ Çě´ő żľżŞ Ăŕžŕ(immutable header region digest) °ËťçżĄ ˝ÇĆĐ" -#~ "ÇÔ\n" - -#~ msgid "" -#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" -#~ msgstr "" -#~ "żŔÇÁźÂ %d(0x%08x)ŔÇ ĆĐĹ°Áö żŹ°áşÎşĐ(chain)ŔĚ źŐťóľÇžú˝Ŕ´Ď´Ů, Á˘ąŮŔť Ŕç˝Ă" -#~ "ľľ ÇŐ´Ď´Ů ...\n" - -#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" -#~ msgstr "źŐťóľČ żŔÇÁźÂ %d(0x%08x)ŔÇ żŹ°áşÎşĐ(chain)żĄ ŔçÁ˘ąŮ ÇŐ´Ď´Ů.\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "´ÝČů db ĆÄŔĎ %s\n" - -#~ msgid "removed db file %s\n" -#~ msgstr "ťčÁŚľČ db ĆÄŔĎ %s\n" - -#~ msgid "bad db file %s\n" -#~ msgstr "Ŕ߸řľČ db ĆÄŔĎ %s\n" - -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "ż­¸° db ĆÄŔĎ %s ¸đľĺ 0x%x\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "Ŕá°ÜŔÖ´Â ľĽŔĚĹÍşŁŔĚ˝şŔÇ %s (Ŕť)¸Ś žňŔť źö žř˝Ŕ´Ď´Ů\n" - -#~ msgid "error(%d) counting packages\n" -#~ msgstr "ĆĐĹ°ÁöŔÇ źö¸Ś źź´Â ľľÁß żŔˇů(%d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "şó(free) ¸ńˇĎŔÇ źŐťó (%u)- ´ŮŔ˝°ú °°Ŕş ¸íˇÉŔť ˝ÇÇŕÇŘ Áֽʽÿä\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "¸¸ŔĎ, \"rpm --rebuilddb\" ¸íˇÉŔĚ ˝ÇĆĐÇŇ °ćżěżĄ´Â http://www.rpm.org ŔĚ" -#~ "łŞ \n" -#~ "rpm-list@redhat.com ¸ŢŔϸľ ¸Ž˝şĆŽ¸Ś ĹëÇŘ ŔÚźźÇŃ Á¤ş¸¸Ś žňŔ¸˝Ç źö ŔÖ˝Ŕ´Ď" -#~ "´Ů.\n" - -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "ŔĚŔü Çü˝ÄŔÇ ľĽŔĚĹÍşŁŔĚ˝ş°Ą Á¸ŔçÇŐ´Ď´Ů; ťőˇÎżî Çü˝ÄŔÇ ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ťýźşÇĎ" -#~ "˝ĂˇÁ¸é --rebuilddb żÉźÇŔť ŔĚżëÇϽʽÿä\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "ĆÄŔĎŔÇ ˝Éşź¸Ż ¸ľĹŠ °ćˇÎ¸Ś °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" - -#~ msgid "failed dependencies:\n" -#~ msgstr "ŔÇÁ¸źş šŽÁŚˇÎ ŔÎÇŘ ˝ÇĆĐÇÔ:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) ŔÇÁ¸(Depends) Äł˝ĂżĄ Ăß°ĄľÇžú˝Ŕ´Ď´Ů.\n" - -#~ msgid "(unknown type)" -#~ msgstr "(žË źö žř´Â ŔŻÇü)" - -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "rpm °ËÁő ¸đľĺ (legacy)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "ĆĐĹ°ÁöżĄ ź­¸íÇŐ´Ď´Ů (ąâÁ¸ŔÇ ź­¸íŔş ťčÁŚľË´Ď´Ů)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "ĆĐĹ°ÁöżĄ ź­¸íÇŐ´Ď´Ů (ąâÁ¸ŔÇ ź­¸íŔş ťčÁŚľË´Ď´Ů)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "ĆĐĹ°ÁöżĄ ťçżëŔÚ Ŕ̸§°ú id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů (Ŕý´ë Ŕ̡¸°Ô ľÇžîź­´Â žČľË´Ď" -#~ "´Ů)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "ĆĐĹ°ÁöżĄ ą×ˇě Ŕ̸§°ú id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů (Ŕý´ë Ŕ̡¸°Ô ľÇžîź­´Â žČľË´Ď´Ů)\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "ĆĐĹ°ÁöżĄ ź­¸íÇŐ´Ď´Ů (ąâÁ¸ŔÇ ź­¸íŔş ťčÁŚľË´Ď´Ů)" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "PGP¸Ś ťçżëÇĎżŠ ź­¸íŔť ťýźşÇŐ´Ď´Ů.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "GPG¸Ś ťçżëÇĎżŠ ź­¸íŔť ťýźşÇŐ´Ď´Ů.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "ÁŚ°Ĺ(uninstall)ÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "pgp (%s) (Ŕť)¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "gpg¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "pgp¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== ŔçščÄĄ\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d ÁŚżÜ(exclude) %s\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d ŔçščÄĄ %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "%s%s multilib °ćˇÎ¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "%s %s (Ŕť)¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "%s żĄź­ %s (Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "%s ľđˇşĹ与¸Ś %s (Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s żš (ĆÄŔĎŔĚ Ăß°ĄľĘ)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "ĆĐĹ°Áö %s (ŔĚ)°Ą ĂćľšÇÔ: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-s (Äł˝ĂľĘ)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s żš (db ĆÄŔĎ)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s żš (db ĆĐĹ°Áö)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s žĆ´ĎżŔ\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s żš (ÁŚ°řŔĚ Ăß°ĄľĘ)\n" +msgstr "%s(Ŕť)¸Ś ťýźşÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n" #~ msgid "cannot open rpm database in %s\n" -#~ msgstr "%s żĄź­ rpm ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů\n" - -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "%s/packages.rpm Ŕť ż­ źö žř˝Ŕ´Ď´Ů\n" - -#~ msgid "add a signature to a package" -#~ msgstr "ĆĐĹ°ÁöżĄ ź­¸íŔť Ăß°ĄÇŐ´Ď´Ů" - -#~ msgid "verify package signature" -#~ msgstr "ĆĐĹ°ÁöŔÇ ź­¸íŔť °ËťçÇŐ´Ď´Ů" - -#~ msgid "skip any GPG signatures" -#~ msgstr "GPG ź­¸íŔş °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" - -#~ msgid "skip any PGP signatures" -#~ msgstr "PGP ź­¸íŔş °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "ĆÄŔĎŔÇ md5 ßŊźśŔť °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "¸đľç ĆĐĹ°Áö¸Ś ÁúŔÇÇĎ´ÂľĽ ÇĘżä ŔĚťóŔÇ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "¸đľç ĆĐĹ°Áö¸Ś °ËÁőÇĎ´ÂľĽ ÇĘżä ŔĚťóŔÇ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů" - -#~ msgid "no packages given for signature check" -#~ msgstr "ź­¸í °ËťçÇŇ ĆĐĹ°Áö¸Ś ÁöÁ¤ÇĎÁö žĘŔ¸źĚ˝Ŕ´Ď´Ů" +#~ msgstr "%sŔÇ rpm ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ż­ źö žř˝Ŕ´Ď´Ů\n" #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3761,13 +3560,13 @@ msgstr "%s ( #~ msgstr " rpm {--querytags}" #~ msgid "Usage:" -#~ msgstr "  ťçżëšý:" +#~ msgstr " * ťçżëšý:" #~ msgid "print this message" #~ msgstr "ŔĚ ¸ŢźźÁö¸Ś ĂâˇÂÇŐ´Ď´Ů" #~ msgid " All modes support the following arguments:" -#~ msgstr "  ¸đľç ¸đľĺżĄź­ ´ŮŔ˝ŔÇ ŔÎźö¸Ś ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů:" +#~ msgstr " * ¸đľç ¸đľĺżĄź­ ´ŮŔ˝ŔÇ ŔÎźö¸Ś ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů:" #~ msgid " --define ' '" #~ msgstr " --define '<Ŕ̸§> <şťšŽ>'" @@ -3785,7 +3584,7 @@ msgstr "%s ( #~ msgstr " --rcfile <ĆÄŔĎ> " #~ msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" -#~ msgstr "/etc/rpmrc żÍ $HOME/.rpmrc ĆÄŔĎ ´ë˝ĹżĄ ÁöÁ¤ľČ <ĆÄŔĎ> Ŕť ťçżëÇŐ´Ď´Ů" +#~ msgstr "/etc/rpmrc żÍ $HOME/.rpmrc ĆÄŔĎ ´ë˝Ĺ ÁöÁ¤ÇŃ <ĆÄŔĎ>Ŕť ťçżëÇŐ´Ď´Ů" #~ msgid "be a little more verbose" #~ msgstr "Č­¸éżĄ ĂâˇÂľÇ´Â ¸ŢźźÁöŔÇ łťżëŔť ŔÚźźČ÷ ş¸żŠÁÝ´Ď´Ů" @@ -3796,16 +3595,17 @@ msgstr "%s ( #~ msgid "" #~ " Install, upgrade and query (with -p) allow URL's to be used in place" #~ msgstr "" -#~ "  źłÄĄ, ž÷ą×ˇšŔĚľĺ š× ÁúŔǽà (-p żÉźÇ°ú ÇÔ˛˛ ťçżë˝Ă) ĆÄŔϸíŔť Ŕű´Â °÷żĄ" +#~ " * źłÄĄ, ž÷ą×ˇšŔĚľĺ š× ÁúŔǽà (-p żÉźÇ°ú ÇÔ˛˛ ťçżë˝Ă) ĆÄŔϸíŔť Ŕű´Â °÷" +#~ "żĄ" #~ msgid " of file names as well as the following options:" -#~ msgstr " ĆÄŔĎŔĚ Ŕ§ÄĄÇŃ URL°ú ÇÔ˛˛ ´ŮŔ˝ŔÇ żÉźÇŔť ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů:" +#~ msgstr " ĆÄŔĎŔĚ Ŕ§ÄĄÇŃ URL°ú ÇÔ˛˛ ´ŮŔ˝ŔÇ żÉźÇŔť ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů:" #~ msgid " --ftpproxy " #~ msgstr " --ftpproxy <ČŁ˝şĆŽ> " #~ msgid "hostname or IP of ftp proxy" -#~ msgstr "ftp ÇÁˇĎ˝ĂŔÇ ČŁ˝şĆŽ ¸í śÇ´Â IP ÁÖźŇ" +#~ msgstr "ftp ÇÁˇĎ˝ĂŔÇ ČŁ˝şĆŽ¸í śÇ´Â IP ÁÖźŇ" #~ msgid " --ftpport " #~ msgstr " --ftpport <Ć÷ĆŽ> " @@ -3817,7 +3617,7 @@ msgstr "%s ( #~ msgstr " --httpproxy <ČŁ˝şĆŽ>" #~ msgid "hostname or IP of http proxy" -#~ msgstr "http ÇÁˇĎ˝ĂŔÇ ČŁ˝şĆŽ ¸í śÇ´Â IP ÁÖźŇ" +#~ msgstr "http ÇÁˇĎ˝ĂŔÇ ČŁ˝şĆŽ¸í śÇ´Â IP ÁÖźŇ" #~ msgid " --httpport " #~ msgstr " --httpport <Ć÷ĆŽ> " @@ -3832,20 +3632,19 @@ msgstr "%s ( #~ msgstr " --dbpath <ľđˇşĹ与> " #~ msgid "use as the directory for the database" -#~ msgstr "<ľđˇşĹ与> ¸Ś ľĽŔĚĹÍşŁŔĚ˝ş ľđˇşĹ与ˇÎ ťçżëÇŐ´Ď´Ů" +#~ msgstr "<ľđˇşĹ与>¸Ś ľĽŔĚĹÍşŁŔĚ˝ş ľđˇşĹ与ˇÎ ťçżëÇŐ´Ď´Ů" #~ msgid " --queryformat " #~ msgstr " --queryformat <ÁúŔÇÇü˝Ä>" #~ msgid "use as the header format (implies --info)" -#~ msgstr "" -#~ "<ÁúŔÇÇü˝Ä> Ŕť Çě´ő Çü˝ÄŔ¸ˇÎ ťçżëÇŐ´Ď´Ů (--info żÉźÇŔĚ Ć÷ÇԾǞî ŔÖŔ˝)" +#~ msgstr "<ÁúŔÇÇü˝Ä>Ŕť Çě´ő Çü˝ÄŔ¸ˇÎ ťçżëÇŐ´Ď´Ů (--info żÉźÇŔĚ Ć÷ÇԾǞî ŔÖŔ˝)" #~ msgid " --root " #~ msgstr " --root <ľđˇşĹ与> " #~ msgid " Package specification options:" -#~ msgstr "  ĆĐĹ°Áö ÁöÁ¤ żÉźÇ:" +#~ msgstr " * ĆĐĹ°Áö źźşÎťçÇ× ¸í˝Ă żÉźÇ:" #~ msgid "query all packages" #~ msgstr "¸đľç ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" @@ -3854,40 +3653,40 @@ msgstr "%s ( #~ msgstr " -f <ĆÄŔĎ>+ " #~ msgid "query package owning " -#~ msgstr "<ĆÄŔĎ> ŔĚ Ć÷ÇԾǞî ŔÖ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" +#~ msgstr "<ĆÄŔĎ>ŔĚ Ć÷ÇԾǞî ŔÖ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" #~ msgid " -p + " #~ msgstr " -p <ĆĐĹ°ÁöĆÄŔĎ>+ " #~ msgid "query (uninstalled) package " -#~ msgstr "(źłÄĄľÇÁö žĘŔş) <ĆĐĹ°ÁöĆÄŔĎ> żĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" +#~ msgstr "(źłÄĄľÇžî ŔÖÁö žĘŔş) <ĆĐĹ°ÁöĆÄŔĎ>żĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" #~ msgid " --triggeredby " #~ msgstr " --triggeredby <ĆĐĹ°Áö>" #~ msgid "query packages triggered by " -#~ msgstr "<ĆĐĹ°Áö> ˇÎ ŔÎÇĎżŠ šßťýľÇ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" +#~ msgstr "<ĆĐĹ°Áö>ˇÎ ŔÎÇĎżŠ ťýźşľÇ´Â(triggered) ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" #~ msgid " --whatprovides " #~ msgstr " --whatprovides <ąâ´É>" #~ msgid "query packages which provide capability" -#~ msgstr "<ąâ´É> Ŕť ÁŚ°řÇĎ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" +#~ msgstr "<ąâ´É>Ŕť ÁŚ°řÇĎ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" #~ msgid " --whatrequires " #~ msgstr " --whatrequires <ąâ´É>" #~ msgid "query packages which require capability" -#~ msgstr "<ąâ´É> Ŕť ÇĘżäˇÎ ÇĎ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" +#~ msgstr "<ąâ´É>Ŕť ÇĘżäˇÎ ÇĎ´Â ĆĐĹ°ÁöżĄ ´ëÇŘ ÁúŔÇÇŐ´Ď´Ů" #~ msgid " Information selection options:" -#~ msgstr "  Á¤ş¸ źąĹĂ żÉźÇ:" +#~ msgstr " * Á¤ş¸ źąĹĂ żÉźÇ:" #~ msgid "display package information" #~ msgstr "ĆĐĹ°ÁöżĄ ´ëÇŃ Á¤ş¸¸Ś ş¸żŠÁÝ´Ď´Ů" #~ msgid "display the package's change log" -#~ msgstr "ĆĐĹ°ÁöŔÇ şŻ°ć ťçÇ×(change log)Ŕť ş¸żŠÁÝ´Ď´Ů" +#~ msgstr "ĆĐĹ°ÁöŔÇ şŻ°ćľČ ťçÇ×(change log)Ŕť ş¸żŠÁÝ´Ď´Ů" #~ msgid "display package file list" #~ msgstr "ĆĐĹ°ÁöżĄ Ć÷ÇÔľČ ĆÄŔĎŔÇ ¸ńˇĎŔť ş¸żŠÁÝ´Ď´Ů" @@ -3929,6 +3728,9 @@ msgstr "%s ( #~ "-q żÉźÇ°ú °°Ŕş ĆĐĹ°Áö ÁöÁ¤ żÉźÇŔť ťçżëÇĎżŠ źłÄĄľÇžî ŔÖ´Â ĆĐĹ°Áö¸Ś °ËťçÇŐ´Ď" #~ "´Ů" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "ĆÄŔĎŔÇ md5 ÇŐ°č°Ëťç(checksum)¸Ś ČŽŔÎÇĎÁö žĘ˝Ŕ´Ď´Ů" + #~ msgid "do not verify file attributes" #~ msgstr "ĆÄŔĎŔÇ źÓźşŔť °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" @@ -3951,7 +3753,7 @@ msgstr "%s ( #~ msgstr " --relocate <ŔĚŔü°ćˇÎ>=<ťőˇÎżî°ćˇÎ>" #~ msgid "relocate files from to " -#~ msgstr "<ŔĚŔü°ćˇÎ> żĄź­ <ťőˇÎżî°ćˇÎ> ˇÎ ĆÄŔĎŔť ŔçščÄĄÇĎżŠ źłÄĄÇŐ´Ď´Ů" +#~ msgstr "<ŔĚŔü°ćˇÎ>żĄź­ <ťőˇÎżî°ćˇÎ>ˇÎ ĆÄŔĎŔť ŔçščÄĄÇĎżŠ źłÄĄÇŐ´Ď´Ů" #~ msgid " --prefix " #~ msgstr " --prefix <ľđˇşĹ与> " @@ -3960,7 +3762,8 @@ msgstr "%s ( #~ msgstr "ĆĐĹ°Áö źłÄĄ˝Ă žîś°ÇŃ źłÄĄ°üˇĂ ˝şĹŠ¸łĆŽľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #~ msgid "don't execute any scripts triggered by this package" -#~ msgstr "ŔĚ ĆĐĹ°ÁöˇÎ ŔÎÇŘ šßťýľÇ´Â ˝şĹŠ¸łĆŽ¸Ś ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" +#~ msgstr "" +#~ "ŔĚ ĆĐĹ°ÁöˇÎ ŔÎÇŘ ťýźşľÇ´Â(triggered) žîś°ÇŃ ˝şĹŠ¸łĆŽľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" #~ msgid " --upgrade " #~ msgstr " --upgrade <ĆĐĹ°ÁöĆÄŔĎ>" @@ -3987,7 +3790,7 @@ msgstr "%s ( #~ msgstr " -t<´Ü°č> " #~ msgid "build package, where is one of:" -#~ msgstr "ĆĐĹ°Áö¸Ś ÁŚŔŰÇϸç, <´Ü°č> żĄ ťçżëľÇ´Â żÉźÇŔş ´ŮŔ˝°ú °°˝Ŕ´Ď´Ů:" +#~ msgstr "ĆĐĹ°Áö¸Ś ÁŚŔŰÇϸç, <´Ü°č>żĄź­ ťçżëÇĎ´Â żÉźÇŔş ´ŮŔ˝°ú °°˝Ŕ´Ď´Ů:" #~ msgid "prep (unpack sources and apply patches)" #~ msgstr "ÁŘşń °úÁ¤ (źŇ˝ş ĆÄŔĎŔť ÇŽ°í ĆĐÄĄ¸Ś ŔűżëÇŐ´Ď´Ů)" @@ -4018,13 +3821,13 @@ msgstr "%s ( #~ msgstr " --buildroot <ľđˇşĹ与>" #~ msgid "use as the build root" -#~ msgstr "<ľđˇşĹ与> ¸Ś ĆĐĹ°Áö ÁŚŔŰŔť Ŕ§ÇŃ ˇçĆŽ ľđˇşĹ与ˇÎ ťçżëÇŐ´Ď´Ů" +#~ msgstr "<ľđˇşĹ与>¸Ś ĆĐĹ°Áö ÁŚŔŰŔť Ŕ§ÇŃ ˇçĆŽ ľđˇşĹ与ˇÎ ťçżëÇŐ´Ď´Ů" #~ msgid " --target=+" #~ msgstr " --target=<Çá§Ćű>+ " #~ msgid "build the packages for the build targets platform1...platformN." -#~ msgstr "ÁöÁ¤ľČ Çá§Ćű1...Çá§ĆűN ŔÇ ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů" +#~ msgstr "ÁöÁ¤ÇŃ ¸ńÇĽ´ëťóŔÇ Çá§Ćű1...Çá§ĆűN ĆĐĹ°Áö¸Ś ÁŚŔŰÇŐ´Ď´Ů." #~ msgid "do not execute any stages" #~ msgstr "ĆĐĹ°Áö ÁŚŔ۽à žîś°ÇŃ ´Ü°čľľ ˝ÇÇŕÇĎÁö žĘ˝Ŕ´Ď´Ů" @@ -4036,7 +3839,7 @@ msgstr "%s ( #~ "install source package, build binary package and remove spec file, " #~ "sources, patches, and icons." #~ msgstr "" -#~ "<źŇ˝ş_ĆĐĹ°Áö> ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇϸç, ĆĐĹ°Áö ÁŚŔŰ ČÄżĄ´Â spec, źŇ" +#~ "<źŇ˝ş_ĆĐĹ°Áö>ˇÎ šŮŔ̳ʸŽ ĆĐĹ°Áö¸Ś ÁŚŔŰÇϸç, ĆĐĹ°Áö ÁŚŔŰ ČÄżĄ´Â spec, źŇ" #~ "˝ş, ĆĐÄĄ, žĆŔĚÄÜ ĆÄŔĎŔť ťčÁŚÇŐ´Ď´Ů" #~ msgid " --recompile " @@ -4051,12 +3854,21 @@ msgstr "%s ( #~ msgid " --addsign + " #~ msgstr " --addsign <ĆĐĹ°Áö>+ " +#~ msgid "add a signature to a package" +#~ msgstr "ĆĐĹ°ÁöżĄ ź­¸íŔť Ăß°ĄÇŐ´Ď´Ů" + #~ msgid " --checksig +" #~ msgstr " --checksig <ĆĐĹ°Áö>+" #~ msgid " -K + " #~ msgstr " -K <ĆĐĹ°Áö>+ " +#~ msgid "skip any PGP signatures" +#~ msgstr "žîś°ÇŃ PGP ź­¸íľľ °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" + +#~ msgid "skip any GPG signatures" +#~ msgstr "žîś°ÇŃ GPG ź­¸íľľ °ËťçÇĎÁö žĘ˝Ŕ´Ď´Ů" + #~ msgid "make sure a valid database exists" #~ msgstr "ŔŻČżÇŃ ľĽŔĚĹÍşŁŔĚ˝ş°Ą Á¸ŔçÇĎ´ÂÁö ČŽŔÎÇŐ´Ď´Ů" @@ -4068,7 +3880,7 @@ msgstr "%s ( #~ "package specification options as -q" #~ msgstr "" #~ "-q żÉźÇ°ú °°Ŕş ĆĐĹ°Áö ÁöÁ¤ żÉźÇŔť ťçżëÇĎżŠ ĆĐĹ°Áö ľĽŔĚĹÍşŁŔĚ˝şżĄ ŔÖ´Â ĆÄŔĎ" -#~ "ŔÇ Çă°ĄąÇ(permission) Ŕť źłÁ¤ÇŐ´Ď´Ů" +#~ "ŔÇ Çă°ĄąÇ(permission)Ŕť źłÁ¤ÇŐ´Ď´Ů" #~ msgid "" #~ "set the file owner and group to those in the package database using the " @@ -4085,37 +3897,172 @@ msgstr "%s ( #~ msgid "Use --macros with a colon separated list of macro files to read.\n" #~ msgstr "" -#~ "--macros żÉźÇŔş ÄݡĐ(:)Ŕ¸ˇÎ ą¸şĐľČ ¸ĹĹŠˇÎ ¸ńˇĎ ĆÄŔĎ°ú ÇÔ˛˛ ťçżëÇϽʽÿä.\n" +#~ "--macros żÉźÇżĄ´Â ŔĐžîżĂ ¸ĹĹŠˇÎ ¸ńˇĎ ĆÄŔĎŔť ÄݡĐ(:)Ŕ¸ˇÎ ą¸şĐÇĎżŠ ťçżëÇĎ˝Ę" +#~ "˝Ăżä.\n" #~ msgid "" #~ "script disabling options may only be specified during package " #~ "installation, erasure, and verification" #~ msgstr "" -#~ "˝şĹŠ¸łĆŽ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, °ËÁő˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +#~ "˝şĹŠ¸łĆŽ ÇŘÁŚ żÉźÇŔş ĆĐĹ°Áö źłÄĄ, ťčÁŚ, °ËÁő˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #~ msgid "--apply may only be specified during package installation" -#~ msgstr "--apply żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +#~ msgstr "--apply żÉźÇŔş ĆĐĹ°Áö źłÄĄ˝ĂżĄ¸¸ ÁöÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #~ msgid "--oldpackage may only be used during upgrades" -#~ msgstr "--oldpackage żÉźÇŔş ž÷ą×ˇšŔĚľĺ˝ĂżĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +#~ msgstr "--oldpackage żÉźÇŔş ž÷ą×ˇšŔĚľĺ˝ĂżĄ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #~ msgid "--nopgp may only be used during signature checking" -#~ msgstr "--nopgp żÉźÇŔş ź­¸í °Ëťç˝ĂżĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +#~ msgstr "--nopgp żÉźÇŔş ź­¸í °Ëťç˝ĂżĄ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #~ msgid "--nogpg may only be used during signature checking" -#~ msgstr "--nogpg żÉźÇŔş ź­¸í °Ëťç˝ĂżĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +#~ msgstr "--nogpg żÉźÇŔş ź­¸í °Ëťç˝ĂżĄ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" #~ msgid "" #~ "--nomd5 may only be used during signature checking and package " #~ "verification" -#~ msgstr "--nomd5 żÉźÇŔş ź­¸í °ËťçżÍ ĆĐĹ°Áö °ËÁő˝ĂżĄ¸¸ ťçżëÇĎ˝Ç źö ŔÖ˝Ŕ´Ď´Ů" +#~ msgstr "--nomd5 żÉźÇŔş ź­¸í °ËťçżÍ ĆĐĹ°Áö °ËÁő˝ĂżĄ¸¸ ťçżëÇŇ źö ŔÖ˝Ŕ´Ď´Ů" -#~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" -#~ msgstr "" -#~ "pgp¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů. PGP °Ëťç¸Ś ťýˇŤÇϽáÁ¸é, --nopgp żÉźÇŔť ŔĚżëÇĎ" -#~ "˝Ę˝Ăżä.\n" +#~ msgid "no packages given for signature check" +#~ msgstr "ź­¸í °ËťçÇŇ ĆĐĹ°Áö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" -#~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" +#~ msgid "no packages given for signing" +#~ msgstr "ź­¸íÇŇ ĆĐĹ°Áö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" + +#~ msgid "no packages given for uninstall" +#~ msgstr "ÁŚ°Ĺ(uninstall)ÇŇ ĆĐĹ°Áö°Ą ÁöÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "¸đľç ĆĐĹ°Áö¸Ś ÁúŔÇÇĎ´ÂľĽ ÇĘżä ŔĚťóŔÇ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "¸đľç ĆĐĹ°Áö¸Ś °ËÁőÇĎ´ÂľĽ ÇĘżä ŔĚťóŔÇ ŔÎźö°Ą ÁöÁ¤ľÇžú˝Ŕ´Ď´Ů" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s żš (ĆÄŔĎŔĚ Ăß°ĄľĘ)\n" + +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-s (Äł˝ĂľĘ)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s żš (db ĆÄŔĎ)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s żš (db ĆĐĹ°Áö)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s žĆ´ĎżŔ\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) (ŔĚ)°Ą ŔÇÁ¸(Depends) Äł˝ĂżĄ Ăß°ĄľÇžú˝Ŕ´Ď´Ů.\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "%s-%s-%s ĆĐĹ°ÁöŔÇ ÇĘżäťçÇ×ŔĚ ¸¸ÁˇľÇÁö žĘŔ˝: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "%s ĆĐĹ°Áö°Ą ĂćľšÇÔ: %s\n" + +#~ msgid "use chainsaw dependency tree decimation when ordering" #~ msgstr "" -#~ "gpg¸Ś ˝ÇÇŕÇŇ źö žř˝Ŕ´Ď´Ů. GPG °Ëťç¸Ś ťýˇŤÇϽáÁ¸é, --nogpg żÉźÇŔť ŔĚżëÇĎ" -#~ "˝Ę˝Ăżä.\n" +#~ "¸íˇÉ˝ĂżĄ żŹ°čľČ ŔÇÁ¸źş ĆŽ¸Ž ÁŚ°Ĺ(chainsaw dependency tree decimation)¸Ś ťç" +#~ "żëÇŐ´Ď´Ů" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "rpm °ËÁő ¸đľĺ (legacy)" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: ŔĐ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "%s/packages.rpmŔť ż­ źö žř˝Ŕ´Ď´Ů\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "PGP¸Ś ťçżëÇĎżŠ ź­¸íŔť ťýźşÇŐ´Ď´Ů.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "GPG¸Ś ťçżëÇĎżŠ ź­¸íŔť ťýźşÇŐ´Ď´Ů.\n" + +#~ msgid "========== relocations\n" +#~ msgstr "========== ŔçščÄĄ\n" + +#~ msgid "%5d exclude %s\n" +#~ msgstr "%5d ÁŚżÜ %s\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d ŔçščÄĄ %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "%s%s multilib °ćˇÎ¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "%s %s(Ŕť)¸Ś ÁŚżÜ˝ĂĹľ´Ď´Ů\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "%s(Ŕť)¸Ś %s(Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "%s ľđˇşĹ与¸Ś %s(Ŕ¸)ˇÎ ŔçščÄĄ ÇŐ´Ď´Ů\n" + +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "ĆĐĹ°ÁöżĄ ťçżëŔÚ Ŕ̸§°ú id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů (Ŕý´ë Ŕ̡¸°Ô ľÇžîź­´Â žČľË´Ď" +#~ "´Ů)\n" + +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "ĆĐĹ°ÁöżĄ ą×ˇě Ŕ̸§°ú id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů (Ŕý´ë Ŕ̡¸°Ô ľÇžîź­´Â žČľË´Ď´Ů)\n" + +#~ msgid "%s-%s-%s: immutable header region digest check failed\n" +#~ msgstr "" +#~ "%s-%s-%s: °íÁ¤ Çě´ő żľżŞ Ăŕžŕ(immutable header region digest) °ËťçżĄ ˝ÇĆĐ" +#~ "ÇÔ\n" + +#~ msgid "" +#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" +#~ msgstr "" +#~ "żŔÇÁźÂ %d(0x%08x)ŔÇ ĆĐĹ°Áö żŹ°áşÎşĐ(chain)ŔĚ źŐťóľÇžú˝Ŕ´Ď´Ů, Á˘ąŮŔť Ŕç˝Ă" +#~ "ľľ ÇŐ´Ď´Ů ...\n" + +#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" +#~ msgstr "źŐťóľČ żŔÇÁźÂ %d(0x%08x)ŔÇ żŹ°áşÎşĐ(chain)żĄ ŔçÁ˘ąŮ ÇŐ´Ď´Ů.\n" + +#~ msgid "closed db file %s\n" +#~ msgstr "´ÝČů db ĆÄŔĎ %s\n" + +#~ msgid "removed db file %s\n" +#~ msgstr "ťčÁŚľČ db ĆÄŔĎ %s\n" + +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "żŠ´ÂÁß db ĆÄŔĎ %s ¸đľĺ 0x%x\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "ľĽŔĚĹÍşŁŔĚ˝şŔÇ ŔáąÝľČ(lock) %s(Ŕť)¸Ś žňŔť źö žř˝Ŕ´Ď´Ů\n" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "şó(free) ¸ńˇĎŔÇ źŐťó (%u)- ´ŮŔ˝ŔÇ ¸íˇÉŔť ˝ÇÇŕÇϽʽÿä\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "¸¸ŔĎ, \"rpm --rebuilddb\" ¸íˇÉŔĚ ˝ÇĆĐÇŇ °ćżěżĄ´Â http://www.rpm.org ŔĚ" +#~ "łŞ \n" +#~ "rpm-list@redhat.com ¸ŢŔϸľ ¸Ž˝şĆŽ¸Ś ĹëÇŘ ŔÚźźÇŃ Á¤ş¸¸Ś žňŔ¸˝Ăąâ šŮśř´Ď" +#~ "´Ů.\n" + +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "ŔĚŔü Çü˝ÄŔÇ ľĽŔĚĹÍşŁŔĚ˝ş°Ą Á¸ŔçÇŐ´Ď´Ů; ťőˇÎżî Çü˝ÄŔÇ ľĽŔĚĹÍşŁŔĚ˝ş¸Ś ťýźşÇĎ" +#~ "ąâ Ŕ§ÇŘź­´Â --rebuilddb żÉźÇŔť ŔĚżëÇϽʽÿä\n" + +#~ msgid "error(%d) counting packages\n" +#~ msgstr "ĆĐĹ°ÁöŔÇ źö¸Ś źź´Â ľľÁß żŔˇů(%d)°Ą šßťýÇß˝Ŕ´Ď´Ů\n" + +#~ msgid "(unknown type)" +#~ msgstr "(žË źö žř´Â ŔŻÇü)" diff --git a/po/no.po b/po/no.po index a48893ac6..254c8a453 100644 --- a/po/no.po +++ b/po/no.po @@ -410,7 +410,7 @@ msgstr "ingen tar-fil oppgitt for bygging" #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "ingen pakker oppgitt for signering" +msgstr "ingen pakker oppgitt for installering" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1770,7 +1770,7 @@ msgstr "ikke kj #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "ikke verifiser header SHA1 digest" +msgstr "ikke verifiser pakkeavhengigheter" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2750,8 +2750,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "ikke verifiser header SHA1 digest" #: lib/signature.c:1073 #, fuzzy @@ -3340,90 +3341,9 @@ msgstr "url-port m msgid "failed to create %s: %s\n" msgstr "kunne ikke opprette %s: %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Ugyldig magi" - -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: lesing av manifest feilet: %s\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "kan ikke ĺpne pakkedatabase i %s\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "ikke verifiser sti til symbolske lenker for filer" - -#~ msgid "failed dependencies:\n" -#~ msgstr "feilede avhengigheter:\n" - -#~ msgid "(unknown type)" -#~ msgstr "(ukjent type)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "signer en pakke (forkast nĺvćrende signatur)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "signer en pakke (forkast nĺvćrende signatur)" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "signer en pakke (forkast nĺvćrende signatur)" - -#~ msgid "no packages given for uninstall" -#~ msgstr "ingen pakker oppgitt for avinstallering" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d omplasser %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "ekskluderer multilib-sti %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "eksluderer %s %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "relokerer %s til %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "relokerer katalog %s til %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %s\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "kan ikke ĺpne database i %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "kan ikke ĺpne %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "legg til signatur til en pakke" - -#~ msgid "verify package signature" -#~ msgstr "verifiser pakkesignatur" - -#~ msgid "skip any GPG signatures" -#~ msgstr "hopp over GPG-signaturer" - -#~ msgid "skip any PGP signatures" -#~ msgstr "hopp over PGP-signaturer" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "ikke verifiser filens md5 sjekksum" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "ekstra argumenter oppgitt for spřrring pĺ alle pakker" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "ekstra argumenter oppgitt for verfisering av alle pakker" - -#~ msgid "no packages given for signature check" -#~ msgstr "ingen pakke oppgitt for signatursjekk" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3772,6 +3692,9 @@ msgstr "kunne ikke opprette %s: %s\n" #~ "verifiser en pakkeinstallasjon ved ĺ bruke samme alternativer for " #~ "pakkespesifikasjon som -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "ikke verifiser filens md5 sjekksum" + #~ msgid "do not verify file attributes" #~ msgstr "ikke verifiser filattributter" @@ -3890,12 +3813,21 @@ msgstr "kunne ikke opprette %s: %s\n" #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "legg til signatur til en pakke" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " -K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "hopp over PGP-signaturer" + +#~ msgid "skip any GPG signatures" +#~ msgstr "hopp over GPG-signaturer" + #~ msgid "make sure a valid database exists" #~ msgstr "sjekk at en gyldig database eksisterer" @@ -3931,3 +3863,48 @@ msgstr "kunne ikke opprette %s: %s\n" #~ msgid "--apply may only be specified during package installation" #~ msgstr "--apply kan kun spesifiseres under pakkeinstallasjon" + +#~ msgid "no packages given for signature check" +#~ msgstr "ingen pakke oppgitt for signatursjekk" + +#~ msgid "no packages given for signing" +#~ msgstr "ingen pakker oppgitt for signering" + +#~ msgid "no packages given for uninstall" +#~ msgstr "ingen pakker oppgitt for avinstallering" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "ekstra argumenter oppgitt for spřrring pĺ alle pakker" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "ekstra argumenter oppgitt for verfisering av alle pakker" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "pakke %s er i konflikt: %s\n" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: lesing av manifest feilet: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "kan ikke ĺpne %s/packages.rpm\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d omplasser %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "ekskluderer multilib-sti %s%s\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "eksluderer %s %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "relokerer %s til %s\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "relokerer katalog %s til %s\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "kan ikke ĺpne pakkedatabase i %s\n" + +#~ msgid "(unknown type)" +#~ msgstr "(ukjent type)" diff --git a/po/pl.po b/po/pl.po index ee7483bd7..d6199b279 100644 --- a/po/pl.po +++ b/po/pl.po @@ -425,7 +425,7 @@ msgstr "nie podano nazw plik #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "nie podano nazwy pakietu do podpisania" +msgstr "nie podano nazw plików do zainstalowania" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1476,9 +1476,8 @@ msgid "(cached)" msgstr "" #: lib/depends.c:416 -#, fuzzy msgid "(rpmrc provides)" -msgstr "plik %s nie należy do żadnego pakietu\n" +msgstr "" #: lib/depends.c:432 #, fuzzy @@ -1828,7 +1827,7 @@ msgstr "nie wykonuj #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "nie sprawdzaj plików pakietu" +msgstr "nie sprawdzaj zależności pakietu" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1933,7 +1932,7 @@ msgstr "zapytaj do jakiego pakietu nale #: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "zapytaj do jakiego pakietu należy " +msgstr "sprawdzanie do jakiego pakietu należy plik" #: lib/poptQV.c:103 #, fuzzy @@ -1943,7 +1942,7 @@ msgstr "odpytywanie pakiet #: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "zapytaj do jakiego pakietu należy " +msgstr "sprawdzanie do jakiego pakietu należy plik" #: lib/poptQV.c:107 #, fuzzy @@ -1953,7 +1952,7 @@ msgstr "odpytywanie pakietu" #: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "zapytaj do jakiego pakietu należy " +msgstr "sprawdzanie do jakiego pakietu należy plik" #: lib/poptQV.c:111 #, fuzzy @@ -2347,9 +2346,8 @@ msgid "(added files)" msgstr "błędny status pliku: %s" #: lib/rpmal.c:765 -#, fuzzy msgid "(added provide)" -msgstr "Udostępniane zasoby:" +msgstr "" #: lib/rpmchecksig.c:58 #, fuzzy, c-format @@ -2438,9 +2436,9 @@ msgid "" msgstr "" #: lib/rpmds.c:581 -#, fuzzy, c-format +#, c-format msgid " %s A %s\tB %s\n" -msgstr " rpm {--version}" +msgstr "" #. @=branchstate@ #: lib/rpmds.c:605 @@ -2611,7 +2609,7 @@ msgstr "zale #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "zależności pakietu %s nie zostały spełnione: %s\n" +msgstr "pakiet %s jest w konflikcie: %s\n" #: lib/rpmps.c:278 #, fuzzy, c-format @@ -2847,8 +2845,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "nie sprawdzaj plików pakietu" #: lib/signature.c:1073 #, fuzzy @@ -3447,194 +3446,10 @@ msgstr "port musi by msgid "failed to create %s: %s\n" msgstr "utworzenie %s nie powiodło się\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Błędny magic" - -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: readLead nie powiodło się\n" - -#, fuzzy -#~ msgid "removed db file %s\n" -#~ msgstr "usuwanie indeksu plików dla %s\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "błędny status pliku: %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "otwiernie bazę danych w trybie 0x%x w %s\n" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "utworzenie blokady %s na bazie danych nie jest możliwe" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "błąd szukania pakietu %s\n" - -#, fuzzy -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "baza danych jest w starym formacie; użyj --rebuilddb aby wygenerować " -#~ "bazę w nowym formacie" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "nie sprawdzaj plików pakietu" - -#~ msgid "failed dependencies:\n" -#~ msgstr "niespełnione zależności:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "plik %s nie należy do żadnego pakietu\n" - -#~ msgid "(unknown type)" -#~ msgstr "(nieznany typ)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "tryb odpytywania" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "podpisz pakiet (porzuć bierzącą sygnaturę)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "podpisz pakiet (porzuć bierzącą sygnaturę)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "pakiet nie specyfikuje ani nazwy użytkownika ani list id (to nie powinno " -#~ "się zdarzyć)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno się " -#~ "zdarzyć)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "Nowa sygnatura nagłówka\n" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "Nowa sygnatura nagłówka\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "podpisz pakiet (porzuć bierzącą sygnaturę)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "Generowanie sygnatury: %d\n" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "Generowanie sygnatury: %d\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "nie podano nazw plików do usunięcia" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Nie można uruchomić pgp" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Nie można uruchomić gpg" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Nie można uruchomić pgp" - -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "Ten OS nie jest wspierany: %s" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "przesuwanie %s do %s\n" - -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "wyłączanie %s\n" - -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "wyłączanie %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "przesuwanie %s do %s\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "przesuwanie %s do %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "plik %s nie należy do żadnego pakietu\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "pakiet %s jest w konflikcie: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "plik %s nie należy do żadnego pakietu\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db provides)\n" -#~ msgstr "plik %s nie należy do żadnego pakietu\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "plik %s nie należy do żadnego pakietu\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "plik %s: %s\n" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "nie można otworzyć %s/packages.rpm\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "nie można otworzyć %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "dodaj sygnaturę do pakietu" - -#~ msgid "verify package signature" -#~ msgstr "sprawdź sygnaturę pakietu" - -#~ msgid "skip any GPG signatures" -#~ msgstr "pomiń wszelkie sygnatury GPG" - -#~ msgid "skip any PGP signatures" -#~ msgstr "pomiń wszelkie sygnatury PGP" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "nie sprawdzaj sum kontrolnych md5 plików" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów" - -#~ msgid "no packages given for signature check" -#~ msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -4004,6 +3819,9 @@ msgstr "utworzenie %s nie powiod #~ "options as -q" #~ msgstr "sprawdź stan pakietu (używa tych samych opcji co -q)" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "nie sprawdzaj sum kontrolnych md5 plików" + #~ msgid "do not verify file attributes" #~ msgstr "nie sprawdzaj atrybutów plików" @@ -4122,6 +3940,9 @@ msgstr "utworzenie %s nie powiod #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "dodaj sygnaturę do pakietu" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " --checksig + " @@ -4130,6 +3951,12 @@ msgstr "utworzenie %s nie powiod #~ msgid " -K + " #~ msgstr " --resign + " +#~ msgid "skip any PGP signatures" +#~ msgstr "pomiń wszelkie sygnatury PGP" + +#~ msgid "skip any GPG signatures" +#~ msgstr "pomiń wszelkie sygnatury GPG" + #~ msgid "make sure a valid database exists" #~ msgstr "upewnij się, że poprawna baza istnieje" @@ -4184,6 +4011,131 @@ msgstr "utworzenie %s nie powiod #~ "--nomd5 można użyć tylko podczas sprawdzania sygnatury i weryfkiacji " #~ "pakietu" +#~ msgid "no packages given for signature check" +#~ msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury" + +#~ msgid "no packages given for signing" +#~ msgstr "nie podano nazwy pakietu do podpisania" + +#~ msgid "no packages given for uninstall" +#~ msgstr "nie podano nazw plików do usunięcia" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "plik %s nie należy do żadnego pakietu\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "plik %s nie należy do żadnego pakietu\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "plik %s nie należy do żadnego pakietu\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "zależności pakietu %s nie zostały spełnione: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "pakiet %s jest w konflikcie: %s\n" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "tryb odpytywania" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: readLead nie powiodło się\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "nie można otworzyć %s/packages.rpm\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "Generowanie sygnatury: %d\n" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "Generowanie sygnatury: %d\n" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "Ten OS nie jest wspierany: %s" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "przesuwanie %s do %s\n" + +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "wyłączanie %s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "wyłączanie %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "przesuwanie %s do %s\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "przesuwanie %s do %s\n" + +#, fuzzy +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "pakiet nie specyfikuje ani nazwy użytkownika ani list id (to nie powinno " +#~ "się zdarzyć)" + +#, fuzzy +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno się " +#~ "zdarzyć)" + +#, fuzzy +#~ msgid "removed db file %s\n" +#~ msgstr "usuwanie indeksu plików dla %s\n" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "otwiernie bazę danych w trybie 0x%x w %s\n" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "utworzenie blokady %s na bazie danych nie jest możliwe" + +#, fuzzy +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "baza danych jest w starym formacie; użyj --rebuilddb aby wygenerować " +#~ "bazę w nowym formacie" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "błąd szukania pakietu %s\n" + +#~ msgid "(unknown type)" +#~ msgstr "(nieznany typ)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Nie można uruchomić pgp" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Nie można uruchomić gpg" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "Nie można uruchomić pgp. Użyj --nopgp aby pominąć sprawdz. PGP" @@ -4192,6 +4144,10 @@ msgstr "utworzenie %s nie powiod #~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" #~ msgstr "Nie można uruchomić gpg. Użyj --nopgp aby pominąć sprawdz. GPG" +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Nie można uruchomić pgp" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "generuj sygnaturę PGP/GPG" @@ -4691,6 +4647,9 @@ msgstr "utworzenie %s nie powiod #~ msgid "expected size : %d\n" #~ msgstr "oczekiwany rozmiar: %d\n" +#~ msgid "New Header signature\n" +#~ msgstr "Nowa sygnatura nagłówka\n" + #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "nie można użyć ścieżki %s przy przesuwaniu pakietu %s-%s-%s" @@ -4800,6 +4759,10 @@ msgstr "utworzenie %s nie powiod #~ " rpm {--recompile} [--rcfile ] [-v] źródłowy1.rpm ... " #~ "źródłowyN.rpm" +#, fuzzy +#~ msgid " %s {--version}\n" +#~ msgstr " rpm {--version}" + #, fuzzy #~ msgid "" #~ " %s {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]\n" @@ -4818,9 +4781,6 @@ msgstr "utworzenie %s nie powiod #~ msgid " [--sign] [--nobuild] ]" #~ msgstr " [--sign] [--nobuild] [--timecheck ] ]" -#~ msgid "query package owning file" -#~ msgstr "sprawdzanie do jakiego pakietu należy plik" - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "nie można otworzyć %s/packages.rpm\n" diff --git a/po/pt.po b/po/pt.po index 64af9daad..4463c662e 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,61 +1,62 @@ msgid "" msgstr "" -"Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-03-16 13:35-0500\n" -"PO-Revision-Date: 2000-06-22 01:13+01:00\n" -"Last-Translator: José Nuno Coelho Sanarra Pires\n" -"Language-Team: pt \n" +"Project-Id-Version: rpm\n" +"POT-Creation-Date: 2002-05-28 12:01-0400\n" +"PO-Revision-Date: 2002-02-14 10:51+0000\n" +"Last-Translator: José Nuno Coelho Sanarra Pires \n" +"Language-Team: pt with value " msgstr "define a macro com o valor " -#: rpmqv.c:116 +#: rpmqv.c:120 msgid "' '" msgstr "' '" -#: rpmqv.c:118 +#: rpmqv.c:122 msgid "print macro expansion of +" msgstr "imprimir a expansăo da macro +" -#: rpmqv.c:119 +#: rpmqv.c:123 msgid "+" msgstr "+" -#: rpmqv.c:121 +#: rpmqv.c:125 msgid "send stdout to " msgstr "manda o stdout para " -#: rpmqv.c:122 +#: rpmqv.c:126 msgid "" msgstr "" -#: rpmqv.c:124 +#: rpmqv.c:128 msgid "use as the top level directory" msgstr "usa como a directoria de topo" -#: lib/poptI.c:215 rpmqv.c:125 +#: rpmqv.c:129 lib/poptI.c:215 msgid "" msgstr "" -#: rpmqv.c:127 +#: rpmqv.c:131 msgid "read instead of default macro file(s)" msgstr "ler o em vez do(s) ficheiro(s) de macros por omissăo" -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 msgid "" msgstr "" -#: rpmqv.c:131 rpmqv.c:135 +#: rpmqv.c:135 rpmqv.c:139 msgid "read instead of default rpmrc file(s)" msgstr "ler o em vez do(s) ficheiro(s) rpmrc por omissăo" -#: rpmqv.c:139 +#: rpmqv.c:143 msgid "display final rpmrc and macro configuration" msgstr "mostra a configuraçăo final do rpmrc e das macros" -#: rpmqv.c:144 +#: rpmqv.c:148 msgid "disable use of libio(3) API" msgstr "desactivar o uso da API da libio(3)" -#: rpmqv.c:147 +#: rpmqv.c:151 msgid "debug protocol data stream" msgstr "depurar a sequęncia de dados do protocolo" -#: rpmqv.c:149 +#: rpmqv.c:153 msgid "debug rpmio I/O" msgstr "depurar a E/S da rpmio" -#: rpmqv.c:151 +#: rpmqv.c:155 msgid "debug URL cache handling" msgstr "depurar a gestăo da 'cache' de URLs" -#: rpmqv.c:171 +#: rpmqv.c:175 msgid "Query options (with -q or --query):" msgstr "Opçőes de pesquisa (com o -q ou o --query):" -#: rpmqv.c:174 +#: rpmqv.c:178 msgid "Verify options (with -V or --verify):" msgstr "Opçőes de verificaçăo (com o -V ou o --verify):" -#: rpmqv.c:180 +#: rpmqv.c:184 msgid "Signature options:" msgstr "Opçőes de assinatura:" -#: rpmqv.c:186 +#: rpmqv.c:190 msgid "Database options:" msgstr "Opçőes da base de dados:" -#: rpmqv.c:192 +#: rpmqv.c:196 msgid "Build options with [ | | ]:" msgstr "Opçőes de criaçăo com [ | | ]:" -#: rpmqv.c:198 +#: rpmqv.c:202 msgid "Install/Upgrade/Erase options:" -msgstr "" +msgstr "Opçőes de Instalaçăo/Actualizaçăo/Remoçăo:" -#: rpmqv.c:203 +#: rpmqv.c:207 msgid "Common options for all rpm modes:" msgstr "Opçőes comuns para todos os modos do rpm:" #. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, fuzzy, c-format +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format msgid "%s: %s\n" -msgstr "ficheiro %s: %s\n" +msgstr "%s: %s\n" -#: rpmqv.c:228 +#: rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "RPM versăo %s\n" -#: rpmqv.c:235 +#: rpmqv.c:239 #, fuzzy msgid "Copyright (C) 1998-2002 - Red Hat, Inc." msgstr "Copyright (C) 1998-2000 - Red Hat, Inc." -#: rpmqv.c:236 +#: rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" -msgstr "Este programa pode ser distribuído livremente sob os termos da GPL da GNU" +msgstr "" +"Este programa pode ser distribuído livremente sob os termos da GPL da GNU" -#: rpmqv.c:248 +#: rpmqv.c:252 #, c-format msgid "Usage: %s {--help}\n" msgstr "Utilizaçăo: %s {--help}\n" -#: rpmqv.c:593 +#: rpmqv.c:605 msgid "The --rcfile option has been eliminated.\n" msgstr "A opçăo --rcfile foi eliminada.\n" -#: rpmqv.c:594 +#: rpmqv.c:606 msgid "Use \"--macros \" instead.\n" msgstr "Usar o \"--macros \" em alternativa.\n" -#: rpmqv.c:600 +#: rpmqv.c:612 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "Erro interno no processamento de argumentos (%d) :-(\n" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 +#: rpmqv.c:653 rpmqv.c:659 rpmqv.c:665 rpmqv.c:703 msgid "only one major mode may be specified" msgstr "só pode ser especificado um 'major mode'" -#: rpmqv.c:670 +#: rpmqv.c:682 msgid "one type of query/verify may be performed at a time" msgstr "só pode ser realizado um tipo de pesquisa/verificaçăo de cada vez" -#: rpmqv.c:674 +#: rpmqv.c:686 msgid "unexpected query flags" msgstr "opçőes de pesquisa inesperadas" -#: rpmqv.c:677 +#: rpmqv.c:689 msgid "unexpected query format" msgstr "formato de pesquisa inesperado" -#: rpmqv.c:680 +#: rpmqv.c:692 msgid "unexpected query source" msgstr "origem de pesquisa inesperada" -#: rpmqv.c:721 +#: rpmqv.c:733 msgid "--dbpath given for operation that does not use a database" msgstr "o --dbpath foi usado numa operaçăo que năo precisa duma base de dados" -#: rpmqv.c:727 +#: rpmqv.c:739 msgid "only installation, upgrading, rmsource and rmspec may be forced" -msgstr "só a instalaçăo, a actualizaçăo, o rmsource e o rmpspec podem ser forçados" +msgstr "" +"só a instalaçăo, a actualizaçăo, o rmsource e o rmpspec podem ser forçados" -#: rpmqv.c:729 +#: rpmqv.c:741 msgid "files may only be relocated during package installation" -msgstr "os ficheiros só podem ser mudados de sítio durante a instalaçăo do pacote" +msgstr "" +"os ficheiros só podem ser mudados de sítio durante a instalaçăo do pacote" -#: rpmqv.c:732 +#: rpmqv.c:744 msgid "only one of --prefix or --relocate may be used" msgstr "só uma das opçőes --prefix ou --relocate pode ser usada" -#: rpmqv.c:735 +#: rpmqv.c:747 msgid "" "--relocate and --excludepath may only be used when installing new packages" -msgstr "o --relocate e o --excludepath só podem ser usados ao instalar pacotes novos" +msgstr "" +"o --relocate e o --excludepath só podem ser usados ao instalar pacotes novos" -#: rpmqv.c:738 +#: rpmqv.c:750 msgid "--prefix may only be used when installing new packages" msgstr "o --prefix só pode ser usado ao instalar pacotes novos" -#: rpmqv.c:741 +#: rpmqv.c:753 msgid "arguments to --prefix must begin with a /" msgstr "os argumentos do --prefix tęm de começar por /" -#: rpmqv.c:744 +#: rpmqv.c:756 msgid "--hash (-h) may only be specified during package installation" msgstr "o --hash (-h) só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:748 +#: rpmqv.c:760 msgid "--percent may only be specified during package installation" msgstr "o --percent só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:753 +#: rpmqv.c:765 msgid "--replacefiles may only be specified during package installation" msgstr "o --replacefiles só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:757 +#: rpmqv.c:769 msgid "--replacepkgs may only be specified during package installation" msgstr "o --replacepkgs só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:761 +#: rpmqv.c:773 msgid "--excludedocs may only be specified during package installation" msgstr "o --excludedocs só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:765 +#: rpmqv.c:777 msgid "--includedocs may only be specified during package installation" msgstr "o --includedocs só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:769 +#: rpmqv.c:781 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "só uma das opçőes --excludedocs e --includedocs pode ser usada" -#: rpmqv.c:773 +#: rpmqv.c:785 msgid "--ignorearch may only be specified during package installation" msgstr "o --ignorearch só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:777 +#: rpmqv.c:789 msgid "--ignoreos may only be specified during package installation" msgstr "o --ignoreos só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:782 +#: rpmqv.c:794 msgid "--ignoresize may only be specified during package installation" msgstr "o --ignoresize só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:786 +#: rpmqv.c:798 msgid "--allmatches may only be specified during package erasure" msgstr "o --allmatches só pode ser indicado ao apagar o pacote" -#: rpmqv.c:790 +#: rpmqv.c:802 msgid "--allfiles may only be specified during package installation" msgstr "o --allfiles só pode ser indicado durante a instalaçăo do pacote" -#: rpmqv.c:795 +#: rpmqv.c:807 msgid "--justdb may only be specified during package installation and erasure" -msgstr "o --justdb só pode ser indicado durante a instalaçăo ou a remoçăo do pacote" +msgstr "" +"o --justdb só pode ser indicado durante a instalaçăo ou a remoçăo do pacote" -#: rpmqv.c:800 -#, fuzzy +#: rpmqv.c:812 msgid "" "script disabling options may only be specified during package installation " "and erasure" -msgstr "o --justdb só pode ser indicado durante a instalaçăo ou a remoçăo do pacote" +msgstr "" +"a desactivaçăo de 'scripts' só pode ser indicado durante a instalaçăo ou a " +"remoçăo de pacotes" -#: rpmqv.c:805 -#, fuzzy +#: rpmqv.c:817 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" -msgstr "o --notriggers só pode ser usado durante a instalaçăo ou remoçăo do pacote" +msgstr "" +"a desactivaçăo dos 'triggers' só pode ser usado durante a instalaçăo ou " +"remoçăo de pacotes" -#: rpmqv.c:809 +#: rpmqv.c:821 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" -msgstr "o --nodeps só pode ser indicado durante a criaçăo, reconstruçăo, recompilaçăo, instalaçăo, remoçăo ou verificaçăo do pacote" +msgstr "" +"o --nodeps só pode ser indicado durante a criaçăo, reconstruçăo, " +"recompilaçăo, instalaçăo, remoçăo ou verificaçăo do pacote" -#: rpmqv.c:814 +#: rpmqv.c:826 msgid "" "--test may only be specified during package installation, erasure, and " "building" -msgstr "o --test só pode ser indicado durante a instalaçăo, remoçăo ou criaçăo do pacote" +msgstr "" +"o --test só pode ser indicado durante a instalaçăo, remoçăo ou criaçăo do " +"pacote" -#: rpmqv.c:819 +#: rpmqv.c:831 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" -msgstr "o --root (-r) só pode ser indicado durante a instalaçăo, remoçăo ou pesquisa do pacote ou na reconstruçăo da base de dados" +msgstr "" +"o --root (-r) só pode ser indicado durante a instalaçăo, remoçăo ou pesquisa " +"do pacote ou na reconstruçăo da base de dados" -#: rpmqv.c:831 +#: rpmqv.c:843 msgid "arguments to --root (-r) must begin with a /" msgstr "os argumentos do --root (-r) tęm de começar por /" -#: rpmqv.c:855 +#: rpmqv.c:867 msgid "no files to sign\n" msgstr "năo existem ficheiros a assinar\n" -#: rpmqv.c:860 +#: rpmqv.c:872 #, c-format msgid "cannot access file %s\n" msgstr "năo consigo aceder ao ficheiro %s\n" -#: rpmqv.c:879 +#: rpmqv.c:891 msgid "pgp not found: " msgstr "pgp năo encontrado: " -#: rpmqv.c:884 +#: rpmqv.c:896 msgid "Enter pass phrase: " msgstr "Indique a palavra-chave: " -#: rpmqv.c:886 +#: rpmqv.c:898 msgid "Pass phrase check failed\n" msgstr "A verificaçăo da palavra-chave falhou\n" -#: rpmqv.c:890 +#: rpmqv.c:902 msgid "Pass phrase is good.\n" msgstr "A palavra-chave está correcta.\n" -#: rpmqv.c:895 +#: rpmqv.c:907 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "Spec %%_signature inválido no ficheiro de macros.\n" -#: rpmqv.c:902 +#: rpmqv.c:914 msgid "--sign may only be used during package building" msgstr "o --sign só pode ser usado na criaçăo do pacote" -#: rpmqv.c:919 +#: rpmqv.c:931 msgid "exec failed\n" msgstr "o exec falhou\n" -#: rpmqv.c:951 +#: rpmqv.c:964 msgid "no packages files given for rebuild" msgstr "năo foram indicados pacotes para a reconstruçăo" -#: rpmqv.c:1019 +#: rpmqv.c:1032 msgid "no spec files given for build" msgstr "năo foram indicados ficheiros spec para a criaçăo" -#: rpmqv.c:1021 +#: rpmqv.c:1034 msgid "no tar files given for build" msgstr "năo foram indicados ficheiros tar para a criaçăo" -#: rpmqv.c:1043 -#, fuzzy +#: rpmqv.c:1056 msgid "no packages given for erase" -msgstr "năo foram indicados pacotes para assinar" +msgstr "năo foram indicados pacotes para apagar" -#: rpmqv.c:1084 +#: rpmqv.c:1097 msgid "no packages given for install" msgstr "năo foram indicados pacotes para instalar" -#: rpmqv.c:1100 +#: rpmqv.c:1113 msgid "no arguments given for query" msgstr "năo foram indicados argumentos para a pesquisa" -#: rpmqv.c:1113 +#: rpmqv.c:1126 msgid "no arguments given for verify" msgstr "năo foram indicados argumentos para a verificaçăo" -#: rpmqv.c:1121 +#: rpmqv.c:1134 msgid "unexpected arguments to --querytags " msgstr "argumentos inesperados no --querytags " -#: rpmqv.c:1137 +#: rpmqv.c:1150 #, fuzzy msgid "no arguments given" msgstr "năo foram indicados argumentos para a pesquisa" -#: build/build.c:125 build/pack.c:483 +#: build/build.c:125 build/pack.c:492 msgid "Unable to open temp file.\n" msgstr "Năo consegui abrir um ficheiro temporário.\n" @@ -506,180 +519,180 @@ msgstr "&& e || n msgid "syntax error in expression\n" msgstr "erro de sintaxe na expressăo\n" -#: build/files.c:271 +#: build/files.c:279 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "Falha no TIMECHECK: %s\n" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:341 build/files.c:537 build/files.c:726 #, c-format msgid "Missing '(' in %s %s\n" msgstr "Falta um '(' em %s %s\n" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:352 build/files.c:665 build/files.c:737 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "Falta um ')' em %s(%s\n" -#: build/files.c:379 build/files.c:672 +#: build/files.c:390 build/files.c:690 #, c-format msgid "Invalid %s token: %s\n" msgstr "Elemento %s inválido: %s\n" -#: build/files.c:485 -#, fuzzy, c-format +#: build/files.c:498 +#, c-format msgid "Missing %s in %s %s\n" -msgstr "Falta um '(' em %s %s\n" +msgstr "Falta um %s em %s %s\n" -#: build/files.c:538 +#: build/files.c:553 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "Carácter sem ser espaço a seguir a %s(): %s\n" -#: build/files.c:576 +#: build/files.c:591 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "Sintaxe inválida: %s(%s)\n" -#: build/files.c:586 +#: build/files.c:601 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "Spec de modo inválido: %s(%s)\n" -#: build/files.c:598 +#: build/files.c:613 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "Spec de dirmode inválido: %s(%s)\n" -#: build/files.c:743 +#: build/files.c:764 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "Tamanho anormal do locale: \"%.*s\" no %%lang(%s)\n" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:775 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "Locale %.*s duplicado no %%lang(%s)\n" -#: build/files.c:905 +#: build/files.c:932 #, c-format msgid "Hit limit for %%docdir\n" msgstr "Limite atingido para o %%docdir\n" -#: build/files.c:911 +#: build/files.c:938 #, c-format msgid "Only one arg for %%docdir\n" msgstr "Só um argumento no %%docdir\n" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:966 #, c-format msgid "Two files on one line: %s\n" msgstr "Dois ficheiros na mesma linha: %s\n" -#: build/files.c:954 +#: build/files.c:981 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "O ficheiro tem de começar por \"/\": %s\n" -#: build/files.c:967 +#: build/files.c:994 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "Năo é possível misturar o %%doc especial com outras formas: %s\n" -#: build/files.c:1110 +#: build/files.c:1145 #, c-format msgid "File listed twice: %s\n" msgstr "Ficheiro listado duas vezes: %s\n" -#: build/files.c:1254 +#: build/files.c:1289 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "A 'symlink' aponta para a BuildRoot: %s -> %s\n" -#: build/files.c:1491 +#: build/files.c:1531 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "O ficheiro năo corresponde ao prefixo (%s): %s\n" -#: build/files.c:1515 +#: build/files.c:1555 #, c-format msgid "File not found: %s\n" msgstr "Ficheiro năo encontrado: %s\n" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1598 build/files.c:2218 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "Dono/grupo inválido: %s\n" -#: build/files.c:1571 -#, fuzzy, c-format +#: build/files.c:1611 +#, c-format msgid "File%5d: %07o %s.%s\t %s\n" -msgstr "Ficheiro: %4d: %07o %s.%s\t %s\n" +msgstr "Ficheiro%5d: %07o %s.%s\t %s\n" -#: build/files.c:1676 +#: build/files.c:1720 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "O ficheiro precisa de começar por \"/\": %s\n" -#: build/files.c:1699 -#, fuzzy, c-format +#: build/files.c:1743 +#, c-format msgid "Glob not permitted: %s\n" -msgstr "linha %d: Nome do ficheiro năo permitido: %s\n" +msgstr "Glob năo permitido: %s\n" -#: build/files.c:1714 +#: build/files.c:1758 #, c-format msgid "File not found by glob: %s\n" msgstr "Ficheiro năo encontrado pelo glob: %s\n" -#: build/files.c:1776 +#: build/files.c:1820 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "Năo consegui abrir o ficheiro do %%files %s: %s\n" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1831 build/pack.c:155 #, c-format msgid "line: %s\n" msgstr "linha: %s\n" -#: build/files.c:2162 +#: build/files.c:2206 #, c-format msgid "Bad file: %s: %s\n" msgstr "Ficheiro inválido: %s: %s\n" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2280 #, c-format msgid "Couldn't exec %s: %s\n" -msgstr "Năo consegui executar o %s: %S\n" +msgstr "Năo consegui executar o %s: %s\n" -#: build/files.c:2241 +#: build/files.c:2285 #, c-format msgid "Couldn't fork %s: %s\n" -msgstr "Năo consegui executar ŕ parte o %s: &s\n" +msgstr "Năo consegui executar ŕ parte o %s: %s\n" -#: build/files.c:2325 +#: build/files.c:2369 #, c-format msgid "%s failed\n" msgstr "O %s falhou\n" -#: build/files.c:2329 +#: build/files.c:2373 #, c-format msgid "failed to write all data to %s\n" msgstr "năo consegui escrever todos os dados em %s\n" -#: build/files.c:2485 +#: build/files.c:2529 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "A procurar o %s: (usando o %s)...\n" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2558 build/files.c:2572 #, c-format msgid "Failed to find %s:\n" msgstr "Năo consegui encontrar o %s:\n" -#: build/files.c:2650 +#: build/files.c:2694 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "A processar os ficheiros: %s-%s-%s\n" @@ -693,9 +706,8 @@ msgid "getUnameS: too many uid's\n" msgstr "getUnameS: demasiados uid's\n" #: build/names.c:95 -#, fuzzy msgid "getUidS: too many uid's\n" -msgstr "getUnameS: demasiados uid's\n" +msgstr "getUidS: demasiados uid's\n" #: build/names.c:117 msgid "getGname: too many gid's\n" @@ -706,165 +718,162 @@ msgid "getGnameS: too many gid's\n" msgstr "getGnameS: demasiados gid's\n" #: build/names.c:161 -#, fuzzy msgid "getGidS: too many gid's\n" -msgstr "getGnameS: demasiados gid's\n" +msgstr "getGidS: demasiados gid's\n" #: build/names.c:196 #, c-format msgid "Could not canonicalize hostname: %s\n" msgstr "Năo consegui canonizar o nome da máquina: %s\n" -#: build/pack.c:79 +#: build/pack.c:88 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "a criaçăo do pacote falhou no ficheiro %s: %s\n" -#: build/pack.c:82 -#, fuzzy, c-format +#: build/pack.c:91 +#, c-format msgid "create archive failed: %s\n" -msgstr "a criaçăo do pacote falhou no ficheiro %s: %s\n" +msgstr "a criaçăo do arquivo falhou: %s\n" -#: build/pack.c:104 +#: build/pack.c:113 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "a escrita do cpio_copy falhou: %s\n" -#: build/pack.c:111 +#: build/pack.c:120 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "a leitura do cpio_copy falhou: %s\n" -#: build/pack.c:214 +#: build/pack.c:223 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "Năo consegui abrir o ficheiro PreIn: %s\n" -#: build/pack.c:221 +#: build/pack.c:230 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "Năo consegui abrir o ficheiro PreUn: %s\n" -#: build/pack.c:228 +#: build/pack.c:237 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "Năo consegui abrir o ficheiro PostIn: %s\n" -#: build/pack.c:235 +#: build/pack.c:244 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "Năo consegui abrir o ficheiro PostUn: %s\n" -#: build/pack.c:243 +#: build/pack.c:252 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "Năo consegui abrir o ficheiro VerifyScript: %s\n" -#: build/pack.c:258 +#: build/pack.c:267 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "Năo consegui aceder ao 'script' Trigger: %s\n" -#: build/pack.c:286 +#: build/pack.c:295 #, c-format msgid "readRPM: open %s: %s\n" msgstr "readRPM: aceder ao %s: %s\n" -#: build/pack.c:296 +#: build/pack.c:305 #, c-format msgid "readRPM: read %s: %s\n" msgstr "readRPM: ler o %s: %s\n" -#: build/pack.c:305 build/pack.c:529 -#, fuzzy, c-format +#: build/pack.c:314 build/pack.c:538 +#, c-format msgid "%s: Fseek failed: %s\n" -msgstr "%s: O fread falhou: %s\n" +msgstr "%s: O Fseek falhou: %s\n" -#: build/pack.c:333 +#: build/pack.c:342 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "readRPM: o %s năo é um pacote RPM\n" -#: build/pack.c:342 +#: build/pack.c:351 #, c-format msgid "readRPM: reading header from %s\n" msgstr "readRPM: a ler o cabeçalho do %s\n" -#: build/pack.c:471 -#, fuzzy +#: build/pack.c:480 msgid "Unable to create immutable header region.\n" -msgstr "Năo consegui ler o cabeçalho de %s: %s\n" +msgstr "Năo consegui criar regiăo imutável do cabeçalho.\n" -#: build/pack.c:490 -#, fuzzy +#: build/pack.c:499 msgid "Unable to write temp header\n" -msgstr "Năo consegui gravar o cabeçalho de %s: %s\n" +msgstr "" +"Năo consegui gravar o cabeçalho temporário\n" +"\n" -#: build/pack.c:500 +#: build/pack.c:509 msgid "Bad CSA data\n" msgstr "Dados de CSA inválidos\n" -#: build/pack.c:536 -#, fuzzy +#: build/pack.c:545 msgid "Unable to write final header\n" -msgstr "Năo consegui gravar o cabeçalho de %s: %s\n" +msgstr "Năo consegui gravar o cabeçalho final\n" -#: build/pack.c:556 +#: build/pack.c:565 #, c-format msgid "Generating signature: %d\n" msgstr "A gerar a assinatura: %d\n" -#: build/pack.c:574 -#, fuzzy +#: build/pack.c:583 msgid "Unable to reload signature header.\n" -msgstr "Năo consegui ler o cabeçalho de %s: %s\n" +msgstr "Năo consegui reler o cabeçalho do assinatura.\n" -#: build/pack.c:582 +#: build/pack.c:591 #, c-format msgid "Could not open %s: %s\n" msgstr "Năo consigo aceder ao %s: %s\n" -#: build/pack.c:618 lib/psm.c:1437 +#: build/pack.c:627 lib/psm.c:1463 #, c-format msgid "Unable to write package: %s\n" msgstr "Năo consegui gravar o pacote: %s\n" -#: build/pack.c:633 +#: build/pack.c:642 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "Năo consegui abrir o sigtarget %s: %s\n" -#: build/pack.c:644 +#: build/pack.c:653 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "Năo consegui ler o cabeçalho de %s: %s\n" -#: build/pack.c:658 +#: build/pack.c:667 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "Năo consegui gravar o cabeçalho de %s: %s\n" -#: build/pack.c:668 +#: build/pack.c:677 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "Năo consegui ler o conteúdo de %s: %s\n" -#: build/pack.c:674 +#: build/pack.c:683 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "Năo consegui escrever o conteúdo de %s: %s\n" -#: build/pack.c:699 lib/psm.c:1718 +#: build/pack.c:708 lib/psm.c:1753 #, c-format msgid "Wrote: %s\n" msgstr "Gravei: %s\n" -#: build/pack.c:766 +#: build/pack.c:775 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "Năo consigo gerar o ficheiro de saída para o pacote %s: %s\n" -#: build/pack.c:783 +#: build/pack.c:792 #, c-format msgid "cannot create %s: %s\n" msgstr "năo consigo criar o %s: %s\n" @@ -890,7 +899,7 @@ msgid "bad date in %%changelog: %s\n" msgstr "data inválida no %%changelog: %s\n" #: build/parseChangelog.c:155 -#, fuzzy, c-format +#, c-format msgid "%%changelog not in descending chronological order\n" msgstr "O %%changelog năo está na ordem cronológica descendente\n" @@ -985,9 +994,9 @@ msgid "Unknown icon type: %s\n" msgstr "Tipo de ícone desconhecido: %s\n" #: build/parsePreamble.c:434 -#, fuzzy, c-format +#, c-format msgid "line %d: Tag takes single token only: %s\n" -msgstr "linha %d: Opçăo inválida %s: %s\n" +msgstr "linha %d: Opçăo só recebe um parâmetro: %s\n" #: build/parsePreamble.c:474 #, c-format @@ -1085,9 +1094,9 @@ msgid "Error parsing %%setup: %s\n" msgstr "Erro ao analisar o %%setup: %s\n" #: build/parsePrep.c:318 -#, fuzzy, c-format +#, c-format msgid "line %d: Bad arg to %%setup: %s\n" -msgstr "linha %d: Argumento inválido do %%setup %c: %s\n" +msgstr "linha %d: Argumento inválido para %%setup: %s\n" #: build/parsePrep.c:336 #, c-format @@ -1132,7 +1141,9 @@ msgstr "linha %d: segundo %%prep\n" #, c-format msgid "" "line %d: Dependency tokens must begin with alpha-numeric, '_' or '/': %s\n" -msgstr "linha %d: Os elementos de dependęncias tęm de começar por alfanuméricos, '_' ou '/': %s\n" +msgstr "" +"linha %d: Os elementos de dependęncias tęm de começar por alfanuméricos, '_' " +"ou '/': %s\n" #: build/parseReqs.c:112 #, c-format @@ -1206,9 +1217,8 @@ msgid "malformed %%include statement\n" msgstr "instruçăo %%include desorganizada\n" #: build/parseSpec.c:529 -#, fuzzy msgid "No compatible architectures found for build\n" -msgstr "Năo foram indicadas arquitecturas para as quais criar\n" +msgstr "Năo foram encontradas arquitecturas compatíveis para as quais criar\n" #: build/parseSpec.c:587 #, c-format @@ -1223,7 +1233,9 @@ msgstr "O buildroot j #: build/poptBT.c:146 #, c-format msgid "build through %prep (unpack sources and apply patches) from " -msgstr "criar através do %prep (desempacotar o código e aplicar patches) do " +msgstr "" +"criar através do %prep (desempacotar o código e aplicar patches) do " +"" #: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 #: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 @@ -1236,7 +1248,8 @@ msgstr "criar atrav #: build/poptBT.c:152 msgid "build through %install (%prep, %build, then install) from " -msgstr "criar através do %install (%prep, %build e depois instalar) do " +msgstr "" +"criar através do %install (%prep, %build e depois instalar) do " #: build/poptBT.c:155 #, c-format @@ -1258,7 +1271,8 @@ msgstr "criar s #: build/poptBT.c:168 #, c-format msgid "build through %prep (unpack sources and apply patches) from " -msgstr "criar através do %prep (desempacotar o código e aplicar patches) do " +msgstr "" +"criar através do %prep (desempacotar o código e aplicar patches) do " #: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 #: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 @@ -1271,7 +1285,8 @@ msgstr "criar atrav #: build/poptBT.c:174 msgid "build through %install (%prep, %build, then install) from " -msgstr "criar através do %install (%prep, %build e depois instalar) do " +msgstr "" +"criar através do %install (%prep, %build e depois instalar) do " #: build/poptBT.c:177 #, c-format @@ -1301,7 +1316,9 @@ msgstr "" -msgstr "criar através do %install (%prep, %build e depois instalar) do " +msgstr "" +"criar através do %install (%prep, %build e depois instalar) do " #: build/poptBT.c:197 msgid "override build root" @@ -1321,16 +1338,15 @@ msgstr "ignorar as directivas ExcludeArch: do ficheiro spec" #: build/poptBT.c:205 msgid "debug file state machine" -msgstr "" +msgstr "depurar máquina de estados de ficheiros" #: build/poptBT.c:207 msgid "do not execute any stages of the build" msgstr "năo executar nenhuma etapa da criaçăo" #: build/poptBT.c:209 -#, fuzzy msgid "do not verify build dependencies" -msgstr "năo verifica as dependęncias do pacote" +msgstr "năo verificar as dependęncias de compilaçăo" #: build/poptBT.c:211 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" @@ -1364,169 +1380,153 @@ msgstr "ignorar a plataforma-alvo" msgid "lookup i18N strings in specfile catalog" msgstr "procurar as mensagens de i18N no catálogo do ficheiro spec" -#: build/spec.c:232 +#: build/spec.c:235 #, c-format msgid "line %d: Bad number: %s\n" msgstr "linha %d: Número inválido: %s\n" -#: build/spec.c:238 +#: build/spec.c:241 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "linha %d: Número no%s inválido: %d\n" -#: build/spec.c:299 +#: build/spec.c:302 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "linha %d: Número %s inválido: %s\n" -#: lib/cpio.c:187 +#: lib/cpio.c:192 #, c-format msgid "(error 0x%x)" msgstr "(erro 0x%x)" -#: lib/cpio.c:190 +#: lib/cpio.c:195 msgid "Bad magic" msgstr "Código de integridade inválido" -#: lib/cpio.c:191 +#: lib/cpio.c:196 msgid "Bad/unreadable header" msgstr "Cabeçalho inválido/ilegível" -#: lib/cpio.c:212 +#: lib/cpio.c:217 msgid "Header size too big" msgstr "Tamanho do cabeçalho demasiado grande" -#: lib/cpio.c:213 +#: lib/cpio.c:218 msgid "Unknown file type" msgstr "Tipo de ficheiro desconhecido" -#: lib/cpio.c:214 -#, fuzzy +#: lib/cpio.c:219 msgid "Missing hard link(s)" -msgstr "Falta o 'hard link'" +msgstr "Falta(m) o(s) 'hard link(s)'" -#: lib/cpio.c:215 +#: lib/cpio.c:220 msgid "MD5 sum mismatch" msgstr "erro na soma de MD5" -#: lib/cpio.c:216 +#: lib/cpio.c:221 msgid "Internal error" msgstr "Erro interno" -#: lib/cpio.c:217 +#: lib/cpio.c:222 msgid "Archive file not in header" -msgstr "" +msgstr "Ficheiro de arquivo năo está no cabeçalho" -#: lib/cpio.c:228 +#: lib/cpio.c:233 msgid " failed - " msgstr " falhou - " -#: lib/depends.c:149 +#: lib/depends.c:160 #, fuzzy, c-format msgid "package %s was already added, replacing with %s\n" msgstr "o pacote %s já está instalado" -#: lib/depends.c:363 +#: lib/depends.c:391 msgid "(cached)" msgstr "" -#: lib/depends.c:388 +#: lib/depends.c:416 #, fuzzy msgid "(rpmrc provides)" msgstr "%s: %-45s SIM (oferecidos pelo rpmrc)\n" -#: lib/depends.c:404 +#: lib/depends.c:432 #, fuzzy msgid "(rpmlib provides)" msgstr "%s: %-45s SIM (oferecidos pela rpmlib)\n" -#: lib/depends.c:425 +#: lib/depends.c:453 #, fuzzy msgid "(db files)" msgstr "ficheiro db inválido %s\n" -#: lib/depends.c:437 +#: lib/depends.c:465 #, fuzzy msgid "(db provides)" msgstr "%s: %-45s SI (oferecidos pelo db)\n" -#: lib/depends.c:450 +#: lib/depends.c:478 #, fuzzy msgid "(db package)" msgstr "nenhum pacote\n" -#: lib/depends.c:489 -#, fuzzy, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "%s: (%s, %s) adicionado ŕ cache de dependęncias.\n" - -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 -#, fuzzy -msgid "NO " -msgstr "NĂO-OK" - -#: lib/depends.c:491 lib/rpmds.c:410 lib/rpmds.c:569 -msgid "YES" -msgstr "" - -#: lib/depends.c:759 +#: lib/depends.c:817 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" -msgstr "" +msgstr "ignorar relaçőes entre o nome do pacote [%d]\t%s -> %s\n" -#: lib/depends.c:878 +#: lib/depends.c:937 #, fuzzy, c-format msgid "removing %s \"%s\" from tsort relations.\n" msgstr "a remover o %s-%s-%s \"%s\" das relaçőes do tsort.\n" #. Record all relations. -#: lib/depends.c:1146 +#: lib/depends.c:1207 msgid "========== recording tsort relations\n" msgstr "=========== a guardar as relaçőes do tsort\n" #. T4. Scan for zeroes. -#: lib/depends.c:1252 +#: lib/depends.c:1313 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" +"========== ordenar pacotes (order, #predecessors, #succesors, tree, depth)\n" -#: lib/depends.c:1345 +#: lib/depends.c:1406 msgid "========== successors only (presentation order)\n" msgstr "========== só os sucessores (ordem de apresentaçăo)\n" -#: lib/depends.c:1415 +#: lib/depends.c:1476 msgid "LOOP:\n" msgstr "CICLO:\n" -#: lib/depends.c:1450 +#: lib/depends.c:1511 msgid "========== continuing tsort ...\n" msgstr "========== a prosseguir o tsort ...\n" #. Return no. of packages that could not be ordered. -#: lib/depends.c:1455 +#: lib/depends.c:1516 #, c-format -msgid "rpmdepOrder failed, %d elements remain\n" +msgid "rpmtsOrder failed, %d elements remain\n" msgstr "" #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033 msgid "(not a number)" msgstr "(năo é um número)" #: lib/formats.c:139 -#, fuzzy msgid "(not base64)" -msgstr "(năo é um número)" +msgstr "(năo é um base64)" #: lib/formats.c:149 msgid "(invalid type)" -msgstr "" +msgstr "(tipo inválido)" #: lib/formats.c:211 lib/formats.c:256 -#, fuzzy msgid "(not a blob)" -msgstr "(năo é um número)" +msgstr "(năo é um blob)" #: lib/fs.c:75 #, c-format @@ -1543,7 +1543,7 @@ msgstr "o mntctl() falhou ao devolver o n msgid "failed to stat %s: %s\n" msgstr "Năo consegui analisar o %s: %s\n" -#: lib/fs.c:153 rpmio/url.c:509 +#: lib/fs.c:153 rpmio/url.c:508 #, c-format msgid "failed to open %s: %s\n" msgstr "falhei ao aceder ao %s: %s\n" @@ -1553,46 +1553,49 @@ msgstr "falhei ao aceder ao %s: %s\n" msgid "file %s is on an unknown device\n" msgstr "o ficheiro %s está num dispositivo desconhecido\n" -#: lib/fsm.c:308 +#: lib/fsm.c:321 +#, fuzzy msgid "========== Directories not explictly included in package:\n" -msgstr "" +msgstr "========= Directorias năo incluidas explicitamente no pacote:\n" -#: lib/fsm.c:310 +#: lib/fsm.c:323 #, fuzzy, c-format msgid "%10d %s\n" -msgstr "linha %d: %s\n" +msgstr "%9d %s\n" -#: lib/fsm.c:1191 +#: lib/fsm.c:1198 #, c-format msgid "%s directory created with perms %04o.\n" -msgstr "" +msgstr "directoria %s criada com as permissőes %04o.\n" -#: lib/fsm.c:1476 +#: lib/fsm.c:1489 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" +"o ficheiro de arquivo %s năo foi encontrado na lista de ficheiros do " +"cabeçalho\n" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1612 lib/fsm.c:1738 #, c-format msgid "%s saved as %s\n" msgstr "%s gravado como %s\n" -#: lib/fsm.c:1753 -#, fuzzy, c-format +#: lib/fsm.c:1764 +#, c-format msgid "%s rmdir of %s failed: Directory not empty\n" -msgstr "năo consigo remover a %s - a directoria năo está vazia\n" +msgstr "%s rmdir de %s falhou: Directoria năo está vazia\n" -#: lib/fsm.c:1759 -#, fuzzy, c-format +#: lib/fsm.c:1770 +#, c-format msgid "%s rmdir of %s failed: %s\n" -msgstr "o rmdir da %s falhou: %s\n" +msgstr "%s rmdir de %s falhou: %s\n" -#: lib/fsm.c:1769 -#, fuzzy, c-format +#: lib/fsm.c:1780 +#, c-format msgid "%s unlink of %s failed: %s\n" -msgstr "o acesso ao %s falhou: %s\n" +msgstr "%s unlink de %s falhou: %s\n" -#: lib/fsm.c:1791 +#: lib/fsm.c:1800 #, c-format msgid "%s created as %s\n" msgstr "%s criado como %s\n" @@ -1602,227 +1605,231 @@ msgstr "%s criado como %s\n" msgid "error creating temporary file %s\n" msgstr "erro ao criar o ficheiro temporário %s\n" -#: lib/package.c:181 lib/package.c:257 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "a versăo 1 dos pacotes năo é suportada por esta versăo do RPM\n" - -#: lib/package.c:202 lib/package.c:265 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "só os pacotes com versăo <= 4 săo suportados por esta versăo do RPM\n" - -#: lib/package.c:243 lib/rpmchecksig.c:165 lib/rpmchecksig.c:573 +#: lib/package.c:171 lib/rpmchecksig.c:169 lib/rpmchecksig.c:577 #, c-format msgid "%s: readLead failed\n" msgstr ":%s: o readLead falhou\n" -#: lib/package.c:249 -#, fuzzy, c-format -msgid "%s: bad magic\n" -msgstr "Código de integridade inválido" +#: lib/package.c:184 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "a versăo 1 dos pacotes năo é suportada por esta versăo do RPM\n" -#: lib/package.c:274 lib/rpmchecksig.c:183 lib/rpmchecksig.c:589 +#: lib/package.c:192 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "só os pacotes com versăo <= 4 săo suportados por esta versăo do RPM\n" + +#: lib/package.c:201 lib/rpmchecksig.c:187 lib/rpmchecksig.c:593 #, c-format msgid "%s: rpmReadSignature failed\n" msgstr "%s: o rpmReadSignature falhou\n" -#: lib/package.c:278 lib/rpmchecksig.c:187 lib/rpmchecksig.c:594 +#: lib/package.c:205 lib/rpmchecksig.c:191 lib/rpmchecksig.c:598 #, c-format msgid "%s: No signature available\n" msgstr "%s: Nenhuma assinatura disponível\n" -#: lib/package.c:328 lib/rpmchecksig.c:494 +#: lib/package.c:251 lib/rpmchecksig.c:498 #, fuzzy, c-format msgid "%s: headerRead failed\n" msgstr ":%s: o readLead falhou\n" -#: lib/package.c:363 lib/package.c:390 lib/package.c:422 lib/rpmchecksig.c:665 +#: lib/package.c:286 lib/package.c:311 lib/package.c:341 lib/rpmchecksig.c:669 #, c-format msgid "only V3 signatures can be verified, skipping V%u signature" msgstr "" -#: lib/package.c:434 lib/rpmchecksig.c:113 lib/rpmchecksig.c:523 +#: lib/package.c:353 lib/rpmchecksig.c:117 lib/rpmchecksig.c:527 #, c-format msgid "%s: Fread failed: %s\n" msgstr "%s: O fread falhou: %s\n" -#: lib/poptI.c:53 +#: lib/poptI.c:49 msgid "exclude paths must begin with a /" msgstr "as directorias de exclusăo tęm de começar por /" -#: lib/poptI.c:65 +#: lib/poptI.c:61 msgid "relocations must begin with a /" msgstr "os novos locais tęm de começar por /" -#: lib/poptI.c:67 +#: lib/poptI.c:63 msgid "relocations must contain a =" msgstr "os novos locais tęm de conter um =" -#: lib/poptI.c:70 +#: lib/poptI.c:66 msgid "relocations must have a / following the =" msgstr "os novos locais tęm de ter um / a seguir ao =" -#: lib/poptI.c:84 +#: lib/poptI.c:80 msgid "rollback takes a time/date stamp argument" -msgstr "" +msgstr "'rollback' recebe como argumento uma hora/data" -#: lib/poptI.c:91 +#: lib/poptI.c:87 msgid "malformed rollback time/date stamp argument" +msgstr "argumento hora/data inválido para 'rollback'" + +#: lib/poptI.c:106 +msgid "install all files, even configurations which might otherwise be skipped" msgstr "" +"instala todos os ficheiros, mesmo as configuraçőes que de outro modo seriam " +"ignoradas" #: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "instala todos os ficheiros, mesmo as configuraçőes que de outro modo seriam ignoradas" - -#: lib/poptI.c:114 msgid "" "remove all packages which match (normally an error is generated if " " specified multiple packages)" -msgstr "remove todos os pacotes que correspondam a (normalmente aparece um erro se o especifica vários pacotes)" +msgstr "" +"remove todos os pacotes que correspondam a (normalmente aparece um " +"erro se o especifica vários pacotes)" -#: lib/poptI.c:120 lib/poptI.c:171 -#, fuzzy +#: lib/poptI.c:116 lib/poptI.c:171 msgid "do not execute package scriptlet(s)" -msgstr "năo executa nenhuns scripts específicos do pacote" +msgstr "năo executar nenhuns scripts do pacote" -#: lib/poptI.c:124 +#: lib/poptI.c:120 msgid "relocate files in non-relocateable package" msgstr "muda os ficheiros de sítio num pacote de localizaçăo fixa" -#: lib/poptI.c:127 +#: lib/poptI.c:123 msgid "save erased package files by renaming into sub-directory" msgstr "" +"gravar os ficheiros do pacote apagado mudando o nome para sub-directoria" -#: lib/poptI.c:130 +#: lib/poptI.c:126 msgid "erase (uninstall) package" msgstr "apaga (desinstala) o pacote" -#: lib/poptI.c:130 -#, fuzzy +#: lib/poptI.c:126 msgid "+" -msgstr "" +msgstr "+" -#: lib/poptI.c:133 +#: lib/poptI.c:129 msgid "do not install documentation" msgstr "năo instala a documentaçăo" -#: lib/poptI.c:135 +#: lib/poptI.c:131 msgid "skip files with leading component " msgstr "ignorar os ficheiros com a componente inicial " -#: lib/poptI.c:136 +#: lib/poptI.c:132 msgid "" -msgstr "" +msgstr "" -#: lib/poptI.c:139 +#: lib/poptI.c:135 msgid "short hand for --replacepkgs --replacefiles" msgstr "abreviatura para --replacepkgs --replacefiles" -#: lib/poptI.c:142 -#, fuzzy +#: lib/poptI.c:138 msgid "upgrade package(s) if already installed" -msgstr "actualizar o pacote se já estiver instalado" +msgstr "actualizar o pacote(s) se já estiver instalado" -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:236 +#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236 msgid "+" msgstr "+" -#: lib/poptI.c:145 +#: lib/poptI.c:141 msgid "print hash marks as package installs (good with -v)" msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)" -#: lib/poptI.c:148 +#: lib/poptI.c:144 msgid "don't verify package architecture" msgstr "năo verifica a arquitectura do pacote" -#: lib/poptI.c:151 +#: lib/poptI.c:147 msgid "don't verify package operating system" msgstr "năo verifica o sistema operativo do pacote" -#: lib/poptI.c:154 +#: lib/poptI.c:150 msgid "don't check disk space before installing" msgstr "năo verifica o espaço em disco antes de instalar" -#: lib/poptI.c:156 +#: lib/poptI.c:152 msgid "install documentation" msgstr "instala a documentaçăo" -#: lib/poptI.c:159 -msgid "install package" +#: lib/poptI.c:155 +#, fuzzy +msgid "install package(s)" msgstr "instala o pacote" -#: lib/poptI.c:161 +#: lib/poptI.c:157 msgid "update the database, but do not modify the filesystem" msgstr "actualiza a base de dados, mas năo altera o sistema de ficheiros" -#: lib/poptI.c:163 +#: lib/poptI.c:159 msgid "do not verify package dependencies" msgstr "năo verifica as dependęncias do pacote" -#: lib/poptI.c:166 +#: lib/poptI.c:162 msgid "do not reorder package installation to satisfy dependencies" -msgstr "năo reorganiza a instalaçăo dos pacotes para satisfazer as dependęncias" +msgstr "" +"năo reorganiza a instalaçăo dos pacotes para satisfazer as dependęncias" + +#: lib/poptI.c:167 +msgid "do not suggest missing dependency resolution(s)" +msgstr "" #: lib/poptI.c:174 -#, fuzzy, c-format +#, c-format msgid "do not execute %%pre scriptlet (if any)" -msgstr "năo executar os scripts (se existirem)" +msgstr "năo executar o script %%pre (se existir)" #: lib/poptI.c:177 -#, fuzzy, c-format +#, c-format msgid "do not execute %%post scriptlet (if any)" -msgstr "năo executar os scripts (se existirem)" +msgstr "năo executar o script %%post (se existir)" #: lib/poptI.c:180 -#, fuzzy, c-format +#, c-format msgid "do not execute %%preun scriptlet (if any)" -msgstr "năo executar os scripts (se existirem)" +msgstr "năo executar o script %%preun (se existir)" #: lib/poptI.c:183 -#, fuzzy, c-format +#, c-format msgid "do not execute %%postun scriptlet (if any)" -msgstr "năo executar os scripts (se existirem)" +msgstr "năo executar o script %%postun (se existir)" #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy -msgid "don't verify digest(s)" -msgstr "năo verificar os ficheiros no pacote" +msgid "don't verify package digest(s)" +msgstr "năo verificar as dependęncias do pacote" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy -msgid "don't verify signature(s)" -msgstr "năo verificar os ficheiros no pacote" +msgid "don't verify package signature(s)" +msgstr "verificar a assinatura do pacote" #: lib/poptI.c:192 -#, fuzzy msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "năo executar nenhuns 'scriptlets' activados por este pacote" +msgstr "năo executar nenhum dos scripts activados por este pacote" #: lib/poptI.c:195 -#, fuzzy, c-format +#, c-format msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "năo executa nenhuns scripts específicos do pacote" +msgstr "năo executar nenhum dos scripts %%triggerprein" #: lib/poptI.c:198 -#, fuzzy, c-format +#, c-format msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "năo executar nenhuns 'scriptlets' de instalaçăo" +msgstr "năo executar nenhum dos scripts %%triggerin" #: lib/poptI.c:201 -#, fuzzy, c-format +#, c-format msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "năo executar nenhuns 'scriptlets' de instalaçăo" +msgstr "năo executar nenhum dos scripts %%triggerun" #: lib/poptI.c:204 -#, fuzzy, c-format +#, c-format msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "năo executar nenhuns 'scriptlets' de instalaçăo" +msgstr "năo executar nenhum dos scripts %%triggerpostun" #: lib/poptI.c:208 msgid "" "upgrade to an old version of the package (--force on upgrades does this " "automatically)" -msgstr "actualiza para um versăo antiga do pacote (o --force faz isto automaticamente)" +msgstr "" +"actualiza para um versăo antiga do pacote (o --force faz isto " +"automaticamente)" #: lib/poptI.c:212 msgid "print percentages as package installs" @@ -1833,18 +1840,16 @@ msgid "relocate the package to , if relocatable" msgstr "muda o pacote para , se for possível" #: lib/poptI.c:217 -#, fuzzy msgid "relocate files from path to " -msgstr "muda os ficheiros de para " +msgstr "muda os ficheiros de para " #: lib/poptI.c:218 -#, fuzzy msgid "=" -msgstr "=" +msgstr "=" #: lib/poptI.c:221 msgid "save erased package files by repackaging" -msgstr "" +msgstr "gravar ficheiros apagados reempacotando-os" #: lib/poptI.c:224 msgid "install even if the package replaces installed files" @@ -1856,20 +1861,19 @@ msgstr "reinstalar se o pacote j #: lib/poptI.c:229 msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" +msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar ŕ " #: lib/poptI.c:230 msgid "" -msgstr "" +msgstr "" #: lib/poptI.c:232 msgid "don't install, but tell if it would work or not" msgstr "năo instala, mas indica se iria funcionar ou năo" #: lib/poptI.c:235 -#, fuzzy msgid "upgrade package(s)" -msgstr "actualizar o pacote" +msgstr "actualizar pacote(s)" #: lib/poptQV.c:95 msgid "query/verify all packages" @@ -1885,27 +1889,25 @@ msgid "query/verify package(s) owning file" msgstr "pesquisar/verificar o(s) pacote(s) que contém(ęm) o ficheiro" #: lib/poptQV.c:101 -#, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "pesquisar/verificar o(s) pacote(s) que contém(ęm) o ficheiro" +msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do ficheiro" #: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "pesquisar/verificar o(s) pacote(s) no grupo" #: lib/poptQV.c:105 -#, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "pesquisar/verificar o(s) pacote(s) que contém(ęm) o ficheiro" +msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do cabeçalho" #: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "pesquisar/verificar um ficheiro do pacote (i.e. um ficheiro *.rpm binário)" +msgstr "" +"pesquisar/verificar um ficheiro do pacote (i.e. um ficheiro *.rpm binário)" #: lib/poptQV.c:109 -#, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "pesquisar/verificar o(s) pacote(s) que contém(ęm) o ficheiro" +msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do pacote" #: lib/poptQV.c:111 msgid "rpm query mode" @@ -1924,9 +1926,8 @@ msgid "" msgstr "" #: lib/poptQV.c:119 -#, fuzzy msgid "query/verify package(s) from install transaction" -msgstr "pesquisar/verificar o(s) pacote(s) no grupo" +msgstr "pesquisar/verificar o(s) pacote(s) de transacçăo de instalaçăo" #: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" @@ -1963,17 +1964,17 @@ msgstr "listar os ficheiros no pacote" #: lib/poptQV.c:198 #, c-format msgid "skip %%ghost files" -msgstr "" +msgstr "ignorar ficheiros %%ghost" #: lib/poptQV.c:202 #, c-format msgid "skip %%license files" -msgstr "" +msgstr "ignorar ficheiro %%licence" #: lib/poptQV.c:205 -#, fuzzy, c-format +#, c-format msgid "skip %%readme files" -msgstr ":%s: o readLead falhou\n" +msgstr "ignorar ficheiros %%readme" #: lib/poptQV.c:211 msgid "use the following query format" @@ -1992,47 +1993,40 @@ msgid "display a verbose file listing" msgstr "mostrar uma listagem descritiva do ficheiro" #: lib/poptQV.c:237 -#, fuzzy msgid "don't verify MD5 digest of files" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar o MD5 dos ficheiros" #: lib/poptQV.c:240 -#, fuzzy msgid "don't verify size of files" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar os tamanho dos ficheiros" #: lib/poptQV.c:243 -#, fuzzy msgid "don't verify symlink path of files" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar as ligaçőes simbólicas dos ficheiros" #: lib/poptQV.c:246 -#, fuzzy msgid "don't verify owner of files" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar o dono dos ficheiros" #: lib/poptQV.c:249 -#, fuzzy msgid "don't verify group of files" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar o grupo dos ficheiros" #: lib/poptQV.c:252 msgid "don't verify modification time of files" -msgstr "" +msgstr "năo verificar hora de modificaçăo dos ficheiros" #: lib/poptQV.c:255 lib/poptQV.c:258 -#, fuzzy msgid "don't verify mode of files" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar o modo dos ficheiros" #: lib/poptQV.c:261 msgid "don't verify files in package" msgstr "năo verificar os ficheiros no pacote" #: lib/poptQV.c:263 -#, fuzzy msgid "don't verify package dependencies" -msgstr "năo verifica as dependęncias do pacote" +msgstr "năo verificar as dependęncias do pacote" #: lib/poptQV.c:265 lib/poptQV.c:269 #, fuzzy @@ -2042,16 +2036,16 @@ msgstr "n #: lib/poptQV.c:280 #, fuzzy msgid "don't verify GPG V3 DSA signature(s)" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar o SHA1 do cabeçalho" #: lib/poptQV.c:283 #, fuzzy msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "năo verificar os ficheiros no pacote" +msgstr "năo verificar o MD5 dos ficheiros" #: lib/poptQV.c:298 #, fuzzy -msgid "sign a packagei (identical to --resign)" +msgid "sign package(s) (identical to --resign)" msgstr "assinar um pacote (retira a assinatura actual)" #: lib/poptQV.c:300 @@ -2065,217 +2059,138 @@ msgstr "" #: lib/poptQV.c:304 #, fuzzy -msgid "sign a packagei (identical to --addsign)" +msgid "sign package(s) (identical to --addsign)" msgstr "assinar um pacote (retira a assinatura actual)" #: lib/poptQV.c:306 -#, fuzzy msgid "generate signature" -msgstr "gerar a assinatura PGP/GPG" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, fuzzy, c-format -msgid "package %s is intended for a %s architecture" -msgstr "o pacote %s é para uma arquitectura diferente" - -#: lib/problems.c:240 -#, fuzzy, c-format -msgid "package %s is intended for a %s operating system" -msgstr "o pacote %s é para um sistema operativo diferente" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "o pacote %s já está instalado" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "a directoria %s no pacote %s năo pode ser mudada de sítio" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "o ficheiro %s está em conflito com as tentativas de instalaçăo do %s e %s" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "o ficheiro %s da instalaçăo do %s está em conflito com o ficheiro do pacote %s" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "o pacote %s (que é mais recente que o %s) já está instalado" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "a instalaçăo do pacote %s precisa de %ld%cb no sistema de ficheiros %s" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "a instalaçăo do pacote %s precisa de %ld 'inodes' no sistema de ficheiros %s" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "a(s) chamada(s) de pré-transacçăo do pacote %s: %s falhou: %s" - -#: lib/problems.c:289 -#, fuzzy, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "requisito %s-%s-%s do pacote năo satisfeito: %s\n" - -#: lib/problems.c:293 -#, fuzzy, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "requisito %s-%s-%s do pacote năo satisfeito: %s\n" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s" - -#: lib/problems.c:378 -#, fuzzy -msgid "conflicts with" -msgstr " está em conflito com o %s-%s-%s\n" - -#: lib/problems.c:378 -#, fuzzy -msgid "is needed by" -msgstr " é necessário pelo %s-%s-%s\n" +msgstr "gerar a assinatura" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/psm.c:257 rpmdb/header.c:388 rpmdb/header_internal.c:161 #, c-format msgid "Data type %d not supported\n" msgstr "O tipo de dados %d năo é suportado\n" -#: lib/psm.c:444 -#, fuzzy, c-format +#: lib/psm.c:455 +#, c-format msgid "cannot create %%%s %s\n" -msgstr "năo consigo criar o %s: %s\n" +msgstr "năo consigo criar o %%%s %s\n" -#: lib/psm.c:450 -#, fuzzy, c-format +#: lib/psm.c:461 +#, c-format msgid "cannot write to %%%s %s\n" -msgstr "năo consigo escrever em %s\n" +msgstr "năo consigo escrever em %%%s %s\n" -#: lib/psm.c:483 +#: lib/psm.c:492 msgid "source package expected, binary found\n" -msgstr "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n" +msgstr "" +"esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n" -#: lib/psm.c:599 +#: lib/psm.c:611 msgid "source package contains no .spec file\n" msgstr "o pacote de código-fonte năo contem um ficheiro .spec\n" -#: lib/psm.c:709 +#: lib/psm.c:731 #, fuzzy, c-format msgid "%s: running %s scriptlet\n" -msgstr "a correr os programas de pós-instalaçăo (se existirem)\n" +msgstr "%s: a correr os scripts(s) %s (se existirem)\n" -#: lib/psm.c:875 -#, fuzzy, c-format +#: lib/psm.c:901 +#, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" -msgstr "a execuçăo do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n" +msgstr "a execuçăo do script %s do %s-%s-%s falhou, waitpid devolveu %s\n" -#: lib/psm.c:882 +#: lib/psm.c:908 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" -msgstr "a execuçăo do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n" +msgstr "" +"a execuçăo do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n" -#: lib/psm.c:1224 +#: lib/psm.c:1248 #, fuzzy, c-format msgid "%s: %s has %d files, test = %d\n" -msgstr "pacote: teste dos ficheiros do %s-%s-%s = %d\n" +msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n" -#: lib/psm.c:1344 -#, c-format +#: lib/psm.c:1370 +#, fuzzy, c-format msgid "%s: %s scriptlet failed (%d), skipping %s\n" -msgstr "" +msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n" -#: lib/psm.c:1486 +#: lib/psm.c:1514 #, c-format msgid "user %s does not exist - using root\n" msgstr "o utilizador %s năo existe - a usar o root\n" -#: lib/psm.c:1495 +#: lib/psm.c:1523 #, c-format msgid "group %s does not exist - using root\n" msgstr "o grupo %s năo existe - a usar o root\n" -#: lib/psm.c:1537 +#: lib/psm.c:1565 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "a abertura do pacote falhou%s%s: %s\n" -#: lib/psm.c:1538 +#: lib/psm.c:1566 msgid " on file " msgstr " no ficheiro " -#: lib/psm.c:1726 -#, fuzzy, c-format +#: lib/psm.c:1761 +#, c-format msgid "%s failed on file %s: %s\n" -msgstr "falhei ao aceder ao %s: %s\n" +msgstr "%s falhou no ficheiro %s: %s\n" -#: lib/psm.c:1729 -#, fuzzy, c-format +#: lib/psm.c:1764 +#, c-format msgid "%s failed: %s\n" -msgstr "O %s falhou\n" +msgstr "%s falhou: %s\n" -#: lib/query.c:124 +#: lib/query.c:127 lib/rpmts.c:262 #, c-format msgid "incorrect format: %s\n" msgstr "formato incorrecto: %s\n" -#: lib/query.c:220 +#: lib/query.c:223 msgid "(contains no files)" msgstr "(năo contém ficheiros)" -#: lib/query.c:281 +#: lib/query.c:284 msgid "normal " msgstr "normal " -#: lib/query.c:284 +#: lib/query.c:287 msgid "replaced " msgstr "substituído " -#: lib/query.c:287 +#: lib/query.c:290 msgid "not installed " msgstr "năo instalado " -#: lib/query.c:290 +#: lib/query.c:293 msgid "net shared " msgstr "partilhado" -#: lib/query.c:293 +#: lib/query.c:296 #, c-format msgid "(unknown %3d) " msgstr "(desconhecido %3d)" -#: lib/query.c:298 +#: lib/query.c:301 msgid "(no state) " msgstr "(sem estado) " -#: lib/query.c:317 lib/query.c:373 +#: lib/query.c:320 lib/query.c:376 msgid "package has neither file owner or id lists\n" msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n" -#: lib/query.c:462 +#: lib/query.c:466 #, c-format msgid "can't query %s: %s\n" msgstr "năo consigo pesquisar o %s: %s\n" -#: lib/query.c:616 lib/query.c:654 lib/rpminstall.c:348 lib/rpminstall.c:490 -#: lib/rpminstall.c:867 +#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500 +#: lib/rpminstall.c:883 #, c-format msgid "open of %s failed: %s\n" msgstr "o acesso ao %s falhou: %s\n" @@ -2287,12 +2202,13 @@ msgstr "a pesquisa do %s falhou\n" #: lib/query.c:638 msgid "old format source packages cannot be queried\n" -msgstr "os pacotes com código-fonte no formato antigo năo podem ser pesquisados\n" +msgstr "" +"os pacotes com código-fonte no formato antigo năo podem ser pesquisados\n" -#: lib/query.c:664 lib/rpminstall.c:503 +#: lib/query.c:664 lib/rpminstall.c:513 #, fuzzy, c-format -msgid "%s: read manifest failed: %s\n" -msgstr "%s: O fread falhou: %s\n" +msgid "%s: not a package manifest: %s\n" +msgstr "nenhum pacote coincide com %s: %s\n" #: lib/query.c:708 #, c-format @@ -2313,136 +2229,144 @@ msgstr "o grupo %s n msgid "no package triggers %s\n" msgstr "nenhum pacote activa o %s\n" -#: lib/query.c:773 lib/query.c:795 lib/query.c:813 lib/query.c:844 -#, fuzzy, c-format +#: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 +#, c-format msgid "malformed %s: %s\n" -msgstr "Năo consegui ler o %s: %s.\n" +msgstr "malformado %s: %s\n" -#: lib/query.c:783 lib/query.c:801 lib/query.c:819 lib/query.c:849 -#, fuzzy, c-format +#: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 +#, c-format msgid "no package matches %s: %s\n" -msgstr "nenhum pacote activa o %s\n" +msgstr "nenhum pacote coincide com %s: %s\n" -#: lib/query.c:860 +#: lib/query.c:867 #, c-format msgid "no package requires %s\n" msgstr "nenhum pacote precisa do %s\n" -#: lib/query.c:871 +#: lib/query.c:878 #, c-format msgid "no package provides %s\n" msgstr "nenhum pacote oferece o %s\n" -#: lib/query.c:905 +#: lib/query.c:912 #, c-format msgid "file %s: %s\n" msgstr "ficheiro %s: %s\n" -#: lib/query.c:909 +#: lib/query.c:916 #, c-format msgid "file %s is not owned by any package\n" msgstr "o ficheiro %s năo pertence a nenhum pacote\n" -#: lib/query.c:936 +#: lib/query.c:943 #, c-format msgid "invalid package number: %s\n" msgstr "número de pacote inválido: %s\n" -#: lib/query.c:939 +#: lib/query.c:946 #, c-format msgid "package record number: %u\n" msgstr "número de registo do pacote: %u\n" -#: lib/query.c:944 -#, fuzzy, c-format +#: lib/query.c:951 +#, c-format msgid "record %u could not be read\n" -msgstr "o registo %d năo pôde ser lido\n" +msgstr "o registo %u năo pôde ser lido\n" -#: lib/query.c:955 lib/rpminstall.c:657 +#: lib/query.c:962 lib/rpminstall.c:671 #, c-format msgid "package %s is not installed\n" msgstr "o pacote %s năo está instalado\n" -#: lib/rpmal.c:673 +#: lib/rpmal.c:688 #, fuzzy msgid "(added files)" msgstr "ficheiro db inválido %s\n" -#: lib/rpmal.c:770 +#: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s SI (oferecidos pelo db)\n" +msgstr "%s: %-45s SIM (oferecidos para adiçăo)\n" -#: lib/rpmchecksig.c:54 +#: lib/rpmchecksig.c:58 #, c-format msgid "%s: open failed: %s\n" msgstr "%s: o acesso falhou: %s\n" -#: lib/rpmchecksig.c:66 +#: lib/rpmchecksig.c:70 msgid "makeTempFile failed\n" msgstr "o makeTempFile falhou\n" -#: lib/rpmchecksig.c:107 +#: lib/rpmchecksig.c:111 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "%s: O fwrite falhou: %s\n" -#: lib/rpmchecksig.c:170 +#: lib/rpmchecksig.c:174 #, fuzzy, c-format msgid "%s: Can't sign v1 packaging\n" msgstr "%s: Năo consigo assinar o RPM v1.0\n" -#: lib/rpmchecksig.c:174 +#: lib/rpmchecksig.c:178 #, fuzzy, c-format msgid "%s: Can't re-sign v2 packaging\n" msgstr "%s: năo consigo assinar de novo o RPM v2.0\n" -#: lib/rpmchecksig.c:273 +#: lib/rpmchecksig.c:277 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "%s: o writeLead falhou: %s\n" -#: lib/rpmchecksig.c:279 +#: lib/rpmchecksig.c:283 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "%s: o rpmWriteSignature falhou: %s\n" -#: lib/rpmchecksig.c:508 +#: lib/rpmchecksig.c:512 #, fuzzy, c-format msgid "%s: headerGetEntry failed\n" msgstr ":%s: o readLead falhou\n" -#: lib/rpmchecksig.c:579 +#: lib/rpmchecksig.c:583 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "%s: Nenhuma assinatura disponível (RPM v1.0)\n" -#: lib/rpmchecksig.c:824 +#: lib/rpmchecksig.c:828 msgid "NOT OK" msgstr "NĂO-OK" -#: lib/rpmchecksig.c:825 lib/rpmchecksig.c:839 +#: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843 msgid " (MISSING KEYS:" msgstr " (FALTAM AS CHAVES:" -#: lib/rpmchecksig.c:827 lib/rpmchecksig.c:841 +#: lib/rpmchecksig.c:831 lib/rpmchecksig.c:845 msgid ") " msgstr ") " -#: lib/rpmchecksig.c:828 lib/rpmchecksig.c:842 +#: lib/rpmchecksig.c:832 lib/rpmchecksig.c:846 msgid " (UNTRUSTED KEYS:" msgstr " (CHAVES SUSPEITAS:" -#: lib/rpmchecksig.c:830 lib/rpmchecksig.c:844 +#: lib/rpmchecksig.c:834 lib/rpmchecksig.c:848 msgid ")" msgstr ")" -#: lib/rpmchecksig.c:838 +#: lib/rpmchecksig.c:842 msgid "OK" msgstr "OK" +#: lib/rpmds.c:423 lib/rpmds.c:582 +msgid "NO " +msgstr "NĂO" + +#: lib/rpmds.c:423 lib/rpmds.c:582 +msgid "YES" +msgstr "SIM" + #. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:538 +#: lib/rpmds.c:551 #, c-format msgid "" "the \"B\" dependency needs an epoch (assuming same as \"A\")\n" @@ -2451,109 +2375,198 @@ msgstr "" "A dependęncia \"B\" precisa duma época (assumindo a mesma que \"A\")\n" "\t %s\tB %s\n" -#: lib/rpmds.c:568 +#: lib/rpmds.c:581 #, c-format msgid " %s A %s\tB %s\n" msgstr " %s A %s\tB %s\n" #. @=branchstate@ -#: lib/rpmds.c:592 +#: lib/rpmds.c:605 #, fuzzy, c-format msgid "package %s has unsatisfied %s: %s\n" -msgstr "requisito %s-%s-%s do pacote năo satisfeito: %s\n" +msgstr "o pacote %s tem requisitos năo satisfeitos: %s\n" -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:165 msgid "Preparing..." msgstr "A preparar..." -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:167 msgid "Preparing packages for installation..." msgstr "A preparar os pacotes para a instalaçăo..." -#: lib/rpminstall.c:296 +#: lib/rpminstall.c:310 #, c-format msgid "Retrieving %s\n" msgstr "A obter o %s\n" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:308 +#: lib/rpminstall.c:323 #, c-format msgid " ... as %s\n" msgstr " ... como %s\n" -#: lib/rpminstall.c:312 +#: lib/rpminstall.c:327 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "a ignorar o %s - a transferęncia falhou - %s\n" -#: lib/rpminstall.c:410 +#: lib/rpminstall.c:424 #, c-format msgid "package %s is not relocateable\n" msgstr "o pacote %s năo pode ser mudado de sítio\n" -#: lib/rpminstall.c:464 +#: lib/rpminstall.c:474 #, c-format msgid "error reading from file %s\n" msgstr "erro ao ler do ficheiros %s\n" -#: lib/rpminstall.c:470 +#: lib/rpminstall.c:480 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "o %s precisa duma versăo mais recente do RPM\n" -#: lib/rpminstall.c:482 lib/rpminstall.c:723 +#: lib/rpminstall.c:492 lib/rpminstall.c:739 #, c-format msgid "%s cannot be installed\n" msgstr "o %s năo pode ser instalado\n" -#: lib/rpminstall.c:518 +#: lib/rpminstall.c:528 #, c-format msgid "found %d source and %d binary packages\n" msgstr "encontrados %d pacotes com código-fonte e %d binários\n" -#: lib/rpminstall.c:536 lib/rpminstall.c:1059 -msgid "failed dependencies:\n" +#: lib/rpminstall.c:542 lib/rpminstall.c:1070 +#, fuzzy +msgid "Failed dependencies:\n" msgstr "dependęncias falhadas:\n" -#: lib/rpminstall.c:559 +#: lib/rpminstall.c:549 +msgid " Suggested resolutions:\n" +msgstr "" + +#: lib/rpminstall.c:579 msgid "installing binary packages\n" msgstr "a instalar os pacotes binários\n" -#: lib/rpminstall.c:580 +#: lib/rpminstall.c:599 #, c-format msgid "cannot open file %s: %s\n" msgstr "năo consigo aceder ao ficheiro %s: %s\n" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:674 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "o \"%s\" especifica vários pacotes\n" -#: lib/rpminstall.c:684 +#: lib/rpminstall.c:699 msgid "removing these packages would break dependencies:\n" msgstr "a remoçăo destes pacotes irá quebrar dependęncias:\n" -#: lib/rpminstall.c:710 +#: lib/rpminstall.c:726 #, c-format msgid "cannot open %s: %s\n" msgstr "năo consigo aceder ao %s: %s\n" -#: lib/rpminstall.c:716 +#: lib/rpminstall.c:732 #, c-format msgid "Installing %s\n" msgstr "A instalar o %s\n" -#: lib/rpminstall.c:1052 -#, c-format +#: lib/rpminstall.c:1064 +#, fuzzy, c-format msgid "rollback %d packages to %s" -msgstr "" +msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s" -#: lib/rpmlead.c:50 +#: lib/rpmlead.c:47 #, c-format msgid "read failed: %s (%d)\n" msgstr "a leitura falhou: %s (%d)\n" +#. @observer@ +#: lib/rpmps.c:207 +msgid "different" +msgstr "" + +#: lib/rpmps.c:215 +#, fuzzy, c-format +msgid "package %s is intended for a %s architecture" +msgstr "o pacote %s é para uma arquitectura diferente" + +#: lib/rpmps.c:220 +#, fuzzy, c-format +msgid "package %s is intended for a %s operating system" +msgstr "o pacote %s é para um sistema operativo diferente" + +#: lib/rpmps.c:225 +#, c-format +msgid "package %s is already installed" +msgstr "o pacote %s já está instalado" + +#: lib/rpmps.c:230 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "a directoria %s no pacote %s năo pode ser mudada de sítio" + +#: lib/rpmps.c:235 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" +"o ficheiro %s está em conflito com as tentativas de instalaçăo do %s e %s" + +#: lib/rpmps.c:240 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" +"o ficheiro %s da instalaçăo do %s está em conflito com o ficheiro do pacote %" +"s" + +#: lib/rpmps.c:245 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "o pacote %s (que é mais recente que o %s) já está instalado" + +#: lib/rpmps.c:250 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "a instalaçăo do pacote %s precisa de %ld%cb no sistema de ficheiros %s" + +#: lib/rpmps.c:260 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" +"a instalaçăo do pacote %s precisa de %ld 'inodes' no sistema de ficheiros %s" + +#: lib/rpmps.c:265 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "a(s) chamada(s) de pré-transacçăo do pacote %s: %s falhou: %s" + +#: lib/rpmps.c:269 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "o pacote %s tem requisitos năo satisfeitos: %s\n" + +#: lib/rpmps.c:273 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "o pacote %s tem campos Conflits năo satisfeitos: %s\n" + +#: lib/rpmps.c:278 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "encontrado o erro desconhecido %d ao manipular o pacote %s" + +#: lib/rpmps.c:359 +#, fuzzy +msgid "conflicts with" +msgstr " está em conflito com o %s-%s-%s\n" + +#: lib/rpmps.c:359 +#, fuzzy +msgid "is needed by" +msgstr " é necessário pelo %s-%s-%s\n" + #: lib/rpmrc.c:191 #, c-format msgid "missing second ':' at %s:%d\n" @@ -2649,706 +2662,657 @@ msgstr "N msgid "Unable to open %s for reading: %s.\n" msgstr "Năo consegui abrir o %s para leitura: %s.\n" -#: lib/rpmts.c:73 +#: lib/rpmts.c:131 lib/rpmts.c:173 #, c-format msgid "cannot open Packages database in %s\n" msgstr "năo consigo abrir a base de dados Packages em %s\n" -#: lib/signature.c:118 +#. Get available space on mounted file systems. +#: lib/rpmts.c:560 +msgid "getting list of mounted filesystems\n" +msgstr "" + +#: lib/signature.c:126 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:127 +#: lib/signature.c:144 #, 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" +msgstr "" +"Esperado um tamanho: %12d = início(%d)+assin.(%d)+'pad'(%d)+dados(%d)\n" -#: lib/signature.c:132 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr " Tamanho real: %12d\n" -#: lib/signature.c:152 +#: lib/signature.c:169 msgid "No signature\n" msgstr "Sem assinatura\n" -#: lib/signature.c:156 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "Assinatura PGP antiga\n" -#: lib/signature.c:167 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "Assinatura (só interna) antiga! Como é que obteve isto!?\n" -#: lib/signature.c:221 -#, fuzzy, c-format +#: lib/signature.c:234 +#, c-format msgid "Signature: size(%d)+pad(%d)\n" -msgstr "Tamanho da assinatura: %d\n" +msgstr "Assinatura: tamanho(%d)+pad(%d)\n" -#: lib/signature.c:300 lib/signature.c:397 lib/signature.c:664 -#: lib/signature.c:697 -#, fuzzy, c-format +#: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677 +#: lib/signature.c:710 +#, c-format msgid "Could not exec %s: %s\n" -msgstr "Năo consegui executar o %s: %S\n" +msgstr "Năo consegui executar %s: %s\n" -#: lib/signature.c:316 +#: lib/signature.c:329 msgid "pgp failed\n" msgstr "o pgp falhou\n" #. PGP failed to write signature #. Just in case -#: lib/signature.c:323 +#: lib/signature.c:336 msgid "pgp failed to write signature\n" msgstr "o pgp năo conseguiu gravar a assinatura\n" -#: lib/signature.c:328 +#: lib/signature.c:341 #, c-format msgid "PGP sig size: %d\n" msgstr "tamanho da assinatura do PGP: %d\n" -#: lib/signature.c:342 lib/signature.c:440 +#: lib/signature.c:355 lib/signature.c:453 msgid "unable to read the signature\n" msgstr "incapaz de ler a assinatura\n" -#: lib/signature.c:347 +#: lib/signature.c:360 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "Obtive %d bytes da assinatura PGP\n" -#: lib/signature.c:414 +#: lib/signature.c:427 msgid "gpg failed\n" msgstr "o gpg falhou\n" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:434 msgid "gpg failed to write signature\n" msgstr "o gpg năo conseguiu gravar a assinatura\n" -#: lib/signature.c:426 +#: lib/signature.c:439 #, c-format msgid "GPG sig size: %d\n" msgstr "Tamanho da assinatura do GPG: %d\n" -#: lib/signature.c:445 +#: lib/signature.c:458 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "Obtive %d bytes da assinatura do GPG\n" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:702 lib/signature.c:753 +#: lib/signature.c:715 lib/signature.c:766 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "'Spec' %%_signature inválido no ficheiro de macros\n" -#: lib/signature.c:732 +#: lib/signature.c:745 #, 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:745 +#: lib/signature.c:758 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "Precisa definir o \"%%_pgp_name\" no seu ficheiro de macros\n" -#: lib/signature.c:789 +#: lib/signature.c:802 #, fuzzy msgid "Header+Payload size: " msgstr "Tamanho do cabeçalho demasiado grande" -#: lib/signature.c:825 +#: lib/signature.c:838 msgid "MD5 digest: " msgstr "" -#: lib/signature.c:873 +#: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "năo verificar o SHA1 do cabeçalho" -#: lib/signature.c:1059 +#: lib/signature.c:1073 #, fuzzy msgid "V3 RSA/MD5 signature: " msgstr "ignorar as assinaturas de MD5" -#: lib/signature.c:1168 +#: lib/signature.c:1183 msgid "Header " msgstr "" -#: lib/signature.c:1169 +#: lib/signature.c:1184 #, fuzzy msgid "V3 DSA signature: " msgstr "Sem assinatura\n" -#: lib/signature.c:1244 +#: lib/signature.c:1259 msgid "Verify signature: BAD PARAMETERS\n" msgstr "" -#: lib/signature.c:1271 +#: lib/signature.c:1286 msgid "Broken MD5 digest: UNSUPPORTED\n" -msgstr "" +msgstr "'Digest' MD5 estragado: NĂO SUPORTADO\n" -#: lib/signature.c:1275 +#: lib/signature.c:1290 #, fuzzy, c-format msgid "Signature: UNKNOWN (%d)\n" -msgstr "'Pad' ou preenchimento da assinatura: %d\n" +msgstr "Assinatura: tamanho(%d)+pad(%d)\n" -#: lib/transaction.c:173 +#: lib/transaction.c:104 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "%s ignorado devido ŕ opçăo missingok\n" #. @innercontinue@ -#: lib/transaction.c:985 +#: lib/transaction.c:893 #, c-format msgid "excluding directory %s\n" msgstr "a excluir a directoria %s\n" -#: lib/transaction.c:1076 -msgid "getting list of mounted filesystems\n" -msgstr "a obter a lista dos sistemas de ficheiros montados\n" - -#: lib/verify.c:324 +#: lib/verify.c:284 #, c-format msgid "missing %s" msgstr "falta %s" -#: lib/verify.c:419 +#: lib/verify.c:380 #, fuzzy, c-format msgid "Unsatisifed dependencies for %s: " msgstr "Dependęncias năo satisfeitas para o %s-%s-%s: " -#: lib/verify.c:459 -#, c-format -msgid "%s-%s-%s: immutable header region digest check failed\n" -msgstr "" - -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db3.c:156 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "erro do db%d (%d) do %s: %s\n" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db3.c:159 #, c-format msgid "db%d error(%d): %s\n" msgstr "erro do db%d (%d): %s\n" -#: rpmdb/db1.c:168 +#: rpmdb/db3.c:185 #, c-format -msgid "" -"Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" -msgstr "" - -#: rpmdb/db1.c:180 -#, c-format -msgid "Reconnecting broken chain at offset %d(0x%08x).\n" -msgstr "" - -#. @=branchstate@ -#: rpmdb/db1.c:506 -#, c-format -msgid "closed db file %s\n" -msgstr "fechei o ficheiro do db %s\n" - -#: rpmdb/db1.c:509 -#, c-format -msgid "removed db file %s\n" -msgstr "removi o ficheiro do db %s\n" - -#: rpmdb/db1.c:544 -#, c-format -msgid "bad db file %s\n" -msgstr "ficheiro db inválido %s\n" - -#: rpmdb/db1.c:549 -#, c-format -msgid "opening db file %s mode 0x%x\n" -msgstr "a aceder ao ficheiro db %s modo 0x%x\n" - -#. XXX check errno validity -#: rpmdb/db1.c:572 -#, c-format -msgid "cannot get %s lock on database\n" -msgstr "năo consegui adquirir exclusivamente o %s na base de dados\n" - -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 -msgid "exclusive" -msgstr "exclusivo" - -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 -msgid "shared" -msgstr "partilhado" - -#: rpmdb/db3.c:129 -#, fuzzy, c-format msgid "closed db environment %s/%s\n" msgstr "fechei o ambiente do db %s/%s\n" -#: rpmdb/db3.c:147 -#, fuzzy, c-format +#: rpmdb/db3.c:203 +#, c-format msgid "removed db environment %s/%s\n" msgstr "removi o ambiente do db %s/%s\n" -#: rpmdb/db3.c:187 -#, fuzzy, c-format +#: rpmdb/db3.c:243 +#, c-format msgid "opening db environment %s/%s %s\n" msgstr "a aceder ao ambiente do db %s/%s %s\n" -#: rpmdb/db3.c:711 -#, fuzzy, c-format +#: rpmdb/db3.c:678 +#, c-format msgid "closed db index %s/%s\n" -msgstr "fechei o índice do db %s/%s\n" +msgstr "fechei o índice do db %s/%s\n" -#: rpmdb/db3.c:778 -#, fuzzy, c-format +#: rpmdb/db3.c:745 +#, c-format msgid "verified db index %s/%s\n" -msgstr "fechei o índice do db %s/%s\n" +msgstr "verifiquei o índice do db %s/%s\n" -#: rpmdb/db3.c:1001 -#, fuzzy, c-format +#: rpmdb/db3.c:967 +#, 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" +msgstr "a abrir o índice do db %s/%s %s modo=0x%x\n" -#: rpmdb/db3.c:1226 +#: rpmdb/db3.c:1183 #, 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:1232 -#, fuzzy, c-format +#: rpmdb/db3.c:1185 +msgid "exclusive" +msgstr "exclusivo" + +#: rpmdb/db3.c:1185 +msgid "shared" +msgstr "partilhado" + +#: rpmdb/db3.c:1189 +#, c-format msgid "locked db index %s/%s\n" -msgstr "tranquei o índice do db %s/%s\n" +msgstr "tranquei o índice do db %s/%s\n" -#: rpmdb/dbconfig.c:404 -#, fuzzy, c-format +#: rpmdb/dbconfig.c:396 +#, c-format msgid "unrecognized db option: \"%s\" ignored.\n" -msgstr "opçăo do db desconhecida: \"%s\" ignorado\n" +msgstr "opçăo do db desconhecida: \"%s\" ignorada.\n" -#: rpmdb/dbconfig.c:442 +#: rpmdb/dbconfig.c:434 #, c-format msgid "%s has invalid numeric value, skipped\n" msgstr "O %s tem um valor numérico inválido, foi ignorado\n" -#: rpmdb/dbconfig.c:451 +#: rpmdb/dbconfig.c:443 #, c-format msgid "%s has too large or too small long value, skipped\n" msgstr "O %s tem um valor demasiado elevado ou pequeno, foi ignorado\n" -#: rpmdb/dbconfig.c:460 +#: rpmdb/dbconfig.c:452 #, c-format msgid "%s has too large or too small integer value, skipped\n" msgstr "O %s tem um valor inteiro demasiado elevado ou pequeno, foi ignorado\n" -#: rpmdb/falloc.c:183 -#, c-format -msgid "" -"free list corrupt (%u)- please run\n" -"\t\"rpm --rebuilddb\"\n" -"More information is available from http://www.rpm.org or the rpm-list@redhat." -"com mailing list\n" -"if \"rpm --rebuilddb\" fails to correct the problem.\n" -msgstr "" -"lista de livres corrompida (%u)- por favor\n" -"corra o \"rpm --rebuilddb\"\n" -"Existe mais informaçăo disponível em http://www.rpm.org ou na\n" -"'mailing list' rpm-list@redhat.com\n" -"se o \"rpm --rebuild\" năo conseguir corrigir o problema.\n" - #. This should not be allowed #. @-modfilesys@ -#: rpmdb/header.c:346 +#: rpmdb/header.c:351 msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "o valor RPM_STRING_TYPE do dataLength() tem de ser 1.\n" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format +#: rpmdb/header.c:2215 msgid "missing { after %" msgstr "falta um { depois do %" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 +#: rpmdb/header.c:2245 msgid "missing } after %{" msgstr "falta um } depois do %{" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 +#: rpmdb/header.c:2259 msgid "empty tag format" msgstr "formato da opçăo em branco" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 +#: rpmdb/header.c:2273 msgid "empty tag name" msgstr "nome da opçăo em branco" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 +#: rpmdb/header.c:2290 msgid "unknown tag" msgstr "opçăo desconhecida" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 +#: rpmdb/header.c:2317 msgid "] expected at end of array" msgstr "] esperado no fim do vector" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 +#: rpmdb/header.c:2335 msgid "unexpected ]" msgstr "] inesperado" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 +#: rpmdb/header.c:2339 msgid "unexpected }" msgstr "} inesperado" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 +#: rpmdb/header.c:2406 msgid "? expected in expression" msgstr "esperado um ? na expressăo" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 +#: rpmdb/header.c:2415 msgid "{ expected after ? in expression" msgstr "esperado um { a seguir ao ? na expressăo" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 +#: rpmdb/header.c:2428 rpmdb/header.c:2473 msgid "} expected in expression" msgstr "esperado um } na expressăo" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 +#: rpmdb/header.c:2438 msgid ": expected following ? subexpression" msgstr "esperado um : a seguir ŕ sub-expressăo ?" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 +#: rpmdb/header.c:2458 msgid "{ expected after : in expression" msgstr "esperado um { a seguir ao : na expressăo" #. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 +#: rpmdb/header.c:2483 msgid "| expected at end of expression" msgstr "esperado um | no fim da expressăo" -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "(tipo desconhecido)" - #: rpmdb/poptDB.c:19 msgid "initialize database" msgstr "inicializar a base de dados" #: rpmdb/poptDB.c:21 msgid "rebuild database inverted lists from installed package headers" -msgstr "reconstruir as listas invertidas da base dados com os cabeçalhos dos pacotes instalados" +msgstr "" +"reconstruir as listas invertidas da base dados com os cabeçalhos dos pacotes " +"instalados" #: rpmdb/poptDB.c:24 -#, fuzzy msgid "verify database files" -msgstr "pesquisar um ficheiro spec" +msgstr "verificar ficheiros da base de dados" #: rpmdb/poptDB.c:26 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "gerar os cabeçalhos compatíveis com o formato do rpm[23]" #. @-modfilesys@ -#: rpmdb/rpmdb.c:163 +#: rpmdb/rpmdb.c:166 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "dbiTagsInit: nome de opçăo năo reconhecido: \"%s\" ignorado\n" -#: rpmdb/rpmdb.c:440 +#: rpmdb/rpmdb.c:238 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "năo consigo abrir o índice de %s usando o db%d - %s (%d)\n" -#: rpmdb/rpmdb.c:462 +#: rpmdb/rpmdb.c:260 #, c-format msgid "cannot open %s index\n" msgstr "năo consigo abrir o índice do %s\n" -#: rpmdb/rpmdb.c:554 +#: rpmdb/rpmdb.c:701 +msgid "no dbpath has been set\n" +msgstr "năo foi definido o dbpath\n" + +#: rpmdb/rpmdb.c:991 rpmdb/rpmdb.c:1120 rpmdb/rpmdb.c:1169 rpmdb/rpmdb.c:2043 +#: rpmdb/rpmdb.c:2148 rpmdb/rpmdb.c:2835 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" -#: rpmdb/rpmdb.c:685 -#, c-format -msgid "error(%d) storing record %s into %s\n" +#: rpmdb/rpmdb.c:1384 +#, fuzzy, c-format +msgid "error(%d) storing record #%d into %s\n" msgstr "erro(%d) ao guardar o registo %s em %s\n" -#: rpmdb/rpmdb.c:695 -#, c-format -msgid "error(%d) removing record %s from %s\n" -msgstr "erro(%d) ao remover o registo %s do %s\n" - -#: rpmdb/rpmdb.c:959 -msgid "no dbpath has been set\n" -msgstr "năo foi definido o dbpath\n" - -#: rpmdb/rpmdb.c:1107 -msgid "" -"old format database is present; use --rebuilddb to generate a new format " -"database\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:1372 -#, c-format -msgid "error(%d) counting packages\n" -msgstr "erro(%d) ao contar os pacotes\n" - -#: rpmdb/rpmdb.c:2150 rpmdb/rpmdb.c:3502 -#, 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:2203 +#: rpmdb/rpmdb.c:1966 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" -msgstr "" +msgstr "rpmdb: recebida instância do cabeçalho #%u estragada, a ignorar.\n" -#: rpmdb/rpmdb.c:2473 +#: rpmdb/rpmdb.c:2231 #, 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:2634 +#: rpmdb/rpmdb.c:2292 +#, fuzzy, c-format +msgid "error(%d) setting header #%d record for %s removal\n" +msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" + +#: rpmdb/rpmdb.c:2403 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "a remover o \"%s\" do índice %s.\n" -#: rpmdb/rpmdb.c:2638 +#: rpmdb/rpmdb.c:2407 #, c-format msgid "removing %d entries from %s index.\n" msgstr "a remover %d registos do índice %s.\n" -#: rpmdb/rpmdb.c:2808 +#: rpmdb/rpmdb.c:2434 +#, fuzzy, c-format +msgid "error(%d) setting \"%s\" records from %s index\n" +msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n" + +#: rpmdb/rpmdb.c:2455 +#, fuzzy, c-format +msgid "error(%d) storing record \"%s\" into %s\n" +msgstr "erro(%d) ao guardar o registo %s em %s\n" + +#: rpmdb/rpmdb.c:2465 +#, fuzzy, c-format +msgid "error(%d) removing record \"%s\" from %s\n" +msgstr "erro(%d) ao remover o registo %s do %s\n" + +#: rpmdb/rpmdb.c:2607 #, 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:3003 +#: rpmdb/rpmdb.c:2811 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "a adicionar o \"%s\" ao índice %s.\n" -#: rpmdb/rpmdb.c:3007 +#: rpmdb/rpmdb.c:2815 #, c-format msgid "adding %d entries to %s index.\n" msgstr "a adicionar %d registos ao índice %s.\n" -#: rpmdb/rpmdb.c:3388 +#: rpmdb/rpmdb.c:2851 +#, c-format +msgid "error(%d) storing record %s into %s\n" +msgstr "erro(%d) ao guardar o registo %s em %s\n" + +#: rpmdb/rpmdb.c:3190 #, 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:3421 +#: rpmdb/rpmdb.c:3225 msgid "no dbpath has been set" msgstr "năo foi definido o dbpath" -#: rpmdb/rpmdb.c:3448 +#: rpmdb/rpmdb.c:3252 #, c-format msgid "rebuilding database %s into %s\n" msgstr "a reconstruir a base de dados %s em %s\n" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3256 #, c-format msgid "temporary database %s already exists\n" msgstr "A base de dados temporária %s já existe\n" -#: rpmdb/rpmdb.c:3458 +#: rpmdb/rpmdb.c:3262 #, c-format msgid "creating directory %s\n" msgstr "a criar a directoria %s\n" -#: rpmdb/rpmdb.c:3460 +#: rpmdb/rpmdb.c:3264 #, c-format msgid "creating directory %s: %s\n" msgstr "a criar a directoria %s: %s\n" -#: rpmdb/rpmdb.c:3467 +#: rpmdb/rpmdb.c:3271 #, 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:3478 +#: rpmdb/rpmdb.c:3282 #, 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:3542 -#, fuzzy, c-format +#: rpmdb/rpmdb.c:3306 +#, c-format +msgid "record number %u in database is bad -- skipping.\n" +msgstr "o número do registo %u na base de dados está errado -- a ignorar.\n" + +#: rpmdb/rpmdb.c:3346 +#, c-format msgid "cannot add record originally at %u\n" -msgstr "năo consigo adicionar o registo originalmente em %d\n" +msgstr "năo consigo adicionar o registo originalmente em %u\n" -#: rpmdb/rpmdb.c:3560 +#: rpmdb/rpmdb.c:3364 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" +msgstr "" +"falhou a reconstruçăo da base de dados: a base de dados original mantém-se\n" -#: rpmdb/rpmdb.c:3568 +#: rpmdb/rpmdb.c:3372 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:3570 +#: rpmdb/rpmdb.c:3374 #, 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:3580 +#: rpmdb/rpmdb.c:3384 #, c-format msgid "removing directory %s\n" msgstr "a remover a directoria %s\n" -#: rpmdb/rpmdb.c:3582 +#: rpmdb/rpmdb.c:3386 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "falhou a remoçăo da directoria %s: %s\n" -#: rpmio/macro.c:226 +#: rpmio/macro.c:225 #, c-format msgid "======================== active %d empty %d\n" msgstr "======================== activo %d vazio %d\n" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:354 #, c-format msgid "%3d>%*s(empty)" msgstr "%3d>%*s(vazio)" -#: rpmio/macro.c:396 +#: rpmio/macro.c:397 #, c-format msgid "%3d<%*s(empty)\n" msgstr "%3d<%*s(vazio)\n" -#: rpmio/macro.c:631 +#: rpmio/macro.c:632 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "A macro %%%s tem o conteúdo incompleto\n" -#: rpmio/macro.c:660 +#: rpmio/macro.c:661 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "A macro %%%s tem um nome inválido (%%define)\n" -#: rpmio/macro.c:666 +#: rpmio/macro.c:667 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "A macro %%%s tem as opçőes incompletas\n" -#: rpmio/macro.c:671 +#: rpmio/macro.c:672 #, c-format msgid "Macro %%%s has empty body\n" msgstr "A macro %%%s tem o conteúdo em branco\n" -#: rpmio/macro.c:677 +#: rpmio/macro.c:678 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "A macro %%%s năo conseguiu ser expandida\n" -#: rpmio/macro.c:714 +#: rpmio/macro.c:715 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" -msgstr "A macro %%%s tem um nome ilegal (%%%undefine)\n" +msgstr "A macro %%%s tem um nome ilegal (%%undefine)\n" -#: rpmio/macro.c:826 +#: rpmio/macro.c:831 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "A macro %%%s (%s) năo foi usada abaixo do nível %d\n" -#: rpmio/macro.c:946 +#: rpmio/macro.c:951 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "Opçăo desconhecida %c em %s(%s)\n" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1154 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "Nível de recursividade(%d) maior que o máximo(%d)\n" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1224 rpmio/macro.c:1241 #, c-format msgid "Unterminated %c: %s\n" msgstr "%c năo terminado: %s\n" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1282 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "Segue-se uma macro impossível de analisar ao %%\n" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1411 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "A macro %%%.*s năo foi encontrada, por isso foi ignorada\n" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1488 msgid "Target buffer overflow\n" msgstr "Sobrecarga do tampăo de destino\n" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1687 rpmio/macro.c:1693 #, c-format msgid "File %s: %s\n" msgstr "Ficheiro %s: %s\n" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1696 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "O ficheiro %s tem menos de %u bytes\n" -#: rpmio/rpmio.c:660 +#: rpmio/rpmio.c:654 msgid "Success" msgstr "Sucesso" -#: rpmio/rpmio.c:663 +#: rpmio/rpmio.c:657 msgid "Bad server response" msgstr "Resposta errada do servidor" -#: rpmio/rpmio.c:666 +#: rpmio/rpmio.c:660 msgid "Server I/O error" msgstr "Erro de E/S do servidor" -#: rpmio/rpmio.c:669 +#: rpmio/rpmio.c:663 msgid "Server timeout" msgstr "Tempo de espera pelo servidor expirado" -#: rpmio/rpmio.c:672 +#: rpmio/rpmio.c:666 msgid "Unable to lookup server host address" msgstr "Incapaz de descobrir o endereço da máquina do servidor" -#: rpmio/rpmio.c:675 +#: rpmio/rpmio.c:669 msgid "Unable to lookup server host name" msgstr "Incapaz de descobrir o nome da máquina do servidor" -#: rpmio/rpmio.c:678 +#: rpmio/rpmio.c:672 msgid "Failed to connect to server" msgstr "Năo consegui ligar ao servidor" -#: rpmio/rpmio.c:681 +#: rpmio/rpmio.c:675 msgid "Failed to establish data connection to server" msgstr "Năo consigo estabelecer uma ligaçăo de dados ao servidor" -#: rpmio/rpmio.c:684 +#: rpmio/rpmio.c:678 msgid "I/O error to local file" msgstr "Erro de E/S no ficheiro local" -#: rpmio/rpmio.c:687 +#: rpmio/rpmio.c:681 msgid "Error setting remote server to passive mode" msgstr "Erro ao configurar o servidor remoto para o modo passivo" -#: rpmio/rpmio.c:690 +#: rpmio/rpmio.c:684 msgid "File not found on server" msgstr "Ficheiro năo encontrado no servidor" -#: rpmio/rpmio.c:693 +#: rpmio/rpmio.c:687 msgid "Abort in progress" msgstr "Interrupçăo em progresso" -#: rpmio/rpmio.c:697 +#: rpmio/rpmio.c:691 msgid "Unknown or unexpected error" msgstr "Erro desconhecido ou inesperado" -#: rpmio/rpmio.c:1369 +#: rpmio/rpmio.c:1363 #, c-format msgid "logging into %s as %s, pw %s\n" msgstr "a ligar ao %s como %s com senha %s\n" @@ -3377,171 +3341,44 @@ msgstr "aviso: " msgid "memory alloc (%u bytes) returned NULL.\n" msgstr "a alocaçăo de memória (%u bytes) devolveu NULL.\n" -#: rpmio/url.c:119 +#: rpmio/url.c:118 #, c-format msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n" msgstr "aviso: u %p ctrl %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:139 +#: rpmio/url.c:138 #, c-format msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "aviso: u %p data %p nrefs != 0 (%s %s)\n" -#: rpmio/url.c:167 -#, fuzzy, c-format +#: rpmio/url.c:166 +#, c-format msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" -msgstr "aviso: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" +msgstr "aviso: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" -#: rpmio/url.c:264 +#: rpmio/url.c:262 #, c-format msgid "Password for %s@%s: " msgstr "Senha para o %s@%s: " -#: rpmio/url.c:289 rpmio/url.c:315 +#: rpmio/url.c:287 rpmio/url.c:313 #, c-format msgid "error: %sport must be a number\n" msgstr "erro: o %sport tem de ser um número\n" -#: rpmio/url.c:463 +#: rpmio/url.c:462 msgid "url port must be a number\n" msgstr "o porto do URL tem de ser um número\n" #. XXX Fstrerror -#: rpmio/url.c:529 +#: rpmio/url.c:528 #, c-format msgid "failed to create %s: %s\n" msgstr "năo consegui criar o %s: %s\n" -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "modo de verificaçăo do rpm (antigo)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "assinar um pacote (retira a assinatura actual)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "assinar um pacote (retira a assinatura actual)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "o pacote năo tem o nome de utilizador nem as listas de IDs (nunca deve ocorrer)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "o pacote năo tem o nome do grupo nem as listas de IDs (nunca deve ocorrer)\n" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "========== a realizar o tsort nos pacotes\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "assinar um pacote (retira a assinatura actual)" - -#, fuzzy -#~ msgid "========== Package RSA signature\n" -#~ msgstr "========== a realizar o tsort nos pacotes\n" - -#, fuzzy -#~ msgid "========== Package DSA signature\n" -#~ msgstr "========== a realizar o tsort nos pacotes\n" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "A gerar a assinatura usando o PGP.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "A gerar a assinatura usando o PGP.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "năo foram indicados pacote para desinstalar" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Năo consigo executar o pgp (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Năo consegui executar o gpg\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Năo consegui executar o pgp\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== mudanças de local\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d excluir o %s\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d mudar de local %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "a exclur a directoria 'multilib' %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "a excluir o %s %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "a mudar o %s para %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "a mudar a directoria %s para %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s SIM (ficheiros adicionados)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "o pacote %s está em conflito: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-3s (em cache)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s SIM (ficheiros db)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s SIM (pacote db)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s NĂO\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s SIM (oferecidos para adiçăo)\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "năo consigo a base de dados do RPM em %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "năo consigo abrir %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "adicionar uma assinatura a um pacote" - -#~ msgid "verify package signature" -#~ msgstr "verificar a assinatura do pacote" - -#~ msgid "skip any GPG signatures" -#~ msgstr "ignorar as assinaturas de GPG" - -#~ msgid "skip any PGP signatures" -#~ msgstr "ignorar as assinaturas de PGP" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "năo faz as verificaçőes de md5 dos ficheiros" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "indicados argumentos extra na pesquisa de todos os pacotes" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "indicados argumentos extra para a verificaçăo de todos os pacotes" - -#~ msgid "no packages given for signature check" -#~ msgstr "năo foram indicados pacotes para verificar as assinaturas" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3724,9 +3561,8 @@ msgstr "n #~ msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" #~ msgstr " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" -#, fuzzy #~ msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" -#~ msgstr " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +#~ msgstr " rpm {--verifydb} [--rcfile ] [--dbpath ]" #~ msgid " rpm {--querytags}" #~ msgstr " rpm {--querytags}" @@ -3874,7 +3710,9 @@ msgstr "n #~ msgid "" #~ "show all verifiable information for each file (must be used with -l, -c, " #~ "or -d)" -#~ msgstr "mostra toda a informaçăo visível para cada ficheiro (tem de ser usado com o -l, o -c ou o -d)" +#~ msgstr "" +#~ "mostra toda a informaçăo visível para cada ficheiro (tem de ser usado com " +#~ "o -l, o -c ou o -d)" #~ msgid "list capabilities package provides" #~ msgstr "lista as capacidades que o pacote oferece" @@ -3891,7 +3729,12 @@ msgstr "n #~ msgid "" #~ "verify a package installation using the same same package specification " #~ "options as -q" -#~ msgstr "verifica a instalaçăo dum pacote usando as mesmas opçőes de especificaçăo que o -q" +#~ msgstr "" +#~ "verifica a instalaçăo dum pacote usando as mesmas opçőes de especificaçăo " +#~ "que o -q" + +#~ msgid "do not verify file md5 checksums" +#~ msgstr "năo faz as verificaçőes de md5 dos ficheiros" #~ msgid "do not verify file attributes" #~ msgstr "năo verifica os atributos dos ficheiros" @@ -3938,9 +3781,8 @@ msgstr "n #~ msgid " --erase " #~ msgstr " --erase " -#, fuzzy #~ msgid " -e " -#~ msgstr " -i " +#~ msgstr " -e " #~ msgid "do not execute any package specific scripts" #~ msgstr "năo executa nenhuns scripts específicos do pacote" @@ -3996,7 +3838,9 @@ msgstr "n #~ msgid "" #~ "install source package, build binary package and remove spec file, " #~ "sources, patches, and icons." -#~ msgstr "instalar o pacote com código-fonte, criar o pacote binário e apagar o ficheiro spec, código, patches e ícones." +#~ msgstr "" +#~ "instalar o pacote com código-fonte, criar o pacote binário e apagar o " +#~ "ficheiro spec, código, patches e ícones." #~ msgid " --recompile " #~ msgstr " --recompile " @@ -4010,12 +3854,21 @@ msgstr "n #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "adicionar uma assinatura a um pacote" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " -K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "ignorar as assinaturas de PGP" + +#~ msgid "skip any GPG signatures" +#~ msgstr "ignorar as assinaturas de GPG" + #~ msgid "make sure a valid database exists" #~ msgstr "verificar se existe uma base de dados válida" @@ -4025,12 +3878,16 @@ msgstr "n #~ msgid "" #~ "set the file permissions to those in the package database using the same " #~ "package specification options as -q" -#~ msgstr "alterar as permissőes do ficheiro para as da base de dados do pacote usando as mesmas opçőes de especificaçăo do pacote que o -q" +#~ msgstr "" +#~ "alterar as permissőes do ficheiro para as da base de dados do pacote " +#~ "usando as mesmas opçőes de especificaçăo do pacote que o -q" #~ msgid "" #~ "set the file owner and group to those in the package database using the " #~ "same package specification options as -q" -#~ msgstr "alterar o dono e o grupo do ficheiro para as da base de dados do pacote usando as mesmas opçőes de especificaçăo do pacote que o -q" +#~ msgstr "" +#~ "alterar o dono e o grupo do ficheiro para as da base de dados do pacote " +#~ "usando as mesmas opçőes de especificaçăo do pacote que o -q" #~ msgid "-u and --uninstall are deprecated and no longer work.\n" #~ msgstr "o -u e o --uninstall estăo desactualizadas e já năo funcionam.\n" @@ -4043,15 +3900,15 @@ msgstr "n #~ "Use --macros com uma lista separada por ':' de ficheiros de macros a " #~ "ler.\n" -#, fuzzy #~ msgid "" #~ "script disabling options may only be specified during package " #~ "installation, erasure, and verification" -#~ msgstr "o --noscripts só pode ser usado na instalaçăo, remoçăo ou verificaçăo do pacote" +#~ msgstr "" +#~ "as opçőes de desactivaçăo de scripts só pode ser usadas na instalaçăo, " +#~ "remoçăo ou verificaçăo de pacotes" -#, fuzzy #~ msgid "--apply may only be specified during package installation" -#~ msgstr "o --allfiles só pode ser indicado durante a instalaçăo do pacote" +#~ msgstr "o --apply só pode ser indicado durante a instalaçăo de pacotes" #~ msgid "--oldpackage may only be used during upgrades" #~ msgstr "o --oldpackage só pode ser usado em actualizaçőes" @@ -4065,345 +3922,145 @@ msgstr "n #~ msgid "" #~ "--nomd5 may only be used during signature checking and package " #~ "verification" -#~ msgstr "o --nomd5 só pode ser usado na verificaçăo das assinaturas e do pacote" - -#~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" -#~ msgstr "Năo consegui correr o pgp. Use o --nopgp para ignorar as verificaçőes de PGP.\n" - -#~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" -#~ msgstr "Năo consegui correr o gpg. Use o --nogpg para ignorar as verificaçőes de GPG.\n" - -#, fuzzy -#~ msgid "generate GPG/PGP signature" -#~ msgstr "gerar a assinatura PGP/GPG" - -#~ msgid "cannot open package: %s\n" -#~ msgstr "năo consigo aceder ao pacote: %s\n" - -#~ msgid "Bad count for headerAddEntry(): %d\n" -#~ msgstr "Número do headerAddEntry inválido: %d\n" - -#~ msgid " All modes support the following options:" -#~ msgstr " Todos os modos suportam as seguintes opçőes:" - -#~ msgid " --define ' '" -#~ msgstr " --define ' '" - -#~ msgid " --eval '+' " -#~ msgstr " --eval '+' " - -#~ msgid "print the expansion of macro to stdout" -#~ msgstr "imprimir a expansăo da macro para o stdout" - -#~ msgid " --pipe " -#~ msgstr " --pipe " - -#~ msgid " --rcfile " -#~ msgstr " --rcfile " - -#~ msgid "use instead of default list of macro files" -#~ msgstr "usar o em vez da lista de ficheiros de macros por omissăo" - -#~ msgid " --dbpath " -#~ msgstr " --dbpath " - -#~ msgid " --root " -#~ msgstr " --root " - -#~ msgid "" -#~ " Install, upgrade and query (with -p) modes allow URL's to be used in " -#~ "place" -#~ msgstr " Os modos de instalaçăo, actualizaçăo e pesquisa (com o -p) permitem usar" - -#~ msgid " of file names as well as the following options:" -#~ msgstr "URLs em vez de nomes de ficheiros assim como as seguintes opçőes:" - -#~ msgid " --ftpproxy " -#~ msgstr " --ftpproxy " - -#~ msgid " --ftpport " -#~ msgstr " --ftpport " - -#~ msgid " --httpproxy " -#~ msgstr " --httpproxy " - -#~ msgid " --httpport " -#~ msgstr " --httpport " - -#~ msgid " Package specification options:" -#~ msgstr " Opçőes de especificaçăo do pacote:" - -#~ msgid " -f + " -#~ msgstr " -f + " - -#~ msgid "query/verify package owning " -#~ msgstr "pesquisar/verificar o pacote que contém o " - -#~ msgid " -p + " -#~ msgstr " -p + " - -#~ msgid "query/verify (uninstalled) package " -#~ msgstr "pesquisar/verificar o pacote (desinstalado) " - -#~ msgid " --triggeredby " -#~ msgstr " --triggeredby " - -#~ msgid "query/verify packages triggered by " -#~ msgstr "pesquisar/verificar os pacotes activados por " - -#~ msgid " --whatprovides " -#~ msgstr " --whatprovides " - -#~ msgid "query/verify packages which provide capability" -#~ msgstr "pesquisar/verificar os pacotes que oferecem a capacidade " - -#~ msgid " --whatrequires " -#~ msgstr " --whatrequires " - -#~ msgid "query/verify packages which require capability" -#~ msgstr "pesquisar/verificar os pacotes que precisam da capacidade " - -#~ msgid " --queryformat " -#~ msgstr " --queryformat
" - -#~ msgid " Information selection options:" -#~ msgstr " Opçőes de selecçăo da informaçăo:" - -#~ msgid "list capabilities provided by package" -#~ msgstr "mostrar as capacidades oferecidas pelo pacote" - -#~ msgid "list capabilities required by package" -#~ msgstr "mostrar as capacidades necessárias para o pacote" - -#~ msgid "print the various [un]install scriptlets" -#~ msgstr "mostrar os vários 'scriptlets' de [des]instalaçăo" - -#~ msgid "show the trigger scriptlets contained in the package" -#~ msgstr "mostrar os 'scriptlets' de activaçăo do pacote" - -#~ msgid "do not execute scripts (if any)" -#~ msgstr "năo executar os scripts (se existirem)" - -#~ msgid " --install " -#~ msgstr " --install " - -#~ msgid " -i " -#~ msgstr " -i " - -#~ msgid " --excludepath " -#~ msgstr " --excludepath " - -#~ msgid "don't execute any installation scriptlets" -#~ msgstr "năo executar nenhuns 'scriptlets' de instalaçăo" - -#~ msgid "don't execute any scriptlets triggered by this package" -#~ msgstr "năo executar nenhuns 'scriptlets' activados por este pacote" - -#~ msgid " --prefix " -#~ msgstr " --prefix " - -#~ msgid " --relocate =" -#~ msgstr " --relocate =" - -#~ msgid " --upgrade " -#~ msgstr " --upgrade " - -#~ msgid " -U " -#~ msgstr " -U " - -#~ msgid " --erase " -#~ msgstr " --erase " - -#, fuzzy -#~ msgid " -e " -#~ msgstr " -K + " - -#~ msgid " --resign + " -#~ msgstr " --resign + " - -#~ msgid " --addsign + " -#~ msgstr " --addsign + " - -#~ msgid " --checksig +" -#~ msgstr " --checksig +" - -#~ msgid " -K + " -#~ msgstr " -K + " - -#~ msgid "initalize database (unnecessary, legacy use)" -#~ msgstr "inicializar a base de dados (uso diverso e desnecessário)" - -#~ msgid "rebuild database indices from existing database headers" -#~ msgstr "reconstruir os índices da base de dados a partir dos cabeçalhos existentes" - -#~ msgid "closed db environment %s/%s\n" -#~ msgstr "fechei o ambiente do db %s/%s\n" - -#~ msgid "removed db environment %s/%s\n" -#~ msgstr "removi o ambiente do db %s/%s\n" - -#~ msgid "closed db index %s/%s\n" -#~ msgstr "fechei o índice do db %s/%s\n" - -#~ 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" - -#~ msgid "locked db index %s/%s\n" -#~ msgstr "tranquei o índice do db %s/%s\n" - -#~ msgid "" -#~ "--notriggers may only be specified during package installation, erasure, " -#~ "and verification" -#~ msgstr "o --notriggers só pode ser indicado durante a instalaçăo, remoçăo ou verificaçăo do pacote" - -#~ msgid " %s {--initdb} [--dbpath ]\n" -#~ msgstr " %s {--initdb} [--dbpath ]\n" - -#~ msgid " %s {--rebuilddb} [--rcfile ] [--dbpath ]\n" #~ msgstr "" -#~ " %s {--rebuilddb} [--rcfile ] [--dbpath ]\n" +#~ "o --nomd5 só pode ser usado na verificaçăo das assinaturas e do pacote" + +#~ msgid "no packages given for signature check" +#~ msgstr "năo foram indicados pacotes para verificar as assinaturas" + +#~ msgid "no packages given for signing" +#~ msgstr "năo foram indicados pacotes para assinar" + +#~ msgid "no packages given for uninstall" +#~ msgstr "năo foram indicados pacote para desinstalar" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "indicados argumentos extra na pesquisa de todos os pacotes" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "indicados argumentos extra para a verificaçăo de todos os pacotes" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s SIM (ficheiros adicionados)\n" + +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-s (em cache)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s SIM (ficheiros db)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s SIM (pacote db)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s NĂO\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) adicionado ŕ cache de dependęncias.\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "requisito %s-%s-%s do pacote năo satisfeito: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "o pacote %s está em conflito: %s\n" + +#~ msgid "use chainsaw dependency tree decimation when ordering" +#~ msgstr "utilizar árvore de dependęncia em 'chainsaw' ao ordenar" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "modo de verificaçăo do rpm (antigo)" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: a leitura do manifesto falhou: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "năo consigo abrir %s/packages.rpm\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "A gerar a assinatura usando o PGP.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "A gerar a assinatura usando o PGP.\n" + +#~ msgid "========== relocations\n" +#~ msgstr "========== mudanças de local\n" + +#~ msgid "%5d exclude %s\n" +#~ msgstr "%5d excluir o %s\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d mudar de local %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "a exclur a directoria 'multilib' %s%s\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "a excluir o %s %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "a mudar o %s para %s\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "a mudar a directoria %s para %s\n" #~ msgid "" -#~ " %s {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]\n" +#~ "package lacks both user name and id lists (this should never happen)\n" #~ msgstr "" -#~ " %s {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]\n" +#~ "o pacote năo tem o nome de utilizador nem as listas de IDs (nunca deve " +#~ "ocorrer)\n" #~ msgid "" -#~ " [--rcfile ] [--ignorearch] [--dbpath " -#~ "]" +#~ "package lacks both group name and id lists (this should never happen)\n" #~ msgstr "" -#~ " [--rcfile ] [--ignorearch] [--dbpath " -#~ "]" +#~ "o pacote năo tem o nome do grupo nem as listas de IDs (nunca deve " +#~ "ocorrer)\n" -#~ msgid "" -#~ " [--excludedocs] [--includedocs] [--rcfile " -#~ "]" +#~ msgid "%s-%s-%s: immutable header region digest check failed\n" #~ msgstr "" -#~ " [--excludedocs] [--includedocs] [--rcfile " -#~ "]" +#~ "%s-%s-%s: verificaçăo do 'digest' na área imutável do cabeçalho falhou\n" #~ msgid "" -#~ " %s {--erase -e} [--root ] [--noscripts] [--rcfile ]\n" +#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" #~ msgstr "" -#~ " %s {--erase -e} [--root ] [--noscripts] [--rcfile " -#~ "]\n" +#~ "Cadeia do pacote partida no deslocamento %d(0x%08x), a tentar ligar ...\n" + +#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" +#~ msgstr "A ligar cadeia partida no deslocamento %d(0x%08x).\n" + +#~ msgid "closed db file %s\n" +#~ msgstr "fechei o ficheiro do db %s\n" + +#~ msgid "removed db file %s\n" +#~ msgstr "removi o ficheiro do db %s\n" + +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "a aceder ao ficheiro db %s modo 0x%x\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "năo consegui adquirir exclusivamente o %s na base de dados\n" #~ msgid "" -#~ " [--scripts] [--root ] [--rcfile ]" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" #~ msgstr "" -#~ " [--scripts] [--root ] [--rcfile ]" +#~ "lista de livres corrompida (%u)- por favor\n" +#~ "corra o \"rpm --rebuilddb\"\n" +#~ "Existe mais informaçăo disponível em http://www.rpm.org ou na\n" +#~ "'mailing list' rpm-list@redhat.com\n" +#~ "se o \"rpm --rebuild\" năo conseguir corrigir o problema.\n" #~ msgid "" -#~ " %s {--verify -V -y} [-afpg] [--root ] [--rcfile ]\n" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" #~ msgstr "" -#~ " %s {--verify -V -y} [-afpg] [--root ] [--rcfile ]\n" +#~ "está presente uma base de dados antiga; use o --rebuildb para gerar uma " +#~ "base de dados no novo formato\n" -#~ msgid " %s {--setperms} [-afpg] [target]\n" -#~ msgstr " %s {--setperms} [-afpg] [alvo]\n" +#~ msgid "error(%d) counting packages\n" +#~ msgstr "erro(%d) ao contar os pacotes\n" -#~ msgid " %s {--setugids} [-afpg] [target]\n" -#~ msgstr " %s {--setugids} [-afpg] [alvo]\n" - -#~ msgid "" -#~ " %s {--resign} [--rcfile ] package1 package2 ... " -#~ "packageN\n" -#~ msgstr "" -#~ " %s {--resign} [--rcfile ] pacote1 pacote2 ... pacoteN\n" - -#~ msgid "" -#~ " %s {--addsign} [--rcfile ] package1 package2 ... packageN" -#~ msgstr "" -#~ " %s {--addsign} [--rcfile ] pacote1 pacote2 ... " -#~ "pacoteN" - -#~ msgid "" -#~ " %s {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile " -#~ "]\n" -#~ msgstr "" -#~ " %s {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile " -#~ "]\n" - -#~ msgid "archive = %s, fs = %s\n" -#~ msgstr "pacote = %s, fs = %s\n" - -#~ msgid "can't rename %s to %s: %s\n" -#~ msgstr "năo consigo mudar o nome de %s para %s: %s\n" - -#~ msgid "can't unlink %s: %s\n" -#~ msgstr "năo consigo remover o %s: %s\n" - -#~ msgid "getNextHeader: %s\n" -#~ msgstr "getNextHeader: %s\n" - -#~ msgid " file: %s action: %s\n" -#~ msgstr " ficheiro: %s acçăo: %s\n" - -#~ msgid "installing a source package\n" -#~ msgstr "a instalar um pacote de código-fonte\n" - -#~ msgid "cannot create sourcedir %s\n" -#~ msgstr "năo consigo criar a directoria de origem %s\n" - -#~ msgid "sources in: %s\n" -#~ msgstr "código-fonte em: %s\n" - -#~ msgid "cannot create specdir %s\n" -#~ msgstr "năo consigo criar a directoria de spec %s\n" - -#~ msgid "spec file in: %s\n" -#~ msgstr "ficheiro spec em: %s\n" - -#~ msgid "renaming %s to %s\n" -#~ msgstr "a mudar o nome de %s para %s\n" - -#~ msgid "rename of %s to %s failed: %s\n" -#~ msgstr "Năo consegui mudar o nome de %s para %s: %s\n" - -#~ msgid "stopping install as we're running --test\n" -#~ msgstr "a parar a instalaçăo dado que estamos a correr o --test\n" - -#~ msgid "running preinstall script (if any)\n" -#~ msgstr "a correr o programa de pré-instalaçăo (se existir)\n" - -#~ msgid "skipping %s-%s-%s install, %%pre scriptlet failed rc %d\n" -#~ msgstr "a ignorar a instalaçăo do %s-%s-%s, o 'scriptlet' %%pre falhou, rc %d\n" - -#~ msgid "removal of %s failed: %s\n" -#~ msgstr "a remoçăo do %s falhou: %s\n" - -#~ msgid "will remove files test = %d\n" -#~ msgstr "irá remover o teste dos ficheiros = %d\n" - -#~ msgid "running postuninstall script (if any)\n" -#~ msgstr "a correr o programa de pós-instalaçăo (se existir)\n" - -#~ msgid "" -#~ "retrieval of return code of %s scriptlet from %s-%s-%s failed, waitpid " -#~ "returned %s\n" -#~ msgstr "obtençăo do código de retorno do 'scriplet' %s do %s-%s-%s falhou, o waitpid devolveu %s\n" - -#~ msgid " --timecheck " -#~ msgstr " --timecheck " - -#~ msgid "set the time check to seconds (0 disables)" -#~ msgstr "alterar a verificaçăo de tempo para segundos (0 desactiva)" - -#~ msgid "counting packages to install\n" -#~ msgstr "a contar os pacotes a instalar\n" - -#~ msgid "found %d packages\n" -#~ msgstr "encontrados %d pacotes\n" - -#~ msgid "looking for packages to download\n" -#~ msgstr "ŕ procura dos pacotes a transferir\n" - -#~ msgid "skipping %s - rpmGlob failed(%d)\n" -#~ msgstr "a ignorar o %s - o rpmGlob falhou(%d)\n" - -#~ msgid "retrieved %d packages\n" -#~ msgstr "obtidos %d pacotes\n" - -#~ msgid "%s does not appear to be a RPM package\n" -#~ msgstr "o %s năo parece ser um pacote RPM\n" +#~ msgid "(unknown type)" +#~ msgstr "(tipo desconhecido)" diff --git a/po/pt_BR.po b/po/pt_BR.po index b985939e7..0a48a071c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -452,7 +452,7 @@ msgstr "no foram passados arquivos tar para construo" #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "no foram passados pacotes para assinatura" +msgstr "no foi passado pacote para instalao" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1944,7 +1944,7 @@ msgstr "no execute nenhum estgio" #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "instale pacote" +msgstr "no verifique as dependncias do pacote" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2754,7 +2754,7 @@ msgstr "no foi passado pacote para instalao" #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "no foi passado pacote para instalao" +msgstr "no foi passado pacote para desinstalao" #: lib/rpmps.c:278 #, c-format @@ -2995,8 +2995,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "instale pacote" #: lib/signature.c:1073 #, fuzzy @@ -3623,174 +3624,11 @@ msgstr "" msgid "failed to create %s: %s\n" msgstr "No consegui abrir o pipe tar: %s\n" -# , c-format -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "No consegui abrir: %s\n" - -# , c-format -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "No consegui abrir: %s\n" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "reconstrua o banco de dados a partir de um banco de dados existente" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "no foi passado pacote para desinstalao" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "no foi passado pacote para instalao" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "instale pacote" - -#, fuzzy -#~ msgid "failed dependencies:\n" -#~ msgstr "lista dependncias do pacote" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "modo pesquisa" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "assine um pacote (descarte a assinatura corrente)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "assine um pacote (descarte a assinatura corrente)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "gere assinatura PGP" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "gere assinatura PGP" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "assine um pacote (descarte a assinatura corrente)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "gere assinatura PGP" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "gere assinatura PGP" - -#~ msgid "no packages given for uninstall" -#~ msgstr "no foi passado pacote para desinstalao" - -# , c-format -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "No consegui ler o arquivo spec de %s\n" - -# , c-format -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "No consegui ler o arquivo spec de %s\n" - -# , c-format -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "No consegui ler o arquivo spec de %s\n" - -# "Project-Id-Version: rpm-2.5.3\n" -# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n" -# "Last-Translator: Arnaldo Carvalho de Melo \n" -# "Language-Team: Portuguese \n" -# "MIME-Version: 1.0\n" -# "Content-Type: text/plain; charset=ISO-8859-1\n" -# "Content-Transfer-Encoding: 8-bit\n" -# , c-format -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "RPM verso %s\n" - -# , c-format -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "No consegui abrir: %s\n" - -# "Project-Id-Version: rpm-2.5.3\n" -# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n" -# "Last-Translator: Arnaldo Carvalho de Melo \n" -# "Language-Team: Portuguese \n" -# "MIME-Version: 1.0\n" -# "Content-Type: text/plain; charset=ISO-8859-1\n" -# "Content-Transfer-Encoding: 8-bit\n" -# , c-format -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "RPM verso %s\n" - -# "Project-Id-Version: rpm-2.5.3\n" -# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n" -# "Last-Translator: Arnaldo Carvalho de Melo \n" -# "Language-Team: Portuguese \n" -# "MIME-Version: 1.0\n" -# "Content-Type: text/plain; charset=ISO-8859-1\n" -# "Content-Transfer-Encoding: 8-bit\n" -# , c-format -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "RPM verso %s\n" - -# , c-format -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "No consegui abrir: %s\n" - -#, fuzzy -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "no foi passado pacote para desinstalao" - -# , c-format -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "No consegui ler o arquivo spec de %s\n" - # , c-format #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "No consegui abrir: %s\n" -#~ msgid "add a signature to a package" -#~ msgstr "adicione uma assinatura a um pacote" - -#~ msgid "verify package signature" -#~ msgstr "verifique a assinatura do pacote" - -#, fuzzy -#~ msgid "skip any GPG signatures" -#~ msgstr "desconsidere quaisquer assinaturas PGP" - -#~ msgid "skip any PGP signatures" -#~ msgstr "desconsidere quaisquer assinaturas PGP" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "no verifique os checksums md5 do arquivo" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "" -#~ "foram passados argumentos em excesso para pesquisa em todos os pacotes" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "" -#~ "foram passados argumentos em excesso para pesquisa em todos os pacotes" - -#~ msgid "no packages given for signature check" -#~ msgstr "nenhum pacote informado para checagem de assinatura" - #, fuzzy #~ msgid "Usage: rpm {--help}" #~ msgstr "uso: rpm {--help}" @@ -4135,6 +3973,9 @@ msgstr "No consegui abrir o pipe tar: %s\n" #~ "verifique uma instalao de pacote usando as mesmas opes de especificao de " #~ "pacote do -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "no verifique os checksums md5 do arquivo" + #~ msgid "do not verify file attributes" #~ msgstr "no verifique os atributos dos arquivos" @@ -4236,6 +4077,9 @@ msgstr "No consegui abrir o pipe tar: %s\n" #~ msgid " --addsign + " #~ msgstr " -b " +#~ msgid "add a signature to a package" +#~ msgstr "adicione uma assinatura a um pacote" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " -b " @@ -4244,6 +4088,13 @@ msgstr "No consegui abrir o pipe tar: %s\n" #~ msgid " -K + " #~ msgstr " -b " +#~ msgid "skip any PGP signatures" +#~ msgstr "desconsidere quaisquer assinaturas PGP" + +#, fuzzy +#~ msgid "skip any GPG signatures" +#~ msgstr "desconsidere quaisquer assinaturas PGP" + #~ msgid "make sure a valid database exists" #~ msgstr "certifique que um banco de dados vlido existe" @@ -4301,6 +4152,122 @@ msgstr "No consegui abrir o pipe tar: %s\n" #~ "--nopgp somente pode ser usado durante checagem de assinaturas e " #~ "verificao de pacotes" +#~ msgid "no packages given for signature check" +#~ msgstr "nenhum pacote informado para checagem de assinatura" + +#~ msgid "no packages given for signing" +#~ msgstr "no foram passados pacotes para assinatura" + +#~ msgid "no packages given for uninstall" +#~ msgstr "no foi passado pacote para desinstalao" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "" +#~ "foram passados argumentos em excesso para pesquisa em todos os pacotes" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "" +#~ "foram passados argumentos em excesso para pesquisa em todos os pacotes" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "no foi passado pacote para instalao" + +#, fuzzy +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "no foi passado pacote para desinstalao" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "modo pesquisa" + +# , c-format +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "No consegui abrir: %s\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "gere assinatura PGP" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "gere assinatura PGP" + +# "Project-Id-Version: rpm-2.5.3\n" +# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n" +# "Last-Translator: Arnaldo Carvalho de Melo \n" +# "Language-Team: Portuguese \n" +# "MIME-Version: 1.0\n" +# "Content-Type: text/plain; charset=ISO-8859-1\n" +# "Content-Transfer-Encoding: 8-bit\n" +# , c-format +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "RPM verso %s\n" + +# , c-format +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "No consegui abrir: %s\n" + +# "Project-Id-Version: rpm-2.5.3\n" +# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n" +# "Last-Translator: Arnaldo Carvalho de Melo \n" +# "Language-Team: Portuguese \n" +# "MIME-Version: 1.0\n" +# "Content-Type: text/plain; charset=ISO-8859-1\n" +# "Content-Transfer-Encoding: 8-bit\n" +# , c-format +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "RPM verso %s\n" + +# "Project-Id-Version: rpm-2.5.3\n" +# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n" +# "Last-Translator: Arnaldo Carvalho de Melo \n" +# "Language-Team: Portuguese \n" +# "MIME-Version: 1.0\n" +# "Content-Type: text/plain; charset=ISO-8859-1\n" +# "Content-Transfer-Encoding: 8-bit\n" +# , c-format +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "RPM verso %s\n" + +# , c-format +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "No consegui abrir: %s\n" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "reconstrua o banco de dados a partir de um banco de dados existente" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "no foi passado pacote para desinstalao" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "no foi passado pacote para instalao" + +# , c-format +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "No consegui ler o arquivo spec de %s\n" + +# , c-format +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "No consegui ler o arquivo spec de %s\n" + +# , c-format +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "No consegui ler o arquivo spec de %s\n" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "gere assinatura PGP" @@ -4704,6 +4671,10 @@ msgstr "No consegui abrir o pipe tar: %s\n" #~ msgid "query the packages which provide a capability" #~ msgstr "pesquise pacotes que fornecem a capacidade " +#, fuzzy +#~ msgid "New Header signature\n" +#~ msgstr "gere assinatura PGP" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "no foi passado pacote para instalao" @@ -4765,10 +4736,6 @@ msgstr "No consegui abrir o pipe tar: %s\n" #~ msgstr "" #~ " [--sign] [--test] [--timecheck ] arquivo-spec" -#, fuzzy -#~ msgid "query package owning file" -#~ msgstr "pesquise o pacote ao qual pertence" - # , c-format #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" diff --git a/po/ru.po b/po/ru.po index 4d0efea51..ccdca289e 100644 --- a/po/ru.po +++ b/po/ru.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "POT-Creation-Date: 2002-05-28 12:01-0400\n" -"PO-Revision-Date: 2001-08-29 13:55-0400\n" -"Last-Translator: Eugene Kanter \n" -"Language-Team: Black Cat Linux Team \n" +"PO-Revision-Date: 2002-04-09 16:44-0400\n" +"Last-Translator: Eugene Kanter, \n" +"Language-Team: Black Cat Linux Team \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=KOI8-R\n" "Content-Transfer-Encoding: 8bit\n" "Date: 1999-04-03 12:20+0200\n" -"X-Generator: KBabel 0.8\n" +"X-Generator: KBabel 0.9.5\n" #: build.c:40 #, fuzzy @@ -421,9 +421,8 @@ msgid "no tar files given for build" msgstr "ÎĹ ÚÁÄÁÎŮ tar-ĆÁĘĚŮ ÄĚŃ ÓÂĎŇËÉ ĐÁËĹÔÁ" #: rpmqv.c:1056 -#, fuzzy msgid "no packages given for erase" -msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĎÄĐÉÓÉ" +msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÄÁĚĹÎÉŃ" #: rpmqv.c:1097 msgid "no packages given for install" @@ -632,9 +631,9 @@ msgid "Bad owner/group: %s\n" msgstr "îĹ×ĹŇÎÁŃ ĐÁŇÁ ×ĚÁÄĹĚĹĂ/ÇŇŐĐĐÁ: %s\n" #: build/files.c:1611 -#, fuzzy, c-format +#, c-format msgid "File%5d: %07o %s.%s\t %s\n" -msgstr "ćÁĘĚ %4d: %07o %s.%s\t %s\n" +msgstr "ćÁĘĚ%5d: %07o %s.%s\t %s\n" #: build/files.c:1720 #, c-format @@ -670,7 +669,7 @@ msgstr " #: build/files.c:2280 #, c-format msgid "Couldn't exec %s: %s\n" -msgstr "îĹ×ĎÚÍĎÖÎĎ ×ŮĚÎÉÔŘ %s: %s\n" +msgstr "îĹ×ĎÚÍĎÖÎĎ ×ŮĐĎĚÎÉÔŘ %s: %s\n" #: build/files.c:2285 #, c-format @@ -902,7 +901,7 @@ msgid "bad date in %%changelog: %s\n" msgstr "ÎĹ×ĹŇÎÁŃ ÄÁÔÁ × %%changelog: %s\n" #: build/parseChangelog.c:155 -#, fuzzy, c-format +#, c-format msgid "%%changelog not in descending chronological order\n" msgstr "%%changelog ÎĹ × ÎÉÓČĎÄŃÝĹÍ ČŇĎÎĎĚĎÇÉŢĹÓËĎÍ ĐĎŇŃÄËĹ\n" @@ -1494,13 +1493,12 @@ msgstr "========== #. T4. Scan for zeroes. #: lib/depends.c:1313 -#, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" "========== ÓĎŇÔÉŇĎ×ËÁ ĐÁËĹÔĎ× (ĎŢĹŇĹÄÎĎÓÔŘ, #predecessors, #succesors, " -"ÇĚŐÂÉÎÁ)\n" +"ÄĹŇĹ×Ď, ÇĚŐÂÉÎÁ)\n" #: lib/depends.c:1406 msgid "========== successors only (presentation order)\n" @@ -1526,18 +1524,16 @@ msgid "(not a number)" msgstr "(ÎĹ ŢÉÓĚĎ)" #: lib/formats.c:139 -#, fuzzy msgid "(not base64)" -msgstr "(ÎĹ ŢÉÓĚĎ)" +msgstr "(ÎĹ base64)" #: lib/formats.c:149 msgid "(invalid type)" -msgstr "" +msgstr "(ÎĹĐŇÁ×ÉĚŘÎŮĘ ÔÉĐ)" #: lib/formats.c:211 lib/formats.c:256 -#, fuzzy msgid "(not a blob)" -msgstr "(ÎĹ ŢÉÓĚĎ)" +msgstr "" #: lib/fs.c:75 #, c-format @@ -1671,10 +1667,9 @@ msgstr " #: lib/poptI.c:80 msgid "rollback takes a time/date stamp argument" -msgstr "" +msgstr "ĎÔËÁÔ ÔŇĹÂŐĹÔ ÁŇÇŐÍĹÎÔ ×ŇĹÍĹÎÉ" #: lib/poptI.c:87 -#, fuzzy msgid "malformed rollback time/date stamp argument" msgstr "ÎĹĐŇÁ×ÉĚŘÎŮĘ ĆĎŇÍÁÔ ×ŇĹÍĹÎÉ ĎÔËÁÔÁ" @@ -1800,7 +1795,7 @@ msgstr " #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ĆÁĘĚŮ ÎÁ ËĎÎÔŇĎĚŘÎŐŔ ÓŐÍÍŐ MD5" +msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ÚÁ×ÉÓÉÍĎÓÔÉ ĐÁËĹÔÁ" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1868,7 +1863,6 @@ msgid "reinstall if the package is already present" msgstr "ĐĹŇĹŐÓÔÁÎĎ×ÉÔŘ, ĹÓĚÉ ĐÁËĹÔ ŐÖĹ ŐÓÔÁÎĎ×ĚĹÎ" #: lib/poptI.c:229 -#, fuzzy msgid "deinstall new, reinstall old, package(s), back to " msgstr "" "ŐÄÁĚÉÔŘ ÎĎ×ŮĘ(Ĺ) ĐÁËĹÔ(Ů), ĐĹŇĹŐÓÔÁÎĎ×ÉÔŘ ÓÔÁŇŮĘ(Ĺ) ĐÁËĹÔ(Ů), ĎÂŇÁÔÎĎ ÎÁ " @@ -1900,27 +1894,24 @@ msgid "query/verify package(s) owning file" msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ, ËĎÔĎŇĎÍŐ ĐŇÉÎÁÄĚĹÖÉÔ ĆÁĘĚ" #: lib/poptQV.c:101 -#, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ, ËĎÔĎŇĎÍŐ ĐŇÉÎÁÄĚĹÖÉÔ ĆÁĘĚ" +msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ(Ů) ĐĎ ÉÄĹÎÔÉĆÉËÁÔĎŇŐ ĆÁĘĚÁ" #: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔŮ × ÇŇŐĐĐĹ" #: lib/poptQV.c:105 -#, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ, ËĎÔĎŇĎÍŐ ĐŇÉÎÁÄĚĹÖÉÔ ĆÁĘĚ" +msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ(Ů), ĐĎ ÉÄĹÎÔÉĆÉËÁÔĎŇŐ ÚÁÇĎĚĎ×ËÁ" #: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĆÁĘĚ ĐÁËĹÔÁ (Ô.Ĺ. *.rpm ĆÁĘĚ Ä×ĎÉŢÎĎÇĎ ĐÁËĹÔÁ)" #: lib/poptQV.c:109 -#, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ, ËĎÔĎŇĎÍŐ ĐŇÉÎÁÄĚĹÖÉÔ ĆÁĘĚ" +msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ(Ů) ĐĎ ÉÄĹÎÔÉĆÉËÁÔĎŇŐ ĐÁËĹÔÁ" #: lib/poptQV.c:111 msgid "rpm query mode" @@ -1939,9 +1930,8 @@ msgid "" msgstr "<ĆÁĘĚ ÓĐĹĂÉĆÉËÁĂÉÉ>" #: lib/poptQV.c:119 -#, fuzzy msgid "query/verify package(s) from install transaction" -msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔŮ × ÇŇŐĐĐĹ" +msgstr "ÚÁĐŇĎÓÉÔŘ/ĐŇĎ×ĹŇÉÔŘ ĐÁËĹÔ(Ů) ÉÚ ÔŇÁÎÚÁËĂÉÉ ŐÓÔÁÎĎ×ËÉ" #: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" @@ -2219,7 +2209,7 @@ msgstr " #: lib/query.c:664 lib/rpminstall.c:513 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" -msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ×Ú×ĎÄÉÔ ÔŇÉÇÇĹŇ %s\n" +msgstr "ÎÉ ĎÄÉÎ ĐÁËĹÔ ÎĹ ĐĎÄČĎÄÉÔ Ë %s: %s\n" #: lib/query.c:708 #, c-format @@ -2241,14 +2231,14 @@ msgid "no package triggers %s\n" msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ×Ú×ĎÄÉÔ ÔŇÉÇÇĹŇ %s\n" #: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 -#, fuzzy, c-format +#, c-format msgid "malformed %s: %s\n" -msgstr "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢĹÓÔŘ %s: %s.\n" +msgstr "ĎŰÉÂËÁ ĆĎŇÍÁÔÁ %s: %s.\n" #: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 -#, fuzzy, c-format +#, c-format msgid "no package matches %s: %s\n" -msgstr "ÎÉ ĎÄÉÎ ÉÚ ĐÁËĹÔĎ× ÎĹ ×Ú×ĎÄÉÔ ÔŇÉÇÇĹŇ %s\n" +msgstr "ÎÉ ĎÄÉÎ ĐÁËĹÔ ÎĹ ĐĎÄČĎÄÉÔ Ë %s: %s\n" #: lib/query.c:867 #, c-format @@ -2298,7 +2288,7 @@ msgstr " #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s YES (db provides)\n" +msgstr "%s: %-45s YES (added provide)\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2346,7 +2336,7 @@ msgstr "%s: #: lib/rpmchecksig.c:828 msgid "NOT OK" -msgstr "îĺ Oë" +msgstr "îĺ ďë" #: lib/rpmchecksig.c:829 lib/rpmchecksig.c:843 msgid " (MISSING KEYS:" @@ -2366,7 +2356,7 @@ msgstr ")" #: lib/rpmchecksig.c:842 msgid "OK" -msgstr "Oë" +msgstr "ďë" #: lib/rpmds.c:423 lib/rpmds.c:582 msgid "NO " @@ -2395,7 +2385,7 @@ msgstr " %s A %s\tB %s\n" #: lib/rpmds.c:605 #, fuzzy, c-format msgid "package %s has unsatisfied %s: %s\n" -msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" +msgstr "ĐÁËĹÔ %s ÓĎÄĹŇÖÉÔ ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÔŇĹÂĎ×ÁÎÉŃ: %s\n" #: lib/rpminstall.c:165 msgid "Preparing..." @@ -2485,9 +2475,9 @@ msgid "Installing %s\n" msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ %s\n" #: lib/rpminstall.c:1064 -#, c-format +#, fuzzy, c-format msgid "rollback %d packages to %s" -msgstr "" +msgstr "ĎÔËÁÔÉÔŘ (+%d,-%d) ĐÁËĹÔŮ Ë %s" #: lib/rpmlead.c:47 #, c-format @@ -2527,7 +2517,8 @@ msgstr " #: lib/rpmps.c:240 #, c-format msgid "file %s from install of %s conflicts with file from package %s" -msgstr "ĆÁĘĚ %s ÉÚ ŐÓÔÁÎĎ×ĚĹÎÎĎÇĎ ĐÁËĹÔÁ %s ËĎÎĆĚÉËÔŐĹÔ Ó ĆÁĘĚĎÍ ÉÚ ĐÁËĹÔÁ %s" +msgstr "" +"ĆÁĘĚ %s ÉÚ ŐÓÔÁÎÁ×ĚÉ×ÁĹÍĎÇĎ ĐÁËĹÔÁ %s ËĎÎĆĚÉËÔŐĹÔ Ó ĆÁĘĚĎÍ ÉÚ ĐÁËĹÔÁ %s" #: lib/rpmps.c:245 #, c-format @@ -2550,14 +2541,14 @@ msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "ĐÁËĹÔ %s pre-transaction syscall(s): %s: ĎŰÉÂËÁ: %s" #: lib/rpmps.c:269 -#, fuzzy, c-format +#, c-format msgid "package %s has unsatisfied Requires: %s\n" -msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" +msgstr "ĐÁËĹÔ %s ÓĎÄĹŇÖÉÔ ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÔŇĹÂĎ×ÁÎÉŃ: %s\n" #: lib/rpmps.c:273 -#, fuzzy, c-format +#, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" +msgstr "ĐÁËĹÔ %s ÓĎÄĹŇÖÉÔ ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ëĎÎĆĚÉËÔŮ: %s\n" #: lib/rpmps.c:278 #, c-format @@ -2677,7 +2668,7 @@ msgstr " #. Get available space on mounted file systems. #: lib/rpmts.c:560 msgid "getting list of mounted filesystems\n" -msgstr "ĐĎĚŐŢĹÎÉĹ ÓĐÉÓËÁ ÓÍĎÎÔÉŇĎ×ÁÎÎŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ\n" +msgstr "" #: lib/signature.c:126 msgid "file is not regular -- skipping size check\n" @@ -2713,9 +2704,9 @@ msgstr " #: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677 #: lib/signature.c:710 -#, fuzzy, c-format +#, c-format msgid "Could not exec %s: %s\n" -msgstr "îĹ×ĎÚÍĎÖÎĎ ×ŮĚÎÉÔŘ %s: %s\n" +msgstr "îĹ×ĎÚÍĎÖÎĎ ×ŮĐĎĚÎÉÔŘ %s: %s\n" #: lib/signature.c:329 msgid "pgp failed\n" @@ -2788,8 +2779,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ËĎÎÔŇĎĚŘÎŐŔ ÓŐÍÍŐ SHA1 ÚÁÇĎĚĎ×ËÁ ĐÁËĹÔÁ" #: lib/signature.c:1073 #, fuzzy @@ -2811,7 +2803,7 @@ msgstr "" #: lib/signature.c:1286 msgid "Broken MD5 digest: UNSUPPORTED\n" -msgstr "" +msgstr "ëĎÎÔŇ. ÓŐÍÍÁ MD5 ĐĎ×ŇĹÖÄĹÎÁ: îĺ đďääĺňöé÷áĺôóń\n" #: lib/signature.c:1290 #, fuzzy, c-format @@ -3359,9 +3351,9 @@ msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "×ÎÉÍÁÎÉĹ: u %p data %p nrefs != 0 (%s %s)\n" #: rpmio/url.c:166 -#, fuzzy, c-format +#, c-format msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" -msgstr "×ÎÉÍÁÎÉĹ: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" +msgstr "ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" #: rpmio/url.c:262 #, c-format @@ -3383,197 +3375,9 @@ msgstr "url msgid "failed to create %s: %s\n" msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ %s: %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "îĹ×ĹŇÎŮĘ magic" - -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: ĎŰÉÂËÁ ŢÔĹÎÉŃ ÓĐÉÓËÁ ĆÁĘĚĎ×: %s\n" - -#~ msgid "%s-%s-%s: immutable header region digest check failed\n" -#~ msgstr "%s-%s-%s: ÎĹĐŇÁ×ÉĚŘÎÁŃ ĐĎÄĐÉÓŘ ĎÂĚÁÓÔÉ ÚÁÇĎĚĎ×ËÁ ĐÁËĹÔÁ\n" - -#~ msgid "" -#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" -#~ msgstr "" -#~ "ăĹĐĎŢËÁ ĐÁËĹÔĎ× ĎÂĎŇ×ÁÎÁ ÎÁ ÓÍĹÝĹÎÉÉ %d(0x%08x), ĐĎĐŮÔËÁ ÓĎĹÄÉÎĹÎÉŃ...\n" - -#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" -#~ msgstr "óĎĹÄÉÎŃĹÔÓŃ ĎÂĎŇ×ÁÎÎÁŃ Ó×ŃÚŘ × ÓÍĹÝĹÎÉÉ %d(0x%08x).\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "ÚÁËŇŮÔ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" - -#~ msgid "removed db file %s\n" -#~ msgstr "ŐÄÁĚŁÎ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" - -#~ msgid "bad db file %s\n" -#~ msgstr "ÎĹ×ĹŇÎŮĘ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" - -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "ĎÔËŇŮ×ĹÔÓŃ ĆÁĘĚ %s ÂÁÚŮ ÄÁÎÎŮČ × ŇĹÖÉÍĹ 0x%x\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐĎĚŐŢÉÔŘ ÂĚĎËÉŇĎ×ËŐ %s ÂÁÚŮ ÄÁÎÎŮČ\n" - -#~ msgid "error(%d) counting packages\n" -#~ msgstr "ĎŰÉÂËÁ(%d) ĐŇÉ ĐĎÄÓŢŁÔĹ ĐÁËĹÔĎ×\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "ĐĎ×ŇĹÖÄĹÎ ÓĐÉÓĎË Ó×ĎÂĎÄÎŮČ ÚÁĐÉÓĹĘ (%u) - ĐĎÖÁĚŐĘÓÔÁ ÚÁĐŐÓÔÉÔĹ\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "âĎĚĹĹ ĐĎÄŇĎÂÎÁŃ ÉÎĆĎŇÍÁĂÉŃ ÄĎÓÔŐĐÎÁ ÎÁ http://www.rpm.org ÉĚÉ × ÓĐÉÓËĹ " -#~ "ŇÁÓÓŮĚËÉ rpm-list@redhat.com\n" - -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "ÎÁĘÄĹÎÁ ÂÁÚÁ ÄÁÎÎŮČ ÓÔÁŇĎÇĎ ĆĎŇÍÁÔÁ; ÉÓĐĎĚŘÚŐĘÔĹ --rebuilddb ÄĚŃ " -#~ "ÇĹÎĹŇÁĂÉÉ ÂÁÚŮ ÄÁÎÎŮČ ÎĎ×ĎÇĎ ĆĎŇÍÁÔÁ\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ĐŐÔŘ ÓÉÍ×ĎĚÉŢĹÓËÉČ ÓÓŮĚĎË" - -#~ msgid "failed dependencies:\n" -#~ msgstr "ÎĹŐÄĎ×ĚĹÔ×ĎŇĹÎÎŮĹ ÚÁ×ÉÓÉÍĎÓÔÉ:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) ÄĎÂÁ×ĚĹÎĎ × ËĹŰ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n" - -#~ msgid "(unknown type)" -#~ msgstr "(ÎĹÉÚ×ĹÓÔÎŮĘ ÔÉĐ)" - -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "ŇĹÖÉÍ ĐŇĎ×ĹŇËÉ rpm (ÓÔÁŇŮĘ)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "ĐĎÄĐÉÓÁÔŘ ĐÁËĹÔ (ŐÄÁĚÉ× ÔĹËŐÝŐŔ ĐĎÄĐÉÓŘ)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "ĐĎÄĐÉÓÁÔŘ ĐÁËĹÔ (ŐÄÁĚÉ× ÔĹËŐÝŐŔ ĐĎÄĐÉÓŘ)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "× ĐÁËĹÔĹ ÎĹÔ ÎÉ ÉÍĹÎ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ, ÎÉ ÓĐÉÓËÁ ÉČ ÉÄĹÎÔÉĆÉËÁÔĎŇĎ× (ÔÁËĎÇĎ " -#~ "ÎĹ ÄĎĚÖÎĎ ÂŮÔŘ)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "× ĐÁËĹÔĹ ÎĹÔ ÎÉ ÉÍĹÎ ÇŇŐĐĐ, ÎÉ ÓĐÉÓËÁ ÉČ ÉÄĹÎÔÉĆÉËÁÔĎŇĎ× (ÔÁËĎÇĎ ÎĹ " -#~ "ÄĎĚÖÎĎ ÂŮÔŘ)\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "ĐĎÄĐÉÓÁÔŘ ĐÁËĹÔ (ŐÄÁĚÉ× ÔĹËŐÝŐŔ ĐĎÄĐÉÓŘ)" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ PGP.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ GPG.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÄÁĚĹÎÉŃ" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "î×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ pgp (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ gpg\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ pgp\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== ĐĹŇĹÍĹÝĹÎÉĘ\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d ÉÓËĚŔŢĹÎ %s\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d ĐĹŇĹÍĹÝĹÎÉĹ %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "ÉÓËĚŔŢÁĹÔÓŃ ÍÎĎÇĎÂÉÂĚÉĎÔĹŢÎŮĘ ĐŐÔŘ %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "ÉÓËĚŔŢÁĹÔÓŃ %s %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ %s × %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ ËÁÔÁĚĎÇ %s × %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s YES (added files)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "ĐÁËĹÔ %s ËĎÎĆĚÉËÔŐĹÔ Ó: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-s (cached)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s YES (db files)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s YES (db package)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s NO\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s YES (added provide)\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ÂÁÚŐ ÄÁÎÎŮČ RPM × %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "ĎŰÉÂËÁ ĎÔËŇŮÔÉŃ %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "ÄĎÂÁ×ÉÔŘ ĐĎÄĐÉÓŘ Ë ĐÁËĹÔŐ" - -#~ msgid "verify package signature" -#~ msgstr "ĐŇĎ×ĹŇÉÔŘ ĐĎÄĐÉÓŘ × ĐÁËĹÔĹ" - -#~ msgid "skip any GPG signatures" -#~ msgstr "ĐŇĎĐŐÓÔÉÔŘ ×ÓĹ GPG-ĐĎÄĐÉÓÉ" - -#~ msgid "skip any PGP signatures" -#~ msgstr "ĐŇĎĐŐÓÔÉÔŘ ×ÓĹ PGP-ĐĎÄĐÉÓÉ" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ËĎÎÔŇĎĚŘÎŮĹ md5-ÓŐÍÍŮ ĆÁĘĚĎ×" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "× ÚÁĐŇĎÓĹ ËĎ ×ÓĹÍ ĐÁËĹÔÁÍ ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "× ÚÁĐŇĎÓĹ ×ĹŇÉĆÉËÁĂÉÉ ×ÓĹČ ĐÁËĹÔĎ× ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ" - -#~ msgid "no packages given for signature check" -#~ msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐŇĎ×ĹŇËÉ ĐĎÄĐÉÓÉ" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3925,6 +3729,9 @@ msgstr " #~ "ĐŇĎ×ĹŇÉÔŘ ĐŇÁ×ÉĚŘÎĎÓÔŘ ŐÓÔÁÎĎ×ËÉ ĐÁËĹÔÁ, ÉÓĐĎĚŘÚŐŃ ÔĹ ÖĹ ĐÁŇÁÍĹÔŇŮ " #~ "ÓĐĹĂÉĆÉËÁĂÉÉ ĐÁËĹÔÁ, ËĎÔĎŇŮĹ ÉÓĐĎĚŘÚŐŔÔÓŃ Ó -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ËĎÎÔŇĎĚŘÎŮĹ md5-ÓŐÍÍŮ ĆÁĘĚĎ×" + #~ msgid "do not verify file attributes" #~ msgstr "ÎĹ ĐŇĎ×ĹŇŃÔŘ ÁÔÔŇÉÂŐÔŮ ĆÁĘĚĎ×" @@ -3992,7 +3799,7 @@ msgstr " #~ msgstr "list check (ĐŇĎÉÚ×ĹÓÔÉ ĐŇĎ×ĹŇËŐ ÓĹËĂÉÉ %files)" #~ msgid "compile (prep and compile)" -#~ msgstr "compile (ÉÓĐĎĚÎÉÔŘ %prep É %build)" +#~ msgstr "compile (prep É compile)" #~ msgid "install (prep, compile, install)" #~ msgstr "install (ÉÓĐĎĚÎÉÔŘ %prep, %build É %install)" @@ -4044,12 +3851,21 @@ msgstr " #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "ÄĎÂÁ×ÉÔŘ ĐĎÄĐÉÓŘ Ë ĐÁËĹÔŐ" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " -K <ĐÁËĹÔ>+ " +#~ msgid "skip any PGP signatures" +#~ msgstr "ĐŇĎĐŐÓÔÉÔŘ ×ÓĹ PGP-ĐĎÄĐÉÓÉ" + +#~ msgid "skip any GPG signatures" +#~ msgstr "ĐŇĎĐŐÓÔÉÔŘ ×ÓĹ GPG-ĐĎÄĐÉÓÉ" + #~ msgid "make sure a valid database exists" #~ msgstr "ŐÂĹÄÉÔŘÓŃ, ŢÔĎ ÓŐÝĹÓÔ×ŐĹÔ ĐŇÁ×ÉĚŘÎÁŃ ÂÁÚÁ ÄÁÎÎŮČ" @@ -4106,12 +3922,134 @@ msgstr " #~ "--nomd5 ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎ ÔĎĚŘËĎ ĐŇÉ ĐŇĎ×ĹŇËĹ ĐĎÄĐÉÓÉ É ×ĹŇÉĆÉËÁĂÉÉ " #~ "ĐÁËĹÔÁ" -#~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" -#~ msgstr "" -#~ "î×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ pgp. éÓĐĎĚŘÚŐĘÔĹ --nopgp ŢÔĎÂŮ ĐŇĎĐŐÓÔÉÔŘ ĐŇĎ×ĹŇËŐ " -#~ "PGP ĐĎÄĐÉÓĹĘ.\n" +#~ msgid "no packages given for signature check" +#~ msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐŇĎ×ĹŇËÉ ĐĎÄĐÉÓÉ" -#~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" +#~ msgid "no packages given for signing" +#~ msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ĐĎÄĐÉÓÉ" + +#~ msgid "no packages given for uninstall" +#~ msgstr "ÎĹ ÚÁÄÁÎŮ ĐÁËĹÔŮ ÄĚŃ ŐÄÁĚĹÎÉŃ" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "× ÚÁĐŇĎÓĹ ËĎ ×ÓĹÍ ĐÁËĹÔÁÍ ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "× ÚÁĐŇĎÓĹ ×ĹŇÉĆÉËÁĂÉÉ ×ÓĹČ ĐÁËĹÔĎ× ÚÁÄÁÎŮ ĚÉŰÎÉĹ ÁŇÇŐÍĹÎÔŮ" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s YES (added files)\n" + +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-s (cached)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s YES (db files)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s YES (db package)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s NO\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) ÄĎÂÁ×ĚĹÎĎ × ËĹŰ ÚÁ×ÉÓÉÍĎÓÔĹĘ\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "ÔŇĹÂĎ×ÁÎÉŃ ĐÁËĹÔÁ %s-%s-%s ÎĹ ŐÄĎ×ĚĹÔ×ĎŇĹÎŮ: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "ĐÁËĹÔ %s ËĎÎĆĚÉËÔŐĹÔ Ó: %s\n" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "ŇĹÖÉÍ ĐŇĎ×ĹŇËÉ rpm (ÓÔÁŇŮĘ)" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: ĎŰÉÂËÁ ŢÔĹÎÉŃ ÓĐÉÓËÁ ĆÁĘĚĎ×: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "ĎŰÉÂËÁ ĎÔËŇŮÔÉŃ %s/packages.rpm\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ PGP.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐĎÄĐÉÓŘ GPG.\n" + +#~ msgid "========== relocations\n" +#~ msgstr "========== ĐĹŇĹÍĹÝĹÎÉĘ\n" + +#~ msgid "%5d exclude %s\n" +#~ msgstr "%5d ÉÓËĚŔŢĹÎ %s\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d ĐĹŇĹÍĹÝĹÎÉĹ %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "ÉÓËĚŔŢÁĹÔÓŃ ÍÎĎÇĎÂÉÂĚÉĎÔĹŢÎŮĘ ĐŐÔŘ %s%s\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "ÉÓËĚŔŢÁĹÔÓŃ %s %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ %s × %s\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "ĐĹŇĹÍĹÝÁĹÔÓŃ ËÁÔÁĚĎÇ %s × %s\n" + +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" #~ msgstr "" -#~ "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ gpg. éÓĐĎĚŘÚŐĘÔĹ --nogpg ŢÔĎÂŮ ĐŇĎĐŐÓÔÉÔŘ ĐŇĎ×ĹŇËŐ " -#~ "GPG ĐĎÄĐÉÓĹĘ.\n" +#~ "× ĐÁËĹÔĹ ÎĹÔ ÎÉ ÉÍĹÎ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ, ÎÉ ÓĐÉÓËÁ ÉČ ÉÄĹÎÔÉĆÉËÁÔĎŇĎ× (ÔÁËĎÇĎ " +#~ "ÎĹ ÄĎĚÖÎĎ ÂŮÔŘ)\n" + +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "× ĐÁËĹÔĹ ÎĹÔ ÎÉ ÉÍĹÎ ÇŇŐĐĐ, ÎÉ ÓĐÉÓËÁ ÉČ ÉÄĹÎÔÉĆÉËÁÔĎŇĎ× (ÔÁËĎÇĎ ÎĹ " +#~ "ÄĎĚÖÎĎ ÂŮÔŘ)\n" + +#~ msgid "%s-%s-%s: immutable header region digest check failed\n" +#~ msgstr "%s-%s-%s: ÎĹĐŇÁ×ÉĚŘÎÁŃ ĐĎÄĐÉÓŘ ĎÂĚÁÓÔÉ ÚÁÇĎĚĎ×ËÁ ĐÁËĹÔÁ\n" + +#~ msgid "" +#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" +#~ msgstr "" +#~ "ăĹĐĎŢËÁ ĐÁËĹÔĎ× ĎÂĎŇ×ÁÎÁ ÎÁ ÓÍĹÝĹÎÉÉ %d(0x%08x), ĐĎĐŮÔËÁ ÓĎĹÄÉÎĹÎÉŃ...\n" + +#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" +#~ msgstr "óĎĹÄÉÎŃĹÔÓŃ ĎÂĎŇ×ÁÎÎÁŃ Ó×ŃÚŘ × ÓÍĹÝĹÎÉÉ %d(0x%08x).\n" + +#~ msgid "closed db file %s\n" +#~ msgstr "ÚÁËŇŮÔ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" + +#~ msgid "removed db file %s\n" +#~ msgstr "ŐÄÁĚŁÎ ĆÁĘĚ ÂÁÚŮ ÄÁÎÎŮČ %s\n" + +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "ĎÔËŇŮ×ĹÔÓŃ ĆÁĘĚ %s ÂÁÚŮ ÄÁÎÎŮČ × ŇĹÖÉÍĹ 0x%x\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĐĎĚŐŢÉÔŘ ÂĚĎËÉŇĎ×ËŐ %s ÂÁÚŮ ÄÁÎÎŮČ\n" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "ĐĎ×ŇĹÖÄĹÎ ÓĐÉÓĎË Ó×ĎÂĎÄÎŮČ ÚÁĐÉÓĹĘ (%u) - ĐĎÖÁĚŐĘÓÔÁ ÚÁĐŐÓÔÉÔĹ\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "âĎĚĹĹ ĐĎÄŇĎÂÎÁŃ ÉÎĆĎŇÍÁĂÉŃ ÄĎÓÔŐĐÎÁ ÎÁ http://www.rpm.org ÉĚÉ × ÓĐÉÓËĹ " +#~ "ŇÁÓÓŮĚËÉ rpm-list@redhat.com\n" + +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "ÎÁĘÄĹÎÁ ÂÁÚÁ ÄÁÎÎŮČ ÓÔÁŇĎÇĎ ĆĎŇÍÁÔÁ; ÉÓĐĎĚŘÚŐĘÔĹ --rebuilddb ÄĚŃ " +#~ "ÇĹÎĹŇÁĂÉÉ ÂÁÚŮ ÄÁÎÎŮČ ÎĎ×ĎÇĎ ĆĎŇÍÁÔÁ\n" + +#~ msgid "error(%d) counting packages\n" +#~ msgstr "ĎŰÉÂËÁ(%d) ĐŇÉ ĐĎÄÓŢŁÔĹ ĐÁËĹÔĎ×\n" diff --git a/po/sk.po b/po/sk.po index 6f6aac682..07aae738e 100644 --- a/po/sk.po +++ b/po/sk.po @@ -422,7 +422,7 @@ msgstr "neboli zadan #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "neboli zadané žiadne balíky na podpis" +msgstr "neboli zadané žiadne balíky pre inštaláciu" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1474,9 +1474,8 @@ msgid "(cached)" msgstr "" #: lib/depends.c:416 -#, fuzzy msgid "(rpmrc provides)" -msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" +msgstr "" #: lib/depends.c:432 #, fuzzy @@ -1824,7 +1823,7 @@ msgstr "nevykona #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "zobraziť súbory v balíku" +msgstr "neoverovať závislosti balíka" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1929,7 +1928,7 @@ msgstr "op #: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "opýtať sa na balík vlastniaci " +msgstr "opýtať sa balíku vlastniaceho súbor" #: lib/poptQV.c:103 #, fuzzy @@ -1939,7 +1938,7 @@ msgstr "op #: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "opýtať sa na balík vlastniaci " +msgstr "opýtať sa balíku vlastniaceho súbor" #: lib/poptQV.c:107 #, fuzzy @@ -1949,7 +1948,7 @@ msgstr "op #: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "opýtať sa na balík vlastniaci " +msgstr "opýtať sa balíku vlastniaceho súbor" #: lib/poptQV.c:111 #, fuzzy @@ -2345,9 +2344,8 @@ msgid "(added files)" msgstr "chybný stav súboru: %s" #: lib/rpmal.c:765 -#, fuzzy msgid "(added provide)" -msgstr "Poskytuje:" +msgstr "" #: lib/rpmchecksig.c:58 #, fuzzy, c-format @@ -2436,9 +2434,9 @@ msgid "" msgstr "" #: lib/rpmds.c:581 -#, fuzzy, c-format +#, c-format msgid " %s A %s\tB %s\n" -msgstr " rpm {--version}" +msgstr "" #. @=branchstate@ #: lib/rpmds.c:605 @@ -2607,7 +2605,7 @@ msgstr "po #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "požiadavka balíka %s nie je uspokojená: %s\n" +msgstr "balík %s koliduje: %s\n" #: lib/rpmps.c:278 #, c-format @@ -2843,8 +2841,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "zobraziť súbory v balíku" #: lib/signature.c:1073 #, fuzzy @@ -3443,195 +3442,10 @@ msgstr "url port mus msgid "failed to create %s: %s\n" msgstr "nepodarilo sa vytvoriť %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Chybné magické číslo" - -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: readLead zlyhalo\n" - -#, fuzzy -#~ msgid "removed db file %s\n" -#~ msgstr "odstraňuje sa index súborov pre %s\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "chybný stav súboru: %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "otvára sa databáza s právami 0x%x v %s\n" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "nie je možné získať %s zámok pre databázu" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "chyba pri hľadaní balíka %s\n" - -#, fuzzy -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "existuje databáza v starom formáte; použite --rebuilddb pre vytvorenie " -#~ "databázy v novom formáte" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "zobraziť súbory v balíku" - -#~ msgid "failed dependencies:\n" -#~ msgstr "nevyriešené závislosti:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" - -#~ msgid "(unknown type)" -#~ msgstr "(neznámy typ)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "režim otázok" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "podpísať balík (zničiť aktuálny podpis)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "podpísať balík (zničiť aktuálny podpis)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "v balíku chýba tak meno používateľa, ako aj zoznamy identifikácií (nemalo " -#~ "by sa nikdy stať)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by " -#~ "sa nikdy stať)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "Nová hlavička podpisu\n" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "Nová hlavička podpisu\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "podpísať balík (zničiť aktuálny podpis)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "Vytvára sa PGP podpis: %d\n" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "Vytvára sa PGP podpis: %d\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "neboli zadané žiadne balíky pre odinštalovanie" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Nie je možné spustiť pgp" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Nie je možné spustiť gpg" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Nie je možné spustiť pgp" - -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "OS je vynechaný: %s" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "presúva sa %s do %s\n" - -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "vynecháva sa %s\n" - -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "vynecháva sa %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "presúva sa %s do %s\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "presúva sa %s do %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "balík %s koliduje: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db provides)\n" -#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "súbor %s: %s\n" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "nie je možné otvoriť %s/packages.rpm\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "nie je možné otvoriť %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "pridať podpis balíku" - -#~ msgid "verify package signature" -#~ msgstr "overiť podpis balíka" - -#~ msgid "skip any GPG signatures" -#~ msgstr "vynechať akékoľvek GPG podpisy" - -#~ msgid "skip any PGP signatures" -#~ msgstr "vynechať akékoľvek PGP podpisy" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "neoverovať md5 kontrolné súčty súborov" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky" - -#~ msgid "no packages given for signature check" -#~ msgstr "neboli zadané žiadne balíky pre overenie podpisu" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -4013,6 +3827,9 @@ msgstr "nepodarilo sa vytvori #~ "overiť inštaláciu balíka s použitím rovnakých volieb špecifikácia balíka " #~ "ako pre -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "neoverovať md5 kontrolné súčty súborov" + #~ msgid "do not verify file attributes" #~ msgstr "neoverovať atribúty súborov" @@ -4134,6 +3951,9 @@ msgstr "nepodarilo sa vytvori #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "pridať podpis balíku" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " --checksig + " @@ -4142,6 +3962,12 @@ msgstr "nepodarilo sa vytvori #~ msgid " -K + " #~ msgstr " --resign + " +#~ msgid "skip any PGP signatures" +#~ msgstr "vynechať akékoľvek PGP podpisy" + +#~ msgid "skip any GPG signatures" +#~ msgstr "vynechať akékoľvek GPG podpisy" + #~ msgid "make sure a valid database exists" #~ msgstr "uistiť sa, že existuje platná databáza" @@ -4194,6 +4020,132 @@ msgstr "nepodarilo sa vytvori #~ "verification" #~ msgstr "--nomd5 môže byť použíté iba počas overenia podpisu alebo balíka" +#~ msgid "no packages given for signature check" +#~ msgstr "neboli zadané žiadne balíky pre overenie podpisu" + +#~ msgid "no packages given for signing" +#~ msgstr "neboli zadané žiadne balíky na podpis" + +#~ msgid "no packages given for uninstall" +#~ msgstr "neboli zadané žiadne balíky pre odinštalovanie" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "boli zadané nadbytočné argumenty otázky pre všetky balíky" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "súbor %s nie je vlastnený žiadnym balíkom\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "požiadavka balíka %s nie je uspokojená: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "balík %s koliduje: %s\n" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "režim otázok" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: readLead zlyhalo\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "nie je možné otvoriť %s/packages.rpm\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "Vytvára sa PGP podpis: %d\n" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "Vytvára sa PGP podpis: %d\n" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "OS je vynechaný: %s" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "presúva sa %s do %s\n" + +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "vynecháva sa %s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "vynecháva sa %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "presúva sa %s do %s\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "presúva sa %s do %s\n" + +#, fuzzy +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "v balíku chýba tak meno používateľa, ako aj zoznamy identifikácií (nemalo " +#~ "by sa nikdy stať)" + +#, fuzzy +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by " +#~ "sa nikdy stať)" + +#, fuzzy +#~ msgid "removed db file %s\n" +#~ msgstr "odstraňuje sa index súborov pre %s\n" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "otvára sa databáza s právami 0x%x v %s\n" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "nie je možné získať %s zámok pre databázu" + +#, fuzzy +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "existuje databáza v starom formáte; použite --rebuilddb pre vytvorenie " +#~ "databázy v novom formáte" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "chyba pri hľadaní balíka %s\n" + +#~ msgid "(unknown type)" +#~ msgstr "(neznámy typ)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Nie je možné spustiť pgp" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Nie je možné spustiť gpg" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "" @@ -4204,6 +4156,10 @@ msgstr "nepodarilo sa vytvori #~ msgstr "" #~ "Nie je možné spustiť gpg. Použite --nogpg pre vynechanie GPG kontrol." +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Nie je možné spustiť pgp" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "vytvoriť PGP/GPG podpis" @@ -4708,6 +4664,9 @@ msgstr "nepodarilo sa vytvori #~ msgid "expected size : %d\n" #~ msgstr "očakávaná veľkosť: %d\n" +#~ msgid "New Header signature\n" +#~ msgstr "Nová hlavička podpisu\n" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "balík %s nie je nainštalovaný\n" @@ -4821,6 +4780,10 @@ msgstr "nepodarilo sa vytvori #~ " rpm {--recompile} [--rcfile ] [-v] zdroj1.rpm ... zdrojN." #~ "rpm" +#, fuzzy +#~ msgid " %s {--version}\n" +#~ msgstr " rpm {--version}" + #, fuzzy #~ msgid "" #~ " %s {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]\n" @@ -4841,9 +4804,6 @@ msgstr "nepodarilo sa vytvori #~ msgid " [--sign] [--nobuild] ]" #~ msgstr " [--sign] [--nobuild] [--timecheck ] ]" -#~ msgid "query package owning file" -#~ msgstr "opýtať sa balíku vlastniaceho súbor" - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "nie je možné otvoriť %s/packages.rpm\n" diff --git a/po/sl.po b/po/sl.po index 0720fe18e..e93aa792b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,7 +1,7 @@ # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr. # Copyright (C) 2000 Free Software Foundation, Inc. # Primož Peterlin , 2000. -# $Id: sl.po,v 1.249 2002/05/28 16:23:31 jbj Exp $ +# $Id: sl.po,v 1.250 2002/06/01 15:48:10 jbj Exp $ # msgid "" msgstr "" @@ -421,7 +421,7 @@ msgstr "arhiv tar za izgradnjo manjka" #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "paketi katere bi bilo potrebno podpisati niso navedeni" +msgstr "paketi katere bi bilo potrebno namestiti niso navedeni" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1825,7 +1825,7 @@ msgstr "brez izvajanja katerekoli stopen izgradnje" #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "brez preverjanja datotek v paketu" +msgstr "brez preverjanja soodvisnosti paketa" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1930,7 +1930,7 @@ msgstr "poizvedba po paketu, ki vsebuje " #: lib/poptQV.c:101 #, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "poizvedba po paketu, ki vsebuje " +msgstr "poizvedba po paketu, ki vsebuje datoteko" #: lib/poptQV.c:103 #, fuzzy @@ -1940,7 +1940,7 @@ msgstr "poizvedba po paketu v skupini" #: lib/poptQV.c:105 #, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "poizvedba po paketu, ki vsebuje " +msgstr "poizvedba po paketu, ki vsebuje datoteko" #: lib/poptQV.c:107 #, fuzzy @@ -1950,7 +1950,7 @@ msgstr "poizvedba po paketu" #: lib/poptQV.c:109 #, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "poizvedba po paketu, ki vsebuje " +msgstr "poizvedba po paketu, ki vsebuje datoteko" #: lib/poptQV.c:111 #, fuzzy @@ -2346,7 +2346,7 @@ msgstr "po #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s DA (db ponudbe)\n" +msgstr "%s: %-45s DA (dodane ponudbe)\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2608,7 +2608,7 @@ msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" +msgstr "paket %s jw v sporu z: %s\n" #: lib/rpmps.c:278 #, fuzzy, c-format @@ -2844,8 +2844,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "brez preverjanja datotek v paketu" #: lib/signature.c:1073 #, fuzzy @@ -3448,208 +3449,10 @@ msgstr "vrata URL morajo biti msgid "failed to create %s: %s\n" msgstr "neuspešno ustvarjanje %s: %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Napačno magično število" - -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: branje Fread je bilo neuspešno: %s\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "zaprta datoteka db %s\n" - -#, fuzzy -#~ msgid "removed db file %s\n" -#~ msgstr "odstranjena datoteka db %s\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "poškodovana zbirka podatkov %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "odpiranje datoteke %s v načinu 0x%x\n" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "datoteke ni možno %s zakleniti" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "napaka(%d) pri štetju paketov" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "seznam prostih okvarjen (%u)- prosimo, poženite\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "Če \"rpm --rebuilddb\" ne reši problema, so dodatne informacije na voljo\n" -#~ "na strani http://www.rpm.org ali po dopisni listi rpm-list@redhat.com.\n" - -#, fuzzy -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "da bi staro obliko zbirke podatkov pretvorili v novo poženite --rebuilddb" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "brez preverjanja datotek v paketu" - -#~ msgid "failed dependencies:\n" -#~ msgstr "neuspešne soodvisnosti:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n" - -#~ msgid "(unknown type)" -#~ msgstr "(neznan tip)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "poizvedbeni način (opuščen)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "podpiši paket(e) (trenutni podpis zavrzi)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "podpiši paket(e) (trenutni podpis zavrzi)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "v paketu manjka tako seznam uporabnikov kot identitet (to se ne sme " -#~ "zgoditi)" - -#, fuzzy -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "v paketu manjka tako seznam skupin kot identitet (to se ne sme zgoditi)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "Podpis v novi glavi\n" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "Podpis v novi glavi\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "podpiši paket(e) (trenutni podpis zavrzi)" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "Ustvarjanje podpisa s PGP.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "Ustvarjanje podpisa z GnuPG.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "paketi katere bi bilo potrebno odstraniti niso navedeni" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Ni možno pognati pgp (%s)" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Ni možno pognati gpg" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Ni možno pognati pgp" - -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "OS je izključen: %s" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "premikanje %s v %s\n" - -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "izključevanje datoteke %s%s\n" - -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "izključevanje datoteke %s%s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "premikanje %s v %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "premiokanje imenika %s v %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s DA (dodane datoteke)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "paket %s jw v sporu z: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-3s (predpomnjeno)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s DA (db datoteke)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %s zadovoljen ob paketih db.\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s NE\n" - -#, fuzzy -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s DA (dodane ponudbe)\n" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "datoteke %s/packages.rpm ni mogožno odpreti\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "datoteke %s/packages.rpm ni možno odpreti\n" - -#~ msgid "add a signature to a package" -#~ msgstr "paketu(-om) dodaj podpis" - -#~ msgid "verify package signature" -#~ msgstr "preveri podpis paketa(-ov)" - -#~ msgid "skip any GPG signatures" -#~ msgstr "preskoči vse podpise GPG" - -#~ msgid "skip any PGP signatures" -#~ msgstr "preskoči vse podpise PGP" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "brez preverjanja nadzorne vsote md5" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "pri poizvedbi paketov so podani odvečni argumenti" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "pri preverjanju paketov so podani odvečni argumenti" - -#~ msgid "no packages given for signature check" -#~ msgstr "paketi za katere bi bilo potrebno preveriti podpis niso navedeni" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -4017,6 +3820,9 @@ msgstr "neuspe #~ "options as -q" #~ msgstr "namestitev paketa preverimo z enakimi izbirnimi določili kot -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "brez preverjanja nadzorne vsote md5" + #~ msgid "do not verify file attributes" #~ msgstr "brez preverjanja prilastkov datotek" @@ -4140,6 +3946,9 @@ msgstr "neuspe #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "paketu(-om) dodaj podpis" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " --checksig +" @@ -4148,6 +3957,12 @@ msgstr "neuspe #~ msgid " -K + " #~ msgstr " -K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "preskoči vse podpise PGP" + +#~ msgid "skip any GPG signatures" +#~ msgstr "preskoči vse podpise GPG" + #~ msgid "make sure a valid database exists" #~ msgstr "preveri, če obstaja veljavna zbirka" @@ -4200,6 +4015,151 @@ msgstr "neuspe #~ "verification" #~ msgstr "--nomd5 sme biti podan le ob preverjanju podpisa ali paketa" +#~ msgid "no packages given for signature check" +#~ msgstr "paketi za katere bi bilo potrebno preveriti podpis niso navedeni" + +#~ msgid "no packages given for signing" +#~ msgstr "paketi katere bi bilo potrebno podpisati niso navedeni" + +#~ msgid "no packages given for uninstall" +#~ msgstr "paketi katere bi bilo potrebno odstraniti niso navedeni" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "pri poizvedbi paketov so podani odvečni argumenti" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "pri preverjanju paketov so podani odvečni argumenti" + +#, fuzzy +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s DA (dodane datoteke)\n" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-3s (predpomnjeno)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s DA (db datoteke)\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %s zadovoljen ob paketih db.\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s NE\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) dodano v predpomnilnik Depends.\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "paket %s jw v sporu z: %s\n" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "poizvedbeni način (opuščen)" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: branje Fread je bilo neuspešno: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "datoteke %s/packages.rpm ni možno odpreti\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "Ustvarjanje podpisa s PGP.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "Ustvarjanje podpisa z GnuPG.\n" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "OS je izključen: %s" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "premikanje %s v %s\n" + +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "izključevanje datoteke %s%s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "izključevanje datoteke %s%s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "premikanje %s v %s\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "premiokanje imenika %s v %s\n" + +#, fuzzy +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "v paketu manjka tako seznam uporabnikov kot identitet (to se ne sme " +#~ "zgoditi)" + +#, fuzzy +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "v paketu manjka tako seznam skupin kot identitet (to se ne sme zgoditi)" + +#~ msgid "closed db file %s\n" +#~ msgstr "zaprta datoteka db %s\n" + +#, fuzzy +#~ msgid "removed db file %s\n" +#~ msgstr "odstranjena datoteka db %s\n" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "odpiranje datoteke %s v načinu 0x%x\n" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "datoteke ni možno %s zakleniti" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "seznam prostih okvarjen (%u)- prosimo, poženite\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "Če \"rpm --rebuilddb\" ne reši problema, so dodatne informacije na voljo\n" +#~ "na strani http://www.rpm.org ali po dopisni listi rpm-list@redhat.com.\n" + +#, fuzzy +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "da bi staro obliko zbirke podatkov pretvorili v novo poženite --rebuilddb" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "napaka(%d) pri štetju paketov" + +#~ msgid "(unknown type)" +#~ msgstr "(neznan tip)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Ni možno pognati pgp (%s)" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Ni možno pognati gpg" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "Ni možno pognati pgp. Preverjanja PGP lahko preskočite z --nopgp" @@ -4208,6 +4168,10 @@ msgstr "neuspe #~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" #~ msgstr "Ni možno pognati gpg. Preverjanja GnuPG lahko preskočite z --nogpg" +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Ni možno pognati pgp" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "izdelava podpisa PGP/GPG" @@ -4810,6 +4774,9 @@ msgstr "neuspe #~ msgid "undefined identifier" #~ msgstr "nedefiniran identifikator" +#~ msgid "New Header signature\n" +#~ msgstr "Podpis v novi glavi\n" + #~ msgid "sigsize : %d\n" #~ msgstr "dolžina podpisa : %d\n" @@ -4951,9 +4918,6 @@ msgstr "neuspe #~ msgid " [--sign] [--nobuild] ]" #~ msgstr " [--sign] [--nobuild] [--timecheck ] ]" -#~ msgid "query package owning file" -#~ msgstr "poizvedba po paketu, ki vsebuje datoteko" - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "paketa ni možno odpreti: %s\n" diff --git a/po/sr.po b/po/sr.po index 15ce3900e..f3c071f91 100644 --- a/po/sr.po +++ b/po/sr.po @@ -417,7 +417,7 @@ msgstr "nedostaju 'tar' datoteke za kreiranje" #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "nedostaje paket za potpisivanje" +msgstr "nedostaje paket za instalaciju" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1463,9 +1463,8 @@ msgid "(cached)" msgstr "" #: lib/depends.c:416 -#, fuzzy msgid "(rpmrc provides)" -msgstr "datoteka %s ne pripada nijednom paketu\n" +msgstr "" #: lib/depends.c:432 #, fuzzy @@ -1478,9 +1477,8 @@ msgid "(db files)" msgstr "neuspelo otvaranje %s: %s" #: lib/depends.c:465 -#, fuzzy msgid "(db provides)" -msgstr "datoteka %s ne pripada nijednom paketu\n" +msgstr "" #: lib/depends.c:478 #, fuzzy @@ -1813,7 +1811,7 @@ msgstr "nemoj izvr #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "instaliraj paket" +msgstr "nemoj proveravati zavisnosti paketa" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2339,9 +2337,8 @@ msgid "(added files)" msgstr "neuspelo otvaranje %s: %s" #: lib/rpmal.c:765 -#, fuzzy msgid "(added provide)" -msgstr "datoteka %s ne pripada nijednom paketu\n" +msgstr "" #: lib/rpmchecksig.c:58 #, fuzzy, c-format @@ -2839,8 +2836,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "instaliraj paket" #: lib/signature.c:1073 #, fuzzy @@ -3446,161 +3444,10 @@ msgstr "gre msgid "failed to create %s: %s\n" msgstr "neuspelo kreiranje %s\n" -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: Neuspeo 'readLead'\n" - -#, fuzzy -#~ msgid "bad db file %s\n" -#~ msgstr "neuspelo otvaranje %s: %s" - -#, fuzzy -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "rekreiraj bazu podataka iz postojeće baze" - -#, fuzzy -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "ne mogu da dobijem %s zaključavanje baze podataka" - -#, fuzzy -#~ msgid "error(%d) counting packages\n" -#~ msgstr "greška kod potrage za paketom %s\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "instaliraj paket" - -#~ msgid "failed dependencies:\n" -#~ msgstr "loše međuzavisnosti:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "datoteka %s ne pripada nijednom paketu\n" - -#~ msgid "(unknown type)" -#~ msgstr "(nepoznat tip)" - -#, fuzzy -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "režim upita" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "potpiši paket (ukloni tekući potpis)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "potpiši paket (ukloni tekući potpis)" - -#, fuzzy -#~ msgid "========== Header RSA signature\n" -#~ msgstr "ne mogu da pročitam potpis" - -#, fuzzy -#~ msgid "========== Header DSA signature\n" -#~ msgstr "ne mogu da pročitam potpis" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "potpiši paket (ukloni tekući potpis)" - -#, fuzzy -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "napravi PGP potpis" - -#, fuzzy -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "napravi PGP potpis" - -#~ msgid "no packages given for uninstall" -#~ msgstr "neodstaje paket za deinstalaciju" - -#, fuzzy -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Ne mogu da izvršim PGP" - -#, fuzzy -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Ne mogu da izvršim PGP" - -#, fuzzy -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Ne mogu da izvršim PGP" - -#, fuzzy -#~ msgid "%5d exclude %s\n" -#~ msgstr "Pribavljam %s\n" - -#, fuzzy -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "Ne mogu da otvorim datoteku %s: " - -#, fuzzy -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "Pribavljam %s\n" - -#, fuzzy -#~ msgid "excluding %s %s\n" -#~ msgstr "Pribavljam %s\n" - -#, fuzzy -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "greška kod kreiranja direktorijuma %s: %s" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "datoteka %s ne pripada nijednom paketu\n" - -#, fuzzy -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "paket %s nije naveden u %s" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "datoteka %s ne pripada nijednom paketu\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "datoteka %s ne pripada nijednom paketu\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "neuspelo otvaranje %s: %s" - #, fuzzy #~ msgid "cannot open rpm database in %s\n" #~ msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n" -#, fuzzy -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "dodaj potpis u paket" - -#~ msgid "verify package signature" -#~ msgstr "proveri potpis u paketu" - -#, fuzzy -#~ msgid "skip any GPG signatures" -#~ msgstr "preskoči sve PGP potpise" - -#~ msgid "skip any PGP signatures" -#~ msgstr "preskoči sve PGP potpise" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "nemoj proveravati md5 kontrolne sume datoteke" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "suvišni argumenti su navedeni za upit nad svim paketima" - -#, fuzzy -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "suvišni argumenti su navedeni za upit nad svim paketima" - -#~ msgid "no packages given for signature check" -#~ msgstr "nedostaje paket za proveru potpisa" - #, fuzzy #~ msgid "Usage: rpm {--help}" #~ msgstr "korišćenje: {rpm --help}" @@ -3842,6 +3689,9 @@ msgstr "neuspelo kreiranje %s\n" #~ "proveri instalaciju paketa koristeći iste opcije za određenje paketa kao " #~ "i -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "nemoj proveravati md5 kontrolne sume datoteke" + #~ msgid "do not verify file attributes" #~ msgstr "nemoj proveravati atribute datoteke" @@ -3944,6 +3794,9 @@ msgstr "neuspelo kreiranje %s\n" #~ msgid " --addsign + " #~ msgstr " -b \t " +#~ msgid "add a signature to a package" +#~ msgstr "dodaj potpis u paket" + #, fuzzy #~ msgid " --checksig +" #~ msgstr " -b \t " @@ -3952,6 +3805,13 @@ msgstr "neuspelo kreiranje %s\n" #~ msgid " -K + " #~ msgstr " -b \t " +#~ msgid "skip any PGP signatures" +#~ msgstr "preskoči sve PGP potpise" + +#, fuzzy +#~ msgid "skip any GPG signatures" +#~ msgstr "preskoči sve PGP potpise" + #~ msgid "make sure a valid database exists" #~ msgstr "uveri se da postoji ispravna baza podataka" @@ -4006,6 +3866,105 @@ msgstr "neuspelo kreiranje %s\n" #~ "verification" #~ msgstr "--nopgp se može koristiti samo kod provere potpisa ili paketa" +#~ msgid "no packages given for signature check" +#~ msgstr "nedostaje paket za proveru potpisa" + +#~ msgid "no packages given for signing" +#~ msgstr "nedostaje paket za potpisivanje" + +#~ msgid "no packages given for uninstall" +#~ msgstr "neodstaje paket za deinstalaciju" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "suvišni argumenti su navedeni za upit nad svim paketima" + +#, fuzzy +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "suvišni argumenti su navedeni za upit nad svim paketima" + +#, fuzzy +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "datoteka %s ne pripada nijednom paketu\n" + +#, fuzzy +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "datoteka %s ne pripada nijednom paketu\n" + +#, fuzzy +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "datoteka %s ne pripada nijednom paketu\n" + +#, fuzzy +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "paket %s nije naveden u %s" + +#, fuzzy +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "paket %s nije naveden u %s" + +#, fuzzy +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "režim upita" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: Neuspeo 'readLead'\n" + +#, fuzzy +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n" + +#, fuzzy +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "napravi PGP potpis" + +#, fuzzy +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "napravi PGP potpis" + +#, fuzzy +#~ msgid "%5d exclude %s\n" +#~ msgstr "Pribavljam %s\n" + +#, fuzzy +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "Ne mogu da otvorim datoteku %s: " + +#, fuzzy +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "Pribavljam %s\n" + +#, fuzzy +#~ msgid "excluding %s %s\n" +#~ msgstr "Pribavljam %s\n" + +#, fuzzy +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "greška kod kreiranja direktorijuma %s: %s" + +#, fuzzy +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "rekreiraj bazu podataka iz postojeće baze" + +#, fuzzy +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "ne mogu da dobijem %s zaključavanje baze podataka" + +#, fuzzy +#~ msgid "error(%d) counting packages\n" +#~ msgstr "greška kod potrage za paketom %s\n" + +#~ msgid "(unknown type)" +#~ msgstr "(nepoznat tip)" + +#, fuzzy +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "Ne mogu da izvršim PGP" + +#, fuzzy +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "Ne mogu da izvršim PGP" + #, fuzzy #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "" @@ -4016,6 +3975,10 @@ msgstr "neuspelo kreiranje %s\n" #~ msgstr "" #~ "Ne mogu da pokrenem pgp. Koristite --nopgp da preskočite PGP proveru." +#, fuzzy +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "Ne mogu da izvršim PGP" + #, fuzzy #~ msgid "generate GPG/PGP signature" #~ msgstr "napravi PGP potpis" @@ -4421,6 +4384,10 @@ msgstr "neuspelo kreiranje %s\n" #~ msgid "exec failed!\n" #~ msgstr "%s: Neuspelo otvaranje\n" +#, fuzzy +#~ msgid "New Header signature\n" +#~ msgstr "ne mogu da pročitam potpis" + #, fuzzy #~ msgid "path %s is not relocateable for package %s-%s-%s" #~ msgstr "paket %s nije instaliran\n" @@ -4451,10 +4418,6 @@ msgstr "neuspelo kreiranje %s\n" #~ "]" #~ msgstr "\trpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile ]" -#, fuzzy -#~ msgid "query package owning file" -#~ msgstr "upit nad paketom koji ima " - #, fuzzy #~ msgid "cannot retrieve package \"%s\" from db" #~ msgstr "greška: ne mogu da otvorim %s%s/packages.rpm\n" diff --git a/po/sv.po b/po/sv.po index f0a338f2c..200254da0 100644 --- a/po/sv.po +++ b/po/sv.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" "POT-Creation-Date: 2002-05-28 12:01-0400\n" -"PO-Revision-Date: 2001-09-12 14:18+0200\n" +"PO-Revision-Date: 2002-02-18 21:13+0100\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" "MIME-Version: 1.0\n" @@ -412,9 +412,8 @@ msgid "no tar files given for build" msgstr "inga tar-filer angivna för tillverkning" #: rpmqv.c:1056 -#, fuzzy msgid "no packages given for erase" -msgstr "inga paket angivna för signering" +msgstr "inga paket angivna att radera" #: rpmqv.c:1097 msgid "no packages given for install" @@ -623,9 +622,9 @@ msgid "Bad owner/group: %s\n" msgstr "Felaktig ägare/grupp: %s\n" #: build/files.c:1611 -#, fuzzy, c-format +#, c-format msgid "File%5d: %07o %s.%s\t %s\n" -msgstr "Fil %4d: %07o %s.%s\t %s\n" +msgstr "Fil%5d: %07o %s.%s\t %s\n" #: build/files.c:1720 #, c-format @@ -893,7 +892,7 @@ msgid "bad date in %%changelog: %s\n" msgstr "felaktigt datum i %%changelog: %s\n" #: build/parseChangelog.c:155 -#, fuzzy, c-format +#, c-format msgid "%%changelog not in descending chronological order\n" msgstr "%%changelog är inte i fallande kronologisk ordning\n" @@ -1465,7 +1464,7 @@ msgstr "inga paket\n" #: lib/depends.c:817 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" -msgstr "" +msgstr "ignorera paketnamnsrelation(er) [%d]\t%s -> %s\n" #: lib/depends.c:937 #, fuzzy, c-format @@ -1479,12 +1478,12 @@ msgstr "========== noterar alla relationer\n" #. T4. Scan for zeroes. #: lib/depends.c:1313 -#, fuzzy msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -"========== tsort:erar paket (ordning, #föregĺngare, #efterföljare, djup)\n" +"========== tsort:erar paket (ordning, #föregĺngare, #efterföljare, träd, " +"djup)\n" #: lib/depends.c:1406 msgid "========== successors only (presentation order)\n" @@ -1510,18 +1509,16 @@ msgid "(not a number)" msgstr "(inte ett tal)" #: lib/formats.c:139 -#, fuzzy msgid "(not base64)" -msgstr "(inte ett tal)" +msgstr "(inte base64)" #: lib/formats.c:149 msgid "(invalid type)" -msgstr "" +msgstr "(felaktig typ)" #: lib/formats.c:211 lib/formats.c:256 -#, fuzzy msgid "(not a blob)" -msgstr "(inte ett tal)" +msgstr "(inte en klick)" #: lib/fs.c:75 #, c-format @@ -1655,12 +1652,11 @@ msgstr "omflyttningar m #: lib/poptI.c:80 msgid "rollback takes a time/date stamp argument" -msgstr "" +msgstr "ĺterställning tar en tid-/datumstämpel som argument" #: lib/poptI.c:87 -#, fuzzy msgid "malformed rollback time/date stamp argument" -msgstr "felformaterad ĺtergĺngstid" +msgstr "felformaterat tid-/datumstämpelargument för ĺterställning" #: lib/poptI.c:106 msgid "install all files, even configurations which might otherwise be skipped" @@ -1784,7 +1780,7 @@ msgstr "utf #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "verifiera inte MD5-summor för filer" +msgstr "verifiera inte paketberoenden" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -1852,10 +1848,8 @@ msgid "reinstall if the package is already present" msgstr "installera om ifall paketet redan är installerat" #: lib/poptI.c:229 -#, fuzzy msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" -"avinstallera nya paket och ominstallera gamla paket tillbaka till datum" +msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till " #: lib/poptI.c:230 msgid "" @@ -1883,27 +1877,24 @@ msgid "query/verify package(s) owning file" msgstr "frĺga/verifiera paket som äger fil" #: lib/poptQV.c:101 -#, fuzzy msgid "query/verify package(s) with file identifier" -msgstr "frĺga/verifiera paket som äger fil" +msgstr "frĺga/verifiera paket med filidentifierare" #: lib/poptQV.c:103 msgid "query/verify package(s) in group" msgstr "frĺga/verifiera paket i grupp" #: lib/poptQV.c:105 -#, fuzzy msgid "query/verify package(s) with header identifier" -msgstr "frĺga/verifiera paket som äger fil" +msgstr "frĺga/verifiera paket med huvudidentifierare" #: lib/poptQV.c:107 msgid "query/verify a package file (i.e. a binary *.rpm file)" msgstr "frĺga/verifiera en paketfil (t.ex. en binär *.rpm-fil)" #: lib/poptQV.c:109 -#, fuzzy msgid "query/verify package(s) with package identifier" -msgstr "frĺga/verifiera paket som äger fil" +msgstr "frĺga/verifiera paket som med paketidentifierare" #: lib/poptQV.c:111 msgid "rpm query mode" @@ -1922,9 +1913,8 @@ msgid "" msgstr "" #: lib/poptQV.c:119 -#, fuzzy msgid "query/verify package(s) from install transaction" -msgstr "frĺga/verifiera paket i grupp" +msgstr "frĺga/verifiera paket frĺn installationstransaktion" #: lib/poptQV.c:121 msgid "query the package(s) triggered by the package" @@ -2203,7 +2193,7 @@ msgstr "k #: lib/query.c:664 lib/rpminstall.c:513 #, fuzzy, c-format msgid "%s: not a package manifest: %s\n" -msgstr "inga paketutlösare %s\n" +msgstr "inga paket matchar %s: %s\n" #: lib/query.c:708 #, c-format @@ -2225,14 +2215,14 @@ msgid "no package triggers %s\n" msgstr "inga paketutlösare %s\n" #: lib/query.c:773 lib/query.c:795 lib/query.c:816 lib/query.c:851 -#, fuzzy, c-format +#, c-format msgid "malformed %s: %s\n" -msgstr "Misslyckades med att läsa %s: %s.\n" +msgstr "felformaterad %s: %s\n" #: lib/query.c:783 lib/query.c:801 lib/query.c:826 lib/query.c:856 -#, fuzzy, c-format +#, c-format msgid "no package matches %s: %s\n" -msgstr "inga paketutlösare %s\n" +msgstr "inga paket matchar %s: %s\n" #: lib/query.c:867 #, c-format @@ -2282,7 +2272,7 @@ msgstr "felaktig db-fil %s\n" #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s JA (db-tillhandahĺllande)\n" +msgstr "%s: %-45s JA (lade till tillhandahĺllande)\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2379,7 +2369,7 @@ msgstr " %s A %s\tB %s\n" #: lib/rpmds.c:605 #, fuzzy, c-format msgid "package %s has unsatisfied %s: %s\n" -msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" +msgstr "paket %s har ouppfyllda Requires: %s\n" #: lib/rpminstall.c:165 msgid "Preparing..." @@ -2469,9 +2459,9 @@ msgid "Installing %s\n" msgstr "Installerar %s\n" #: lib/rpminstall.c:1064 -#, c-format +#, fuzzy, c-format msgid "rollback %d packages to %s" -msgstr "" +msgstr "ĺterställer (+%d,-%d) paket till %s" #: lib/rpmlead.c:47 #, c-format @@ -2534,14 +2524,14 @@ msgid "package %s pre-transaction syscall(s): %s failed: %s" msgstr "paket %s systemanrop före transaktion: %s misslyckades: %s" #: lib/rpmps.c:269 -#, fuzzy, c-format +#, c-format msgid "package %s has unsatisfied Requires: %s\n" -msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" +msgstr "paket %s har ouppfyllda Requires: %s\n" #: lib/rpmps.c:273 -#, fuzzy, c-format +#, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" +msgstr "paket %s har ouppfyllda Conflicts: %s\n" #: lib/rpmps.c:278 #, c-format @@ -2661,7 +2651,7 @@ msgstr "kan inte #. Get available space on mounted file systems. #: lib/rpmts.c:560 msgid "getting list of mounted filesystems\n" -msgstr "hämtar lista över monterade filsystem\n" +msgstr "" #: lib/signature.c:126 msgid "file is not regular -- skipping size check\n" @@ -2698,7 +2688,7 @@ msgstr "Signatur: storlek(%d)+utfyllnad(%d)\n" #: lib/signature.c:313 lib/signature.c:410 lib/signature.c:677 #: lib/signature.c:710 -#, fuzzy, c-format +#, c-format msgid "Could not exec %s: %s\n" msgstr "Kunde inte köra %s: %s\n" @@ -2773,8 +2763,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "verifiera inte huvudets SHA1-summa" #: lib/signature.c:1073 #, fuzzy @@ -2796,7 +2787,7 @@ msgstr "" #: lib/signature.c:1286 msgid "Broken MD5 digest: UNSUPPORTED\n" -msgstr "" +msgstr "Trasig MD5-summa: STÖDS EJ\n" #: lib/signature.c:1290 #, fuzzy, c-format @@ -3340,9 +3331,9 @@ msgid "warning: u %p data %p nrefs != 0 (%s %s)\n" msgstr "varning: u %p data %p nrefs != 0 (%s %s)\n" #: rpmio/url.c:166 -#, fuzzy, c-format +#, c-format msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" -msgstr "varning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n" +msgstr "varning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n" #: rpmio/url.c:262 #, c-format @@ -3364,198 +3355,9 @@ msgstr "url-port m msgid "failed to create %s: %s\n" msgstr "kunde inte skapa %s: %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Felaktigt magiskt tal" - -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: läsning av paketlista misslyckades: %s\n" - -#~ msgid "%s-%s-%s: immutable header region digest check failed\n" -#~ msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n" - -#~ msgid "" -#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" -#~ msgstr "Trasig paketkedja vid %d(0x%08x), försöker ĺteransluta ...\n" - -#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" -#~ msgstr "Ĺteransluter trasig kedja vid %d(0x%08x).\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "stängde db-fil %s\n" - -#~ msgid "removed db file %s\n" -#~ msgstr "tog bort db-fil %s\n" - -#~ msgid "bad db file %s\n" -#~ msgstr "felaktig db-fil %s\n" - -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "öppnar db-fil %s rättighet 0x%x\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "kan inte fĺ %s lĺs pĺ databas\n" - -#~ msgid "error(%d) counting packages\n" -#~ msgstr "fel(%d) när paket räknades\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "frilistan trasig (%u)- var god kör\n" -#~ " \"rpm --rebuilddb\"\n" -#~ "Mer information finns tillgänglig frĺn http://www.rpm.org eller " -#~ "sändlistan\n" -#~ "rpm-list@redhat.com om \"rpm --rebuilddb\" inte lyckas rätta till " -#~ "problemet.\n" - -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "databas i gammalt format finns; använd --rebuilddb för att skapa en " -#~ "databas i nytt format\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "verifiera inte sökvägen i symboliska länkar" - -#~ msgid "failed dependencies:\n" -#~ msgstr "ouppfyllda beroenden:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" - -#~ msgid "(unknown type)" -#~ msgstr "(okänd typ)" - -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "rpm verifieringsläge (ärvt)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "signera ett paket (släng nuvarande signatur)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "signera ett paket (släng nuvarande signatur)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "paketet saknar bĺde användarnamn och id-listor (detta borde aldrig " -#~ "inträffa)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "paketet saknar bĺde gruppnamn och id-listor (detta borde aldrig " -#~ "inträffa)\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "signera ett paket (släng nuvarande signatur)" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "Genererar signatur med PGP.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "Genererar signatur med GPG.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "inga paket angivna för avinstallation" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "Kunde inte köra pgp (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "Kunde inte köra gpg\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "Kunde inte köra pgp\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== omflyttningar\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d utesluter %s\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d flyttar om %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "hoppar över multilib-sökväg %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "hoppar över %s %s\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "flyttar %s till %s\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "flyttar katalogen %s till %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s JA (lade till filer)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "paket %s stĺr i konflikt: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-s (cachad)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s JA (db-filer)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s JA (db-paket)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s NEJ\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s JA (lade till tillhandahĺllande)\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "kan inte öppna rpmdatabas i %s\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "kan inte öppna %s/packages.rpm\n" - -#~ msgid "add a signature to a package" -#~ msgstr "lägg till signatur till ett paket" - -#~ msgid "verify package signature" -#~ msgstr "verifiera paketsignatur" - -#~ msgid "skip any GPG signatures" -#~ msgstr "hoppa över eventuella GPG-signaturer" - -#~ msgid "skip any PGP signatures" -#~ msgstr "hoppa över eventuella PGP-signaturer" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "verifiera inte md5-kontrollsummor" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "extra argument angivna för förfrĺgan om alla paket" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "extra argument angivna för verifiering av alla paket" - -#~ msgid "no packages given for signature check" -#~ msgstr "inga paket angivna för signaturkontroll" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3899,6 +3701,9 @@ msgstr "kunde inte skapa %s: %s\n" #~ msgstr "" #~ "verifiera ett pakets installation med samma urvalsflaggor som till -q" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "verifiera inte md5-kontrollsummor" + #~ msgid "do not verify file attributes" #~ msgstr "verifiera inte filattribut" @@ -4017,12 +3822,21 @@ msgstr "kunde inte skapa %s: %s\n" #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "lägg till signatur till ett paket" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " -K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "hoppa över eventuella PGP-signaturer" + +#~ msgid "skip any GPG signatures" +#~ msgstr "hoppa över eventuella GPG-signaturer" + #~ msgid "make sure a valid database exists" #~ msgstr "förvissa dig om att en giltig databas existerar" @@ -4078,10 +3892,141 @@ msgstr "kunde inte skapa %s: %s\n" #~ msgstr "" #~ "--nomd5 kan enbart användas vid signaturkontroll och paketverifiering" -#~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" -#~ msgstr "" -#~ "Kunde inte köra pgp. Använd --nopgp för att hoppa över PGP-kontroll.\n" +#~ msgid "no packages given for signature check" +#~ msgstr "inga paket angivna för signaturkontroll" -#~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" +#~ msgid "no packages given for signing" +#~ msgstr "inga paket angivna för signering" + +#~ msgid "no packages given for uninstall" +#~ msgstr "inga paket angivna för avinstallation" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "extra argument angivna för förfrĺgan om alla paket" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "extra argument angivna för verifiering av alla paket" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s JA (lade till filer)\n" + +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-s (cachad)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s JA (db-filer)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s JA (db-paket)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s NEJ\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) tillagt till beroendecachen.\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "paket %s stĺr i konflikt: %s\n" + +#~ msgid "use chainsaw dependency tree decimation when ordering" +#~ msgstr "använd motorsĺgsansning av beroendeträdet vid sortering" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "rpm verifieringsläge (ärvt)" + +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: läsning av paketlista misslyckades: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "kan inte öppna %s/packages.rpm\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "Genererar signatur med PGP.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "Genererar signatur med GPG.\n" + +#~ msgid "========== relocations\n" +#~ msgstr "========== omflyttningar\n" + +#~ msgid "%5d exclude %s\n" +#~ msgstr "%5d utesluter %s\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d flyttar om %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "hoppar över multilib-sökväg %s%s\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "hoppar över %s %s\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "flyttar %s till %s\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "flyttar katalogen %s till %s\n" + +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" #~ msgstr "" -#~ "Kunde inte köra gpg. Använd --nogpg för att hoppa över GPG-kontroll.\n" +#~ "paketet saknar bĺde användarnamn och id-listor (detta borde aldrig " +#~ "inträffa)\n" + +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "paketet saknar bĺde gruppnamn och id-listor (detta borde aldrig " +#~ "inträffa)\n" + +#~ msgid "%s-%s-%s: immutable header region digest check failed\n" +#~ msgstr "%s-%s-%s: kontrollsumma för oföränderlig huvudregion misslyckades\n" + +#~ msgid "" +#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" +#~ msgstr "Trasig paketkedja vid %d(0x%08x), försöker ĺteransluta ...\n" + +#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" +#~ msgstr "Ĺteransluter trasig kedja vid %d(0x%08x).\n" + +#~ msgid "closed db file %s\n" +#~ msgstr "stängde db-fil %s\n" + +#~ msgid "removed db file %s\n" +#~ msgstr "tog bort db-fil %s\n" + +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "öppnar db-fil %s rättighet 0x%x\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "kan inte fĺ %s lĺs pĺ databas\n" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "frilistan trasig (%u)- var god kör\n" +#~ " \"rpm --rebuilddb\"\n" +#~ "Mer information finns tillgänglig frĺn http://www.rpm.org eller " +#~ "sändlistan\n" +#~ "rpm-list@redhat.com om \"rpm --rebuilddb\" inte lyckas rätta till " +#~ "problemet.\n" + +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "databas i gammalt format finns; använd --rebuilddb för att skapa en " +#~ "databas i nytt format\n" + +#~ msgid "error(%d) counting packages\n" +#~ msgstr "fel(%d) när paket räknades\n" + +#~ msgid "(unknown type)" +#~ msgstr "(okänd typ)" diff --git a/po/tr.po b/po/tr.po index 20a4457c4..88ee16583 100644 --- a/po/tr.po +++ b/po/tr.po @@ -421,7 +421,7 @@ msgstr "olu #: rpmqv.c:1056 #, fuzzy msgid "no packages given for erase" -msgstr "imzalanacak paket(ler) belirtilmedi" +msgstr "yüklenecek paket(ler) belirtilmedi" #: rpmqv.c:1097 msgid "no packages given for install" @@ -1806,7 +1806,7 @@ msgstr "%%postun beti #: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309 #, fuzzy msgid "don't verify package digest(s)" -msgstr "dosyalarýn MD5 özümlemesi dođrulanmaz" +msgstr "paket bađýmlýlýklarý dođrulanmaz" #: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311 #, fuzzy @@ -2305,7 +2305,7 @@ msgstr "db dosyas #: lib/rpmal.c:765 #, fuzzy msgid "(added provide)" -msgstr "%s: %-45s EVET (db sađlar)\n" +msgstr "%s: %-45s EVET (önlem eklendi)\n" #: lib/rpmchecksig.c:58 #, c-format @@ -2564,7 +2564,7 @@ msgstr "paket %s-%s-%s gereksinimi tatmin edici de #: lib/rpmps.c:273 #, fuzzy, c-format msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n" +msgstr "%s paketi çeliţiyor: %s\n" #: lib/rpmps.c:278 #, c-format @@ -2794,8 +2794,9 @@ msgid "MD5 digest: " msgstr "" #: lib/signature.c:887 +#, fuzzy msgid "Header SHA1 digest: " -msgstr "" +msgstr "Baţlýk SHA1 özümlemesi dođrulanmaz" #: lib/signature.c:1073 #, fuzzy @@ -3387,199 +3388,9 @@ msgstr "url portu bir say msgid "failed to create %s: %s\n" msgstr "%s oluţturulamadý: %s\n" -#, fuzzy -#~ msgid "%s: bad magic\n" -#~ msgstr "Magic hatalý" - -#, fuzzy -#~ msgid "%s: read manifest failed: %s\n" -#~ msgstr "%s: bildirge okuma baţarýsýz: %s\n" - -#~ msgid "%s-%s-%s: immutable header region digest check failed\n" -#~ msgstr "%s-%s-%s: deđiţmez baţlýk alaný özet denetimi baţarýsýz\n" - -#~ msgid "" -#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" -#~ msgstr "" -#~ "%d(0x%08x) göreli konumunda paket zinciri kopuk, yeniden bađlanmaya " -#~ "çalýţýlýyor...\n" - -#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" -#~ msgstr "%d(0x%08x) göreli konumunda kopan zincir yeniden bađlanýyor.\n" - -#~ msgid "closed db file %s\n" -#~ msgstr "kapanan db dosyasý %s\n" - -#~ msgid "removed db file %s\n" -#~ msgstr "silinen db dosyasý %s\n" - -#~ msgid "bad db file %s\n" -#~ msgstr "db dosyasý %s hatalý\n" - -#~ msgid "opening db file %s mode 0x%x\n" -#~ msgstr "açýlan db dosyasý %s kip 0x%x\n" - -#~ msgid "cannot get %s lock on database\n" -#~ msgstr "Veritabaný için %s kilit alýnamadý\n" - -#~ msgid "error(%d) counting packages\n" -#~ msgstr "paketler taranýrken hata(%d)\n" - -#~ msgid "" -#~ "free list corrupt (%u)- please run\n" -#~ "\t\"rpm --rebuilddb\"\n" -#~ "More information is available from http://www.rpm.org or the rpm-" -#~ "list@redhat.com mailing list\n" -#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" -#~ msgstr "" -#~ "serbest liste bozuk (%u)- lütfen \t\"rpm --rebuilddb\" ile çalýţtýrýn\n" -#~ "eđer \"rpm --rebuilddb\" çalýţmazsa problemin çözümü ve\n" -#~ "daha fazla bilgi için http://www.rpm.org adresine bakýn veya rpm-" -#~ "list@redhat.com e-posta listesine kaydolun.\n" - -#~ msgid "" -#~ "old format database is present; use --rebuilddb to generate a new format " -#~ "database\n" -#~ msgstr "" -#~ "veritabaný eski sürüme ait; yeni sürüm bir veritabaný oluţturmak için --" -#~ "rebuilddb kullanýn\n" - -#, fuzzy -#~ msgid "don't verify signature(s)" -#~ msgstr "dosyalarýn sembolik bađ dosya yollarý dođrulanmaz" - -#~ msgid "failed dependencies:\n" -#~ msgstr "bađýmlýlýklarda hata; gerekli paketler:\n" - -#, fuzzy -#~ msgid "%9s: (%s, %s) added to Depends cache.\n" -#~ msgstr "%s: (%s, %s) Bađýmlýlar alanýna eklendi.\n" - -#~ msgid "(unknown type)" -#~ msgstr "(bilinmeyen tür)" - -#~ msgid "rpm verify mode (legacy)" -#~ msgstr "rpm denetleme kipi (eski tip)" - -#, fuzzy -#~ msgid "sign a package, preserving digests" -#~ msgstr "paketi imzalar (mevcut imza kaldýrýlýr)" - -#, fuzzy -#~ msgid "sign a package, recomputing digests" -#~ msgstr "paketi imzalar (mevcut imza kaldýrýlýr)" - -#~ msgid "" -#~ "package lacks both user name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "paket hem kullanýcý ismi hem de kimlik listelerinden yoksun (bu hiç iyi " -#~ "deđil)\n" - -#~ msgid "" -#~ "package lacks both group name and id lists (this should never happen)\n" -#~ msgstr "" -#~ "paket hem grup ismi hem de kimlik listelerinden yoksun (bu hiç iyi " -#~ "deđil)\n" - -#, fuzzy -#~ msgid "sign a package, discarding all current signatures" -#~ msgstr "paketi imzalar (mevcut imza kaldýrýlýr)" - -#~ msgid "Generating signature using PGP.\n" -#~ msgstr "PGP kullanarak imza üretiliyor.\n" - -#~ msgid "Generating signature using GPG.\n" -#~ msgstr "GPG kullanýlarak imza üretiliyor.\n" - -#~ msgid "no packages given for uninstall" -#~ msgstr "sistemden silinecek paket(ler) belirtilmedi" - -#~ msgid "Couldn't exec pgp (%s)\n" -#~ msgstr "pgp çalýţtýrýlamadý (%s)\n" - -#~ msgid "Couldn't exec gpg\n" -#~ msgstr "gpg çalýţtýrýlamadý\n" - -#~ msgid "Couldn't exec pgp\n" -#~ msgstr "pgp çalýţtýrýlamadý\n" - -#~ msgid "========== relocations\n" -#~ msgstr "========== yeniden konumlama\n" - -#~ msgid "%5d exclude %s\n" -#~ msgstr "%5d %s'i dýţlýyor\n" - -#~ msgid "%5d relocate %s -> %s\n" -#~ msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n" - -#~ msgid "excluding multilib path %s%s\n" -#~ msgstr "multilib dosya yolu dýţlanýyor %s%s\n" - -#~ msgid "excluding %s %s\n" -#~ msgstr "%s %s dýţlanýyor\n" - -#~ msgid "relocating %s to %s\n" -#~ msgstr "%s %s'e konumlanýyor\n" - -#~ msgid "relocating directory %s to %s\n" -#~ msgstr "%s dizini %s de yeniden konumlanýyor\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (added files)\n" -#~ msgstr "%s: %-45s EVET (dosyalar eklendi)\n" - -#~ msgid "package %s conflicts: %s\n" -#~ msgstr "%s paketi çeliţiyor: %s\n" - -#, fuzzy -#~ msgid "%9s: %-45s %-s (cached)\n" -#~ msgstr "%s: %-45s %-s (arabellekli)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db files)\n" -#~ msgstr "%s: %-45s EVET (db dosyalarý)\n" - -#, fuzzy -#~ msgid "%9s: %-45s YES (db package)\n" -#~ msgstr "%s: %-45s EVET (db paketi)\n" - -#, fuzzy -#~ msgid "%9s: %-45s NO\n" -#~ msgstr "%s: %-45s HAYIR\n" - -#~ msgid "%s: %-45s YES (added provide)\n" -#~ msgstr "%s: %-45s EVET (önlem eklendi)\n" - #~ msgid "cannot open rpm database in %s\n" #~ msgstr "%s dizininde rpm veritabaný açýlamýyor\n" -#~ msgid "cannot open %s/packages.rpm\n" -#~ msgstr "%s/packages.rpm açýlamýyor\n" - -#~ msgid "add a signature to a package" -#~ msgstr "pakete bir imza ekler" - -#~ msgid "verify package signature" -#~ msgstr "paket imzasýný denetler" - -#~ msgid "skip any GPG signatures" -#~ msgstr "tüm GPG imzalarýný atlar" - -#~ msgid "skip any PGP signatures" -#~ msgstr "tüm PGP imzalarýný atlar" - -#~ msgid "do not verify file md5 checksums" -#~ msgstr "dosyalarýn 'md5-checksum' larýný denetlemez" - -#~ msgid "extra arguments given for query of all packages" -#~ msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi" - -#~ msgid "extra arguments given for verify of all packages" -#~ msgstr "tüm paketlerin denetlenmesi için fazladan argümanlar belirtildi" - -#~ msgid "no packages given for signature check" -#~ msgstr "imzasý kontrol edilecek paket(ler) belirtilmedi" - #~ msgid "rpm: %s\n" #~ msgstr "rpm: %s\n" @@ -3933,6 +3744,9 @@ msgstr "%s olu #~ "bir paketin kurulumunu -q ile belirtilen paket parametrelerini kullanarak " #~ "denetler" +#~ msgid "do not verify file md5 checksums" +#~ msgstr "dosyalarýn 'md5-checksum' larýný denetlemez" + #~ msgid "do not verify file attributes" #~ msgstr "dosya özelliklerini denetlemez" @@ -4054,12 +3868,21 @@ msgstr "%s olu #~ msgid " --addsign + " #~ msgstr " --addsign + " +#~ msgid "add a signature to a package" +#~ msgstr "pakete bir imza ekler" + #~ msgid " --checksig +" #~ msgstr " --checksig +" #~ msgid " -K + " #~ msgstr " -K + " +#~ msgid "skip any PGP signatures" +#~ msgstr "tüm PGP imzalarýný atlar" + +#~ msgid "skip any GPG signatures" +#~ msgstr "tüm GPG imzalarýný atlar" + #~ msgid "make sure a valid database exists" #~ msgstr "geçerli bir veritabanýnýz varsa kullanmayýn" @@ -4116,6 +3939,149 @@ msgstr "%s olu #~ msgstr "" #~ "--nomd5 sadece imza kontrolü veya paket denetimi sýrasýnda kullanýlýr" +#~ msgid "no packages given for signature check" +#~ msgstr "imzasý kontrol edilecek paket(ler) belirtilmedi" + +#~ msgid "no packages given for signing" +#~ msgstr "imzalanacak paket(ler) belirtilmedi" + +#~ msgid "no packages given for uninstall" +#~ msgstr "sistemden silinecek paket(ler) belirtilmedi" + +#~ msgid "extra arguments given for query of all packages" +#~ msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi" + +#~ msgid "extra arguments given for verify of all packages" +#~ msgstr "tüm paketlerin denetlenmesi için fazladan argümanlar belirtildi" + +#~ msgid "%s: %-45s YES (added files)\n" +#~ msgstr "%s: %-45s EVET (dosyalar eklendi)\n" + +#~ msgid "%s: %-45s %-s (cached)\n" +#~ msgstr "%s: %-45s %-s (arabellekli)\n" + +#~ msgid "%s: %-45s YES (db files)\n" +#~ msgstr "%s: %-45s EVET (db dosyalarý)\n" + +#~ msgid "%s: %-45s YES (db package)\n" +#~ msgstr "%s: %-45s EVET (db paketi)\n" + +#~ msgid "%s: %-45s NO\n" +#~ msgstr "%s: %-45s HAYIR\n" + +#~ msgid "%s: (%s, %s) added to Depends cache.\n" +#~ msgstr "%s: (%s, %s) Bađýmlýlar alanýna eklendi.\n" + +#~ msgid "package %s-%s-%s require not satisfied: %s\n" +#~ msgstr "paket %s-%s-%s gereksinimi tatmin edici deđil: %s\n" + +#~ msgid "package %s conflicts: %s\n" +#~ msgstr "%s paketi çeliţiyor: %s\n" + +#~ msgid "rpm verify mode (legacy)" +#~ msgstr "rpm denetleme kipi (eski tip)" + +#, fuzzy +#~ msgid "%s: read manifest failed: %s\n" +#~ msgstr "%s: bildirge okuma baţarýsýz: %s\n" + +#~ msgid "cannot open %s/packages.rpm\n" +#~ msgstr "%s/packages.rpm açýlamýyor\n" + +#~ msgid "Generating signature using PGP.\n" +#~ msgstr "PGP kullanarak imza üretiliyor.\n" + +#~ msgid "Generating signature using GPG.\n" +#~ msgstr "GPG kullanýlarak imza üretiliyor.\n" + +#~ msgid "========== relocations\n" +#~ msgstr "========== yeniden konumlama\n" + +#~ msgid "%5d exclude %s\n" +#~ msgstr "%5d %s'i dýţlýyor\n" + +#~ msgid "%5d relocate %s -> %s\n" +#~ msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n" + +#~ msgid "excluding multilib path %s%s\n" +#~ msgstr "multilib dosya yolu dýţlanýyor %s%s\n" + +#~ msgid "excluding %s %s\n" +#~ msgstr "%s %s dýţlanýyor\n" + +#~ msgid "relocating %s to %s\n" +#~ msgstr "%s %s'e konumlanýyor\n" + +#~ msgid "relocating directory %s to %s\n" +#~ msgstr "%s dizini %s de yeniden konumlanýyor\n" + +#~ msgid "" +#~ "package lacks both user name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "paket hem kullanýcý ismi hem de kimlik listelerinden yoksun (bu hiç iyi " +#~ "deđil)\n" + +#~ msgid "" +#~ "package lacks both group name and id lists (this should never happen)\n" +#~ msgstr "" +#~ "paket hem grup ismi hem de kimlik listelerinden yoksun (bu hiç iyi " +#~ "deđil)\n" + +#~ msgid "%s-%s-%s: immutable header region digest check failed\n" +#~ msgstr "%s-%s-%s: deđiţmez baţlýk alaný özet denetimi baţarýsýz\n" + +#~ msgid "" +#~ "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" +#~ msgstr "" +#~ "%d(0x%08x) göreli konumunda paket zinciri kopuk, yeniden bađlanmaya " +#~ "çalýţýlýyor...\n" + +#~ msgid "Reconnecting broken chain at offset %d(0x%08x).\n" +#~ msgstr "%d(0x%08x) göreli konumunda kopan zincir yeniden bađlanýyor.\n" + +#~ msgid "closed db file %s\n" +#~ msgstr "kapanan db dosyasý %s\n" + +#~ msgid "removed db file %s\n" +#~ msgstr "silinen db dosyasý %s\n" + +#~ msgid "opening db file %s mode 0x%x\n" +#~ msgstr "açýlan db dosyasý %s kip 0x%x\n" + +#~ msgid "cannot get %s lock on database\n" +#~ msgstr "Veritabaný için %s kilit alýnamadý\n" + +#~ msgid "" +#~ "free list corrupt (%u)- please run\n" +#~ "\t\"rpm --rebuilddb\"\n" +#~ "More information is available from http://www.rpm.org or the rpm-" +#~ "list@redhat.com mailing list\n" +#~ "if \"rpm --rebuilddb\" fails to correct the problem.\n" +#~ msgstr "" +#~ "serbest liste bozuk (%u)- lütfen \t\"rpm --rebuilddb\" ile çalýţtýrýn\n" +#~ "eđer \"rpm --rebuilddb\" çalýţmazsa problemin çözümü ve\n" +#~ "daha fazla bilgi için http://www.rpm.org adresine bakýn veya rpm-" +#~ "list@redhat.com e-posta listesine kaydolun.\n" + +#~ msgid "" +#~ "old format database is present; use --rebuilddb to generate a new format " +#~ "database\n" +#~ msgstr "" +#~ "veritabaný eski sürüme ait; yeni sürüm bir veritabaný oluţturmak için --" +#~ "rebuilddb kullanýn\n" + +#~ msgid "error(%d) counting packages\n" +#~ msgstr "paketler taranýrken hata(%d)\n" + +#~ msgid "(unknown type)" +#~ msgstr "(bilinmeyen tür)" + +#~ msgid "Couldn't exec pgp (%s)\n" +#~ msgstr "pgp çalýţtýrýlamadý (%s)\n" + +#~ msgid "Couldn't exec gpg\n" +#~ msgstr "gpg çalýţtýrýlamadý\n" + #~ msgid "Could not run pgp. Use --nopgp to skip PGP checks.\n" #~ msgstr "" #~ "pgp çalýţtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn.\n" @@ -4123,3 +4089,6 @@ msgstr "%s olu #~ msgid "Could not run gpg. Use --nogpg to skip GPG checks.\n" #~ msgstr "" #~ "gpg çalýţtýrýlamadý. GPG kontrollerini atlamak için --nogpg kullanýn.\n" + +#~ msgid "Couldn't exec pgp\n" +#~ msgstr "pgp çalýţtýrýlamadý\n" diff --git a/po/uk.po b/po/uk.po index b5760a5b0..bc469bd19 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/wa.po b/po/wa.po index b5760a5b0..bc469bd19 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/zh.po b/po/zh.po index b5760a5b0..bc469bd19 100644 --- a/po/zh.po +++ b/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index b5760a5b0..bc469bd19 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-02-10 13:58-0500\n" +"POT-Creation-Date: 2002-04-19 14:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -14,421 +14,1221 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: ENCODING\n" -#: build.c:36 +#: build.c:39 +#, c-format +msgid "cannot open rpm database in %s\n" +msgstr "" + +#: build.c:49 msgid "failed build dependencies:\n" msgstr "" -#: build.c:65 +#: build.c:81 #, c-format msgid "Unable to open spec file %s: %s\n" msgstr "" -#: build.c:145 build.c:157 +#: build.c:160 build.c:172 #, c-format msgid "Failed to open tar pipe: %m\n" msgstr "" #. Give up -#: build.c:164 +#: build.c:179 #, c-format msgid "Failed to read spec file from %s\n" msgstr "" -#: build.c:192 +#: build.c:207 #, c-format msgid "Failed to rename %s to %s: %m\n" msgstr "" -#: build.c:232 +#: build.c:247 #, c-format msgid "failed to stat %s: %m\n" msgstr "" -#: build.c:237 +#: build.c:252 #, c-format msgid "File %s is not a regular file.\n" msgstr "" -#: build.c:246 +#: build.c:261 #, c-format msgid "File %s does not appear to be a specfile.\n" msgstr "" #. parse up the build operators -#: build.c:301 +#: build.c:317 #, c-format msgid "Building target platforms: %s\n" msgstr "" -#: build.c:316 +#: build.c:332 #, c-format msgid "Building for target %s\n" msgstr "" -#: rpm2cpio.c:47 -msgid "argument is not an RPM package\n" -msgstr "" - -#: rpm2cpio.c:53 -msgid "error reading header from package\n" -msgstr "" - -#: rpm2cpio.c:75 +#: rpm.c:224 #, c-format -msgid "cannot re-open payload: %s\n" +msgid "rpm: %s\n" msgstr "" -#: rpmqv.c:108 -msgid "print the version of rpm being used" -msgstr "" - -#: rpmqv.c:111 -msgid "provide less detailed output" -msgstr "" - -#: rpmqv.c:113 -msgid "provide more detailed output" -msgstr "" - -#: rpmqv.c:115 -msgid "define macro with value " -msgstr "" - -#: rpmqv.c:116 -msgid "' '" -msgstr "" - -#: rpmqv.c:118 -msgid "print macro expansion of +" -msgstr "" - -#: rpmqv.c:119 -msgid "+" -msgstr "" - -#: rpmqv.c:121 -msgid "send stdout to " -msgstr "" - -#: rpmqv.c:122 -msgid "" -msgstr "" - -#: rpmqv.c:124 -msgid "use as the top level directory" -msgstr "" - -#: lib/poptI.c:210 rpmqv.c:125 -msgid "" -msgstr "" - -#: rpmqv.c:127 -msgid "read instead of default macro file(s)" -msgstr "" - -#: rpmqv.c:128 rpmqv.c:132 rpmqv.c:136 -msgid "" -msgstr "" - -#: rpmqv.c:131 rpmqv.c:135 -msgid "read instead of default rpmrc file(s)" -msgstr "" - -#: rpmqv.c:139 -msgid "display final rpmrc and macro configuration" -msgstr "" - -#: rpmqv.c:144 -msgid "disable use of libio(3) API" -msgstr "" - -#: rpmqv.c:147 -msgid "debug protocol data stream" -msgstr "" - -#: rpmqv.c:149 -msgid "debug rpmio I/O" -msgstr "" - -#: rpmqv.c:151 -msgid "debug URL cache handling" -msgstr "" - -#: rpmqv.c:171 -msgid "Query options (with -q or --query):" -msgstr "" - -#: rpmqv.c:174 -msgid "Verify options (with -V or --verify):" -msgstr "" - -#: rpmqv.c:180 -msgid "Signature options:" -msgstr "" - -#: rpmqv.c:186 -msgid "Database options:" -msgstr "" - -#: rpmqv.c:192 -msgid "Build options with [ | | ]:" -msgstr "" - -#: rpmqv.c:198 -msgid "Install/Upgrade/Erase options:" -msgstr "" - -#: rpmqv.c:203 -msgid "Common options for all rpm modes:" -msgstr "" - -#. @-modfilesys -globs @ -#: lib/poptI.c:27 rpmqv.c:220 -#, c-format -msgid "%s: %s\n" -msgstr "" - -#: rpmqv.c:228 +#: rpm.c:235 rpmqv.c:232 #, c-format msgid "RPM version %s\n" msgstr "" -#: rpmqv.c:235 +#: rpm.c:239 rpmqv.c:239 msgid "Copyright (C) 1998-2000 - Red Hat, Inc." msgstr "" -#: rpmqv.c:236 +#: rpm.c:240 rpmqv.c:240 msgid "This program may be freely redistributed under the terms of the GNU GPL" msgstr "" -#: rpmqv.c:248 -#, c-format -msgid "Usage: %s {--help}\n" +#: rpm.c:248 +msgid "Usage: rpm {--help}" msgstr "" -#: rpmqv.c:593 +#: rpm.c:249 +msgid " rpm {--version}" +msgstr "" + +#: rpm.c:250 +msgid " rpm {--initdb} [--dbpath ]" +msgstr "" + +#: rpm.c:251 +msgid "" +" rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:252 +msgid " [--replacepkgs] [--replacefiles] [--root ]" +msgstr "" + +#: rpm.c:253 +msgid " [--excludedocs] [--includedocs] [--noscripts]" +msgstr "" + +#: rpm.c:254 +msgid "" +" [--rcfile ] [--ignorearch] [--dbpath ]" +msgstr "" + +#: rpm.c:255 +msgid "" +" [--prefix ] [--ignoreos] [--nodeps] [--allfiles]" +msgstr "" + +#: rpm.c:256 rpm.c:265 rpm.c:275 +msgid " [--ftpproxy ] [--ftpport ]" +msgstr "" + +#: rpm.c:257 rpm.c:276 +msgid " [--httpproxy ] [--httpport ]" +msgstr "" + +#: rpm.c:258 +msgid "" +" [--justdb] [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:259 +msgid "" +" [--badreloc] [--notriggers] [--excludepath ]" +msgstr "" + +#: rpm.c:260 +msgid " [--ignoresize] file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:261 +msgid "" +" rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]" +msgstr "" + +#: rpm.c:262 +msgid " [--oldpackage] [--root ] [--noscripts]" +msgstr "" + +#: rpm.c:263 +msgid "" +" [--excludedocs] [--includedocs] [--rcfile ]" +msgstr "" + +#: rpm.c:264 +msgid "" +" [--ignorearch] [--dbpath ] [--prefix ] " +msgstr "" + +#: rpm.c:266 +msgid " [--httpproxy ] [--httpport ] " +msgstr "" + +#: rpm.c:267 +msgid " [--ignoreos] [--nodeps] [--allfiles] [--justdb]" +msgstr "" + +#: rpm.c:268 +msgid " [--noorder] [--relocate oldpath=newpath]" +msgstr "" + +#: rpm.c:269 +msgid "" +" [--badreloc] [--excludepath ] [--ignoresize]" +msgstr "" + +#: rpm.c:270 +msgid " file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:271 +msgid " rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]" +msgstr "" + +#: rpm.c:272 +msgid " [--scripts] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:273 +msgid " [--whatprovides] [--whatrequires] [--requires]" +msgstr "" + +#: rpm.c:274 +msgid " [--triggeredby]" +msgstr "" + +#: rpm.c:277 +msgid " [--provides] [--triggers] [--dump]" +msgstr "" + +#: rpm.c:278 +msgid " [--changelog] [--dbpath ] [targets]" +msgstr "" + +#: rpm.c:279 +msgid " rpm {--verify -V -y} [-afpg] [--root ] [--rcfile ]" +msgstr "" + +#: rpm.c:280 +msgid "" +" [--dbpath ] [--nodeps] [--nofiles] [--noscripts]" +msgstr "" + +#: rpm.c:281 +msgid " [--nomd5] [targets]" +msgstr "" + +#: rpm.c:282 +msgid " rpm {--setperms} [-afpg] [target]" +msgstr "" + +#: rpm.c:283 +msgid " rpm {--setugids} [-afpg] [target]" +msgstr "" + +#: rpm.c:284 +msgid " rpm {--freshen -F} file1.rpm ... fileN.rpm" +msgstr "" + +#: rpm.c:285 +msgid " rpm {--erase -e} [--root ] [--noscripts] [--rcfile ]" +msgstr "" + +#: rpm.c:286 +msgid " [--dbpath ] [--nodeps] [--allmatches]" +msgstr "" + +#: rpm.c:287 +msgid " [--justdb] [--notriggers] package1 ... packageN" +msgstr "" + +#: rpm.c:288 +msgid " rpm {--resign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:289 +msgid " rpm {--addsign} [--rcfile ] package1 package2 ... packageN" +msgstr "" + +#: rpm.c:290 +msgid "" +" rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile ]" +msgstr "" + +#: rpm.c:291 +msgid " package1 ... packageN" +msgstr "" + +#: rpm.c:292 +msgid " rpm {--rebuilddb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:293 +msgid " rpm {--verifydb} [--rcfile ] [--dbpath ]" +msgstr "" + +#: rpm.c:294 +msgid " rpm {--querytags}" +msgstr "" + +#: rpm.c:328 +msgid "Usage:" +msgstr "" + +#: rpm.c:330 +msgid "print this message" +msgstr "" + +#: rpm.c:332 rpmqv.c:112 +msgid "print the version of rpm being used" +msgstr "" + +#: rpm.c:335 +msgid " All modes support the following arguments:" +msgstr "" + +#: rpm.c:336 +msgid " --define ' '" +msgstr "" + +#: rpm.c:337 rpmqv.c:119 +msgid "define macro with value " +msgstr "" + +#: rpm.c:338 +msgid " --eval '+' " +msgstr "" + +#: rpm.c:339 +msgid "print the expansion of macro to stdout" +msgstr "" + +#: rpm.c:340 +msgid " --pipe " +msgstr "" + +#: rpm.c:341 rpmqv.c:125 +msgid "send stdout to " +msgstr "" + +#: rpm.c:342 +msgid " --rcfile " +msgstr "" + +#: rpm.c:343 +msgid "use instead of /etc/rpmrc and $HOME/.rpmrc" +msgstr "" + +#: rpm.c:345 rpmqv.c:143 +msgid "display final rpmrc and macro configuration" +msgstr "" + +#: rpm.c:347 +msgid "be a little more verbose" +msgstr "" + +#: rpm.c:349 +msgid "be incredibly verbose (for debugging)" +msgstr "" + +#: rpm.c:352 +msgid " Install, upgrade and query (with -p) allow URL's to be used in place" +msgstr "" + +#: rpm.c:353 +msgid " of file names as well as the following options:" +msgstr "" + +#: rpm.c:354 +msgid " --ftpproxy " +msgstr "" + +#: rpm.c:355 +msgid "hostname or IP of ftp proxy" +msgstr "" + +#: rpm.c:356 +msgid " --ftpport " +msgstr "" + +#: rpm.c:357 +msgid "port number of ftp server (or proxy)" +msgstr "" + +#: rpm.c:358 +msgid " --httpproxy " +msgstr "" + +#: rpm.c:359 +msgid "hostname or IP of http proxy" +msgstr "" + +#: rpm.c:360 +msgid " --httpport " +msgstr "" + +#: rpm.c:361 +msgid "port number of http server (or proxy)" +msgstr "" + +#: rpm.c:365 +msgid "query mode" +msgstr "" + +#: rpm.c:366 rpm.c:412 rpm.c:437 rpm.c:489 rpm.c:563 +msgid " --dbpath " +msgstr "" + +#: rpm.c:367 rpm.c:413 rpm.c:438 rpm.c:490 rpm.c:564 +msgid "use as the directory for the database" +msgstr "" + +#: rpm.c:368 +msgid " --queryformat " +msgstr "" + +#: rpm.c:369 +msgid "use as the header format (implies --info)" +msgstr "" + +#: rpm.c:370 rpm.c:414 rpm.c:472 rpm.c:501 +msgid " --root " +msgstr "" + +#: rpm.c:371 rpm.c:415 rpm.c:473 rpm.c:502 rpm.c:566 rpmqv.c:128 +msgid "use as the top level directory" +msgstr "" + +#: rpm.c:372 +msgid " Package specification options:" +msgstr "" + +#: rpm.c:374 +msgid "query all packages" +msgstr "" + +#: rpm.c:375 +msgid " -f + " +msgstr "" + +#: rpm.c:376 +msgid "query package owning " +msgstr "" + +#: rpm.c:377 +msgid " -p + " +msgstr "" + +#: rpm.c:378 +msgid "query (uninstalled) package " +msgstr "" + +#: rpm.c:379 +msgid " --triggeredby " +msgstr "" + +#: rpm.c:380 +msgid "query packages triggered by " +msgstr "" + +#: rpm.c:381 +msgid " --whatprovides " +msgstr "" + +#: rpm.c:382 +msgid "query packages which provide capability" +msgstr "" + +#: rpm.c:383 +msgid " --whatrequires " +msgstr "" + +#: rpm.c:384 +msgid "query packages which require capability" +msgstr "" + +#: rpm.c:385 +msgid " Information selection options:" +msgstr "" + +#: rpm.c:387 +msgid "display package information" +msgstr "" + +#: rpm.c:389 +msgid "display the package's change log" +msgstr "" + +#: rpm.c:391 +msgid "display package file list" +msgstr "" + +#: rpm.c:393 +msgid "show file states (implies -l)" +msgstr "" + +#: rpm.c:395 +msgid "list only documentation files (implies -l)" +msgstr "" + +#: rpm.c:397 +msgid "list only configuration files (implies -l)" +msgstr "" + +#: rpm.c:399 +msgid "" +"show all verifiable information for each file (must be used with -l, -c, or -" +"d)" +msgstr "" + +#: rpm.c:401 +msgid "list capabilities package provides" +msgstr "" + +#: rpm.c:403 +msgid "list package dependencies" +msgstr "" + +#: rpm.c:405 +msgid "print the various [un]install scripts" +msgstr "" + +#: rpm.c:407 +msgid "show the trigger scripts contained in the package" +msgstr "" + +#: rpm.c:411 +msgid "" +"verify a package installation using the same same package specification " +"options as -q" +msgstr "" + +#: rpm.c:417 rpm.c:459 rpm.c:494 lib/poptI.c:158 +msgid "do not verify package dependencies" +msgstr "" + +#: rpm.c:419 lib/poptK.c:69 +msgid "do not verify file md5 checksums" +msgstr "" + +#: rpm.c:421 +msgid "do not verify file attributes" +msgstr "" + +#: rpm.c:423 +msgid "list the tags that can be used in a query format" +msgstr "" + +#: rpm.c:426 +msgid " --install " +msgstr "" + +#: rpm.c:427 +msgid " -i " +msgstr "" + +#: rpm.c:428 lib/poptI.c:154 +msgid "install package" +msgstr "" + +#: rpm.c:429 +msgid " --excludepath " +msgstr "" + +#: rpm.c:430 +msgid "skip files in path " +msgstr "" + +#: rpm.c:431 +msgid " --relocate =" +msgstr "" + +#: rpm.c:432 +msgid "relocate files from to " +msgstr "" + +#: rpm.c:434 lib/poptI.c:116 +msgid "relocate files in non-relocateable package" +msgstr "" + +#: rpm.c:435 +msgid " --prefix " +msgstr "" + +#: rpm.c:436 lib/poptI.c:204 +msgid "relocate the package to , if relocatable" +msgstr "" + +#: rpm.c:440 lib/poptI.c:128 +msgid "do not install documentation" +msgstr "" + +#: rpm.c:442 lib/poptI.c:134 +msgid "short hand for --replacepkgs --replacefiles" +msgstr "" + +#: rpm.c:444 lib/poptI.c:140 +msgid "print hash marks as package installs (good with -v)" +msgstr "" + +#: rpm.c:446 lib/poptI.c:102 +msgid "install all files, even configurations which might otherwise be skipped" +msgstr "" + +#: rpm.c:449 lib/poptI.c:143 +msgid "don't verify package architecture" +msgstr "" + +#: rpm.c:451 lib/poptI.c:149 +msgid "don't check disk space before installing" +msgstr "" + +#: rpm.c:453 lib/poptI.c:146 +msgid "don't verify package operating system" +msgstr "" + +#: rpm.c:455 lib/poptI.c:151 +msgid "install documentation" +msgstr "" + +#: rpm.c:457 rpm.c:492 lib/poptI.c:156 +msgid "update the database, but do not modify the filesystem" +msgstr "" + +#: rpm.c:461 rpm.c:496 lib/poptI.c:161 +msgid "do not reorder package installation to satisfy dependencies" +msgstr "" + +#: rpm.c:463 +msgid "don't execute any installation scripts" +msgstr "" + +#: rpm.c:465 rpm.c:500 +msgid "don't execute any scripts triggered by this package" +msgstr "" + +#: rpm.c:467 lib/poptI.c:202 +msgid "print percentages as package installs" +msgstr "" + +#: rpm.c:469 lib/poptI.c:214 +msgid "install even if the package replaces installed files" +msgstr "" + +#: rpm.c:471 lib/poptI.c:217 +msgid "reinstall if the package is already present" +msgstr "" + +#: rpm.c:475 lib/poptI.c:222 +msgid "don't install, but tell if it would work or not" +msgstr "" + +#: rpm.c:478 +msgid " --upgrade " +msgstr "" + +#: rpm.c:479 +msgid " -U " +msgstr "" + +#: rpm.c:480 +msgid "upgrade package (same options as --install, plus)" +msgstr "" + +#: rpm.c:482 lib/poptI.c:198 +msgid "" +"upgrade to an old version of the package (--force on upgrades does this " +"automatically)" +msgstr "" + +#: rpm.c:484 +msgid " --erase " +msgstr "" + +#: rpm.c:485 +msgid " -e " +msgstr "" + +#: rpm.c:486 lib/poptI.c:125 +msgid "erase (uninstall) package" +msgstr "" + +#: rpm.c:488 lib/poptI.c:106 +msgid "" +"remove all packages which match (normally an error is generated if " +" specified multiple packages)" +msgstr "" + +#: rpm.c:498 +msgid "do not execute any package specific scripts" +msgstr "" + +#: rpm.c:504 +msgid " -b " +msgstr "" + +#: rpm.c:505 +msgid " -t " +msgstr "" + +#: rpm.c:506 +msgid "build package, where is one of:" +msgstr "" + +#: rpm.c:508 +msgid "prep (unpack sources and apply patches)" +msgstr "" + +#: rpm.c:510 +#, c-format +msgid "list check (do some cursory checks on %files)" +msgstr "" + +#: rpm.c:512 +msgid "compile (prep and compile)" +msgstr "" + +#: rpm.c:514 +msgid "install (prep, compile, install)" +msgstr "" + +#: rpm.c:516 +msgid "binary package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:518 +msgid "bin/src package (prep, compile, install, package)" +msgstr "" + +#: rpm.c:520 build/poptBT.c:221 +msgid "skip straight to specified stage (only for c,i)" +msgstr "" + +#: rpm.c:522 build/poptBT.c:200 +msgid "remove build tree when done" +msgstr "" + +#: rpm.c:524 build/poptBT.c:217 +msgid "remove sources when done" +msgstr "" + +#: rpm.c:526 +msgid "remove spec file when done" +msgstr "" + +#: rpm.c:528 build/poptBT.c:223 +msgid "generate PGP/GPG signature" +msgstr "" + +#: rpm.c:529 +msgid " --buildroot " +msgstr "" + +#: rpm.c:530 +msgid "use as the build root" +msgstr "" + +#: rpm.c:531 +msgid " --target=+" +msgstr "" + +#: rpm.c:532 +msgid "build the packages for the build targets platform1...platformN." +msgstr "" + +#: rpm.c:534 +msgid "do not execute any stages" +msgstr "" + +#: rpm.c:536 +msgid " --rebuild " +msgstr "" + +#: rpm.c:537 +msgid "" +"install source package, build binary package and remove spec file, sources, " +"patches, and icons." +msgstr "" + +#: rpm.c:538 +msgid " --recompile " +msgstr "" + +#: rpm.c:539 +msgid "like --rebuild, but don't build any package" +msgstr "" + +#: rpm.c:542 +msgid " --resign + " +msgstr "" + +#: rpm.c:543 lib/poptK.c:56 +msgid "sign a package (discard current signature)" +msgstr "" + +#: rpm.c:544 +msgid " --addsign + " +msgstr "" + +#: rpm.c:545 lib/poptK.c:54 +msgid "add a signature to a package" +msgstr "" + +#: rpm.c:546 +msgid " --checksig +" +msgstr "" + +#: rpm.c:547 +msgid " -K + " +msgstr "" + +#: rpm.c:548 lib/poptK.c:60 +msgid "verify package signature" +msgstr "" + +#: rpm.c:550 lib/poptK.c:66 +msgid "skip any PGP signatures" +msgstr "" + +#: rpm.c:552 lib/poptK.c:63 +msgid "skip any GPG signatures" +msgstr "" + +#: rpm.c:554 +msgid "skip any MD5 signatures" +msgstr "" + +#: rpm.c:558 +msgid "make sure a valid database exists" +msgstr "" + +#: rpm.c:560 +msgid "rebuild database from existing database" +msgstr "" + +#: rpm.c:562 rpmdb/poptDB.c:27 +msgid "verify database files" +msgstr "" + +#: rpm.c:570 +msgid "" +"set the file permissions to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:573 +msgid "" +"set the file owner and group to those in the package database using the same " +"package specification options as -q" +msgstr "" + +#: rpm.c:725 rpm.c:731 rpm.c:740 rpm.c:762 rpm.c:768 rpm.c:775 rpm.c:783 +#: rpm.c:791 rpm.c:812 rpm.c:818 rpm.c:881 rpmqv.c:636 rpmqv.c:642 rpmqv.c:648 +#: rpmqv.c:686 +msgid "only one major mode may be specified" +msgstr "" + +#: rpm.c:733 +msgid "-u and --uninstall are deprecated and no longer work.\n" +msgstr "" + +#: rpm.c:735 +msgid "Use -e or --erase instead.\n" +msgstr "" + +#: rpm.c:824 lib/poptI.c:63 +msgid "relocations must begin with a /" +msgstr "" + +#: rpm.c:826 lib/poptI.c:65 +msgid "relocations must contain a =" +msgstr "" + +#: rpm.c:829 lib/poptI.c:68 +msgid "relocations must have a / following the =" +msgstr "" + +#: rpm.c:838 lib/poptI.c:51 +msgid "exclude paths must begin with a /" +msgstr "" + +#: rpm.c:847 rpmqv.c:588 msgid "The --rcfile option has been eliminated.\n" msgstr "" -#: rpmqv.c:594 -msgid "Use \"--macros \" instead.\n" +#: rpm.c:848 +msgid "Use --macros with a colon separated list of macro files to read.\n" msgstr "" -#: rpmqv.c:600 +#: rpm.c:853 rpmqv.c:595 #, c-format msgid "Internal error in argument processing (%d) :-(\n" msgstr "" -#: rpmqv.c:641 rpmqv.c:647 rpmqv.c:653 rpmqv.c:691 -msgid "only one major mode may be specified" -msgstr "" - -#: rpmqv.c:670 +#: rpm.c:888 rpmqv.c:665 msgid "one type of query/verify may be performed at a time" msgstr "" -#: rpmqv.c:674 +#: rpm.c:893 rpmqv.c:669 msgid "unexpected query flags" msgstr "" -#: rpmqv.c:677 +#: rpm.c:896 rpmqv.c:672 msgid "unexpected query format" msgstr "" -#: rpmqv.c:680 +#: rpm.c:899 rpmqv.c:675 msgid "unexpected query source" msgstr "" -#: rpmqv.c:721 -msgid "--dbpath given for operation that does not use a database" -msgstr "" - -#: rpmqv.c:727 +#: rpm.c:902 rpmqv.c:719 msgid "only installation, upgrading, rmsource and rmspec may be forced" msgstr "" -#: rpmqv.c:729 +#: rpm.c:905 rpmqv.c:721 msgid "files may only be relocated during package installation" msgstr "" -#: rpmqv.c:732 +#: rpm.c:908 rpmqv.c:724 msgid "only one of --prefix or --relocate may be used" msgstr "" -#: rpmqv.c:735 +#: rpm.c:911 rpmqv.c:727 msgid "" "--relocate and --excludepath may only be used when installing new packages" msgstr "" -#: rpmqv.c:738 +#: rpm.c:914 rpmqv.c:730 msgid "--prefix may only be used when installing new packages" msgstr "" -#: rpmqv.c:741 +#: rpm.c:917 rpmqv.c:733 msgid "arguments to --prefix must begin with a /" msgstr "" -#: rpmqv.c:744 +#: rpm.c:920 rpmqv.c:736 msgid "--hash (-h) may only be specified during package installation" msgstr "" -#: rpmqv.c:748 +#: rpm.c:924 rpmqv.c:740 msgid "--percent may only be specified during package installation" msgstr "" -#: rpmqv.c:753 +#: rpm.c:928 rpmqv.c:745 msgid "--replacefiles may only be specified during package installation" msgstr "" -#: rpmqv.c:757 +#: rpm.c:932 rpmqv.c:749 msgid "--replacepkgs may only be specified during package installation" msgstr "" -#: rpmqv.c:761 +#: rpm.c:936 rpmqv.c:753 msgid "--excludedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:765 +#: rpm.c:940 rpmqv.c:757 msgid "--includedocs may only be specified during package installation" msgstr "" -#: rpmqv.c:769 +#: rpm.c:944 rpmqv.c:761 msgid "only one of --excludedocs and --includedocs may be specified" msgstr "" -#: rpmqv.c:773 +#: rpm.c:948 rpmqv.c:765 msgid "--ignorearch may only be specified during package installation" msgstr "" -#: rpmqv.c:777 +#: rpm.c:952 rpmqv.c:769 msgid "--ignoreos may only be specified during package installation" msgstr "" -#: rpmqv.c:782 +#: rpm.c:956 rpmqv.c:774 msgid "--ignoresize may only be specified during package installation" msgstr "" -#: rpmqv.c:786 +#: rpm.c:960 rpmqv.c:778 msgid "--allmatches may only be specified during package erasure" msgstr "" -#: rpmqv.c:790 +#: rpm.c:964 rpmqv.c:782 msgid "--allfiles may only be specified during package installation" msgstr "" -#: rpmqv.c:795 +#: rpm.c:968 rpmqv.c:787 msgid "--justdb may only be specified during package installation and erasure" msgstr "" -#: rpmqv.c:800 +#: rpm.c:975 msgid "" -"script disabling options may only be specified during package installation " -"and erasure" +"script disabling options may only be specified during package installation, " +"erasure, and verification" msgstr "" -#: rpmqv.c:805 +#: rpm.c:979 +msgid "--apply may only be specified during package installation" +msgstr "" + +#: rpm.c:984 rpmqv.c:797 msgid "" "trigger disabling options may only be specified during package installation " "and erasure" msgstr "" -#: rpmqv.c:809 +#: rpm.c:988 rpmqv.c:801 msgid "" "--nodeps may only be specified during package building, rebuilding, " "recompilation, installation,erasure, and verification" msgstr "" -#: rpmqv.c:814 +#: rpm.c:993 rpmqv.c:806 msgid "" "--test may only be specified during package installation, erasure, and " "building" msgstr "" -#: rpmqv.c:819 +#: rpm.c:997 rpmqv.c:811 msgid "" "--root (-r) may only be specified during installation, erasure, querying, " "and database rebuilds" msgstr "" -#: rpmqv.c:831 +#: rpm.c:1009 rpmqv.c:823 msgid "arguments to --root (-r) must begin with a /" msgstr "" -#: rpmqv.c:855 +#: rpm.c:1015 +msgid "--oldpackage may only be used during upgrades" +msgstr "" + +#: rpm.c:1018 +msgid "--nopgp may only be used during signature checking" +msgstr "" + +#: rpm.c:1021 +msgid "--nogpg may only be used during signature checking" +msgstr "" + +#: rpm.c:1024 +msgid "" +"--nomd5 may only be used during signature checking and package verification" +msgstr "" + +#: rpm.c:1035 rpmqv.c:844 msgid "no files to sign\n" msgstr "" -#: rpmqv.c:860 +#: rpm.c:1040 rpmqv.c:849 #, c-format msgid "cannot access file %s\n" msgstr "" -#: rpmqv.c:879 +#: rpm.c:1055 rpmqv.c:868 msgid "pgp not found: " msgstr "" -#: rpmqv.c:884 +#: rpm.c:1059 rpmqv.c:873 msgid "Enter pass phrase: " msgstr "" -#: rpmqv.c:886 +#: rpm.c:1061 rpmqv.c:875 msgid "Pass phrase check failed\n" msgstr "" -#: rpmqv.c:890 +#: rpm.c:1064 rpmqv.c:879 msgid "Pass phrase is good.\n" msgstr "" -#: rpmqv.c:895 +#: rpm.c:1069 rpmqv.c:884 #, c-format msgid "Invalid %%_signature spec in macro file.\n" msgstr "" -#: rpmqv.c:902 +#: rpm.c:1075 rpmqv.c:891 msgid "--sign may only be used during package building" msgstr "" -#: rpmqv.c:919 +#: rpm.c:1090 rpmqv.c:907 msgid "exec failed\n" msgstr "" -#: rpmqv.c:951 -msgid "no packages files given for rebuild" -msgstr "" - -#: rpmqv.c:1019 -msgid "no spec files given for build" -msgstr "" - -#: rpmqv.c:1021 -msgid "no tar files given for build" -msgstr "" - -#: rpmqv.c:1043 -msgid "no packages given for erase" -msgstr "" - -#: rpmqv.c:1085 -msgid "no packages given for install" -msgstr "" - -#: rpmqv.c:1103 -msgid "no arguments given for query" -msgstr "" - -#: rpmqv.c:1116 -msgid "no arguments given for verify" -msgstr "" - -#: rpmqv.c:1124 +#: rpm.c:1113 rpmqv.c:1127 msgid "unexpected arguments to --querytags " msgstr "" -#: rpmqv.c:1140 -msgid "no arguments given" +#: rpm.c:1124 rpmqv.c:1136 +msgid "no packages given for signature check" msgstr "" -#: build/build.c:125 build/pack.c:479 +#: rpm.c:1135 rpmqv.c:1145 +msgid "no packages given for signing" +msgstr "" + +#: rpm.c:1151 +msgid "no packages given for uninstall" +msgstr "" + +#: rpm.c:1240 rpmqv.c:1067 +msgid "no packages given for install" +msgstr "" + +#: rpm.c:1264 rpmqv.c:1090 +msgid "extra arguments given for query of all packages" +msgstr "" + +#: rpm.c:1269 rpmqv.c:1099 +msgid "no arguments given for query" +msgstr "" + +#: rpm.c:1286 rpmqv.c:1115 +msgid "extra arguments given for verify of all packages" +msgstr "" + +#: rpm.c:1290 rpmqv.c:1119 +msgid "no arguments given for verify" +msgstr "" + +#: rpm2cpio.c:34 +msgid "argument is not an RPM package\n" +msgstr "" + +#: rpm2cpio.c:38 +msgid "error reading header from package\n" +msgstr "" + +#: rpm2cpio.c:60 +#, c-format +msgid "cannot re-open payload: %s\n" +msgstr "" + +#: rpmqv.c:115 +msgid "provide less detailed output" +msgstr "" + +#: rpmqv.c:117 +msgid "provide more detailed output" +msgstr "" + +#: rpmqv.c:120 +msgid "' '" +msgstr "" + +#: rpmqv.c:122 +msgid "print macro expansion of +" +msgstr "" + +#: rpmqv.c:123 +msgid "+" +msgstr "" + +#: rpmqv.c:126 +msgid "" +msgstr "" + +#: rpmqv.c:129 lib/poptI.c:205 +msgid "" +msgstr "" + +#: rpmqv.c:131 +msgid "read instead of default macro file(s)" +msgstr "" + +#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140 +msgid "" +msgstr "" + +#: rpmqv.c:135 rpmqv.c:139 +msgid "read instead of default rpmrc file(s)" +msgstr "" + +#: rpmqv.c:148 +msgid "disable use of libio(3) API" +msgstr "" + +#: rpmqv.c:151 +msgid "debug protocol data stream" +msgstr "" + +#: rpmqv.c:153 +msgid "debug rpmio I/O" +msgstr "" + +#: rpmqv.c:155 +msgid "debug URL cache handling" +msgstr "" + +#: rpmqv.c:175 +msgid "Query options (with -q or --query):" +msgstr "" + +#: rpmqv.c:178 +msgid "Verify options (with -V or --verify):" +msgstr "" + +#: rpmqv.c:184 +msgid "Signature options:" +msgstr "" + +#: rpmqv.c:190 +msgid "Database options:" +msgstr "" + +#: rpmqv.c:196 +msgid "Build options with [ | | ]:" +msgstr "" + +#: rpmqv.c:202 +msgid "Install/Upgrade/Erase options:" +msgstr "" + +#: rpmqv.c:207 +msgid "Common options for all rpm modes:" +msgstr "" + +#: rpmqv.c:224 lib/poptI.c:27 +#, c-format +msgid "%s: %s\n" +msgstr "" + +#: rpmqv.c:252 +#, c-format +msgid "Usage: %s {--help}\n" +msgstr "" + +#: rpmqv.c:589 +msgid "Use \"--macros \" instead.\n" +msgstr "" + +#: rpmqv.c:713 +msgid "--dbpath given for operation that does not use a database" +msgstr "" + +#: rpmqv.c:792 +msgid "" +"script disabling options may only be specified during package installation " +"and erasure" +msgstr "" + +#: rpmqv.c:937 +msgid "no packages files given for rebuild" +msgstr "" + +#: rpmqv.c:1006 +msgid "no spec files given for build" +msgstr "" + +#: rpmqv.c:1008 +msgid "no tar files given for build" +msgstr "" + +#: rpmqv.c:1029 +msgid "no packages given for erase" +msgstr "" + +#: build/build.c:125 build/pack.c:470 msgid "Unable to open temp file.\n" msgstr "" @@ -503,180 +1303,180 @@ msgstr "" msgid "syntax error in expression\n" msgstr "" -#: build/files.c:271 +#: build/files.c:274 #, c-format msgid "TIMECHECK failure: %s\n" msgstr "" -#: build/files.c:330 build/files.c:522 build/files.c:705 +#: build/files.c:333 build/files.c:525 build/files.c:708 #, c-format msgid "Missing '(' in %s %s\n" msgstr "" -#: build/files.c:341 build/files.c:647 build/files.c:716 +#: build/files.c:344 build/files.c:650 build/files.c:719 #, c-format msgid "Missing ')' in %s(%s\n" msgstr "" -#: build/files.c:379 build/files.c:672 +#: build/files.c:382 build/files.c:675 #, c-format msgid "Invalid %s token: %s\n" msgstr "" -#: build/files.c:485 +#: build/files.c:488 #, c-format msgid "Missing %s in %s %s\n" msgstr "" -#: build/files.c:538 +#: build/files.c:541 #, c-format msgid "Non-white space follows %s(): %s\n" msgstr "" -#: build/files.c:576 +#: build/files.c:579 #, c-format msgid "Bad syntax: %s(%s)\n" msgstr "" -#: build/files.c:586 +#: build/files.c:589 #, c-format msgid "Bad mode spec: %s(%s)\n" msgstr "" -#: build/files.c:598 +#: build/files.c:601 #, c-format msgid "Bad dirmode spec: %s(%s)\n" msgstr "" -#: build/files.c:743 +#: build/files.c:746 #, c-format msgid "Unusual locale length: \"%.*s\" in %%lang(%s)\n" msgstr "" #. @innercontinue@ -#: build/files.c:754 +#: build/files.c:757 #, c-format msgid "Duplicate locale %.*s in %%lang(%s)\n" msgstr "" -#: build/files.c:905 +#: build/files.c:908 #, c-format msgid "Hit limit for %%docdir\n" msgstr "" -#: build/files.c:911 +#: build/files.c:914 #, c-format msgid "Only one arg for %%docdir\n" msgstr "" #. We already got a file -- error -#: build/files.c:939 +#: build/files.c:942 #, c-format msgid "Two files on one line: %s\n" msgstr "" -#: build/files.c:954 +#: build/files.c:957 #, c-format msgid "File must begin with \"/\": %s\n" msgstr "" -#: build/files.c:967 +#: build/files.c:970 #, c-format msgid "Can't mix special %%doc with other forms: %s\n" msgstr "" -#: build/files.c:1110 +#: build/files.c:1124 #, c-format msgid "File listed twice: %s\n" msgstr "" -#: build/files.c:1254 +#: build/files.c:1268 #, c-format msgid "Symlink points to BuildRoot: %s -> %s\n" msgstr "" -#: build/files.c:1491 +#: build/files.c:1499 #, c-format msgid "File doesn't match prefix (%s): %s\n" msgstr "" -#: build/files.c:1515 +#: build/files.c:1523 #, c-format msgid "File not found: %s\n" msgstr "" -#: build/files.c:1558 build/files.c:2174 build/parsePrep.c:50 +#: build/files.c:1566 build/files.c:2182 build/parsePrep.c:50 #, c-format msgid "Bad owner/group: %s\n" msgstr "" -#: build/files.c:1571 +#: build/files.c:1579 #, c-format msgid "File%5d: %07o %s.%s\t %s\n" msgstr "" -#: build/files.c:1676 +#: build/files.c:1684 #, c-format msgid "File needs leading \"/\": %s\n" msgstr "" -#: build/files.c:1699 +#: build/files.c:1707 #, c-format msgid "Glob not permitted: %s\n" msgstr "" -#: build/files.c:1714 +#: build/files.c:1722 #, c-format msgid "File not found by glob: %s\n" msgstr "" -#: build/files.c:1776 +#: build/files.c:1784 #, c-format msgid "Could not open %%files file %s: %s\n" msgstr "" -#: build/files.c:1787 build/pack.c:146 +#: build/files.c:1795 build/pack.c:149 #, c-format msgid "line: %s\n" msgstr "" -#: build/files.c:2162 +#: build/files.c:2170 #, c-format msgid "Bad file: %s: %s\n" msgstr "" #. XXX this error message is probably not seen. -#: build/files.c:2236 +#: build/files.c:2244 #, c-format msgid "Couldn't exec %s: %s\n" msgstr "" -#: build/files.c:2241 +#: build/files.c:2249 #, c-format msgid "Couldn't fork %s: %s\n" msgstr "" -#: build/files.c:2325 +#: build/files.c:2333 #, c-format msgid "%s failed\n" msgstr "" -#: build/files.c:2329 +#: build/files.c:2337 #, c-format msgid "failed to write all data to %s\n" msgstr "" -#: build/files.c:2485 +#: build/files.c:2493 #, c-format msgid "Finding %s: (using %s)...\n" msgstr "" -#: build/files.c:2514 build/files.c:2528 +#: build/files.c:2522 build/files.c:2536 #, c-format msgid "Failed to find %s:\n" msgstr "" -#: build/files.c:2650 +#: build/files.c:2658 #, c-format msgid "Processing files: %s-%s-%s\n" msgstr "" @@ -710,152 +1510,152 @@ msgstr "" msgid "Could not canonicalize hostname: %s\n" msgstr "" -#: build/pack.c:79 +#: build/pack.c:82 #, c-format msgid "create archive failed on file %s: %s\n" msgstr "" -#: build/pack.c:82 +#: build/pack.c:85 #, c-format msgid "create archive failed: %s\n" msgstr "" -#: build/pack.c:104 +#: build/pack.c:107 #, c-format msgid "cpio_copy write failed: %s\n" msgstr "" -#: build/pack.c:111 +#: build/pack.c:114 #, c-format msgid "cpio_copy read failed: %s\n" msgstr "" -#: build/pack.c:214 +#: build/pack.c:217 #, c-format msgid "Could not open PreIn file: %s\n" msgstr "" -#: build/pack.c:221 +#: build/pack.c:224 #, c-format msgid "Could not open PreUn file: %s\n" msgstr "" -#: build/pack.c:228 +#: build/pack.c:231 #, c-format msgid "Could not open PostIn file: %s\n" msgstr "" -#: build/pack.c:235 +#: build/pack.c:238 #, c-format msgid "Could not open PostUn file: %s\n" msgstr "" -#: build/pack.c:243 +#: build/pack.c:246 #, c-format msgid "Could not open VerifyScript file: %s\n" msgstr "" -#: build/pack.c:258 +#: build/pack.c:261 #, c-format msgid "Could not open Trigger script file: %s\n" msgstr "" -#: build/pack.c:286 +#: build/pack.c:289 #, c-format msgid "readRPM: open %s: %s\n" msgstr "" -#: build/pack.c:296 +#: build/pack.c:299 #, c-format msgid "readRPM: read %s: %s\n" msgstr "" -#: build/pack.c:305 build/pack.c:521 +#: build/pack.c:308 build/pack.c:512 #, c-format msgid "%s: Fseek failed: %s\n" msgstr "" -#: build/pack.c:333 +#: build/pack.c:324 #, c-format msgid "readRPM: %s is not an RPM package\n" msgstr "" -#: build/pack.c:342 +#: build/pack.c:333 #, c-format msgid "readRPM: reading header from %s\n" msgstr "" -#: build/pack.c:467 +#: build/pack.c:458 msgid "Unable to create immutable header region.\n" msgstr "" -#: build/pack.c:485 +#: build/pack.c:476 msgid "Unable to write temp header\n" msgstr "" -#: build/pack.c:493 +#: build/pack.c:484 msgid "Bad CSA data\n" msgstr "" -#: build/pack.c:528 +#: build/pack.c:519 msgid "Unable to write final header\n" msgstr "" -#: build/pack.c:546 +#: build/pack.c:537 #, c-format msgid "Generating signature: %d\n" msgstr "" -#: build/pack.c:559 +#: build/pack.c:550 msgid "Unable to reload signature header.\n" msgstr "" -#: build/pack.c:567 +#: build/pack.c:558 #, c-format msgid "Could not open %s: %s\n" msgstr "" -#: build/pack.c:603 lib/psm.c:1444 +#: build/pack.c:594 lib/psm.c:1573 #, c-format msgid "Unable to write package: %s\n" msgstr "" -#: build/pack.c:618 +#: build/pack.c:609 #, c-format msgid "Unable to open sigtarget %s: %s\n" msgstr "" -#: build/pack.c:628 +#: build/pack.c:619 #, c-format msgid "Unable to read header from %s: %s\n" msgstr "" -#: build/pack.c:642 +#: build/pack.c:633 #, c-format msgid "Unable to write header to %s: %s\n" msgstr "" -#: build/pack.c:652 +#: build/pack.c:643 #, c-format msgid "Unable to read payload from %s: %s\n" msgstr "" -#: build/pack.c:658 +#: build/pack.c:649 #, c-format msgid "Unable to write payload to %s: %s\n" msgstr "" -#: build/pack.c:683 lib/psm.c:1725 +#: build/pack.c:674 lib/psm.c:1852 #, c-format msgid "Wrote: %s\n" msgstr "" -#: build/pack.c:750 +#: build/pack.c:741 #, c-format msgid "Could not generate output filename for package %s: %s\n" msgstr "" -#: build/pack.c:767 +#: build/pack.c:758 #, c-format msgid "cannot create %s: %s\n" msgstr "" @@ -1205,299 +2005,313 @@ msgstr "" msgid "Package has no %%description: %s\n" msgstr "" -#: build/poptBT.c:116 +#: build/poptBT.c:117 #, c-format msgid "buildroot already specified, ignoring %s\n" msgstr "" -#: build/poptBT.c:146 +#: build/poptBT.c:147 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:147 build/poptBT.c:150 build/poptBT.c:153 build/poptBT.c:156 -#: build/poptBT.c:159 build/poptBT.c:162 build/poptBT.c:165 +#: build/poptBT.c:148 build/poptBT.c:151 build/poptBT.c:154 build/poptBT.c:157 +#: build/poptBT.c:160 build/poptBT.c:163 build/poptBT.c:166 msgid "" msgstr "" -#: build/poptBT.c:149 +#: build/poptBT.c:150 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:152 +#: build/poptBT.c:153 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:155 +#: build/poptBT.c:156 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:158 +#: build/poptBT.c:159 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:161 +#: build/poptBT.c:162 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:164 +#: build/poptBT.c:165 msgid "build source package only from " msgstr "" -#: build/poptBT.c:168 +#: build/poptBT.c:169 #, c-format msgid "build through %prep (unpack sources and apply patches) from " msgstr "" -#: build/poptBT.c:169 build/poptBT.c:172 build/poptBT.c:175 build/poptBT.c:178 -#: build/poptBT.c:181 build/poptBT.c:184 build/poptBT.c:187 +#: build/poptBT.c:170 build/poptBT.c:173 build/poptBT.c:176 build/poptBT.c:179 +#: build/poptBT.c:182 build/poptBT.c:185 build/poptBT.c:188 msgid "" msgstr "" -#: build/poptBT.c:171 +#: build/poptBT.c:172 msgid "build through %build (%prep, then compile) from " msgstr "" -#: build/poptBT.c:174 +#: build/poptBT.c:175 msgid "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:177 +#: build/poptBT.c:178 #, c-format msgid "verify %files section from " msgstr "" -#: build/poptBT.c:180 +#: build/poptBT.c:181 msgid "build source and binary packages from " msgstr "" -#: build/poptBT.c:183 +#: build/poptBT.c:184 msgid "build binary package only from " msgstr "" -#: build/poptBT.c:186 +#: build/poptBT.c:187 msgid "build source package only from " msgstr "" -#: build/poptBT.c:190 +#: build/poptBT.c:191 msgid "build binary package from " msgstr "" -#: build/poptBT.c:191 build/poptBT.c:194 +#: build/poptBT.c:192 build/poptBT.c:195 msgid "" msgstr "" -#: build/poptBT.c:193 +#: build/poptBT.c:194 msgid "" "build through %install (%prep, %build, then install) from " msgstr "" -#: build/poptBT.c:197 +#: build/poptBT.c:198 msgid "override build root" msgstr "" -#: build/poptBT.c:199 -msgid "remove build tree when done" -msgstr "" - -#: build/poptBT.c:201 rpmdb/poptDB.c:29 +#: build/poptBT.c:202 rpmdb/poptDB.c:32 msgid "generate headers compatible with rpm4 packaging" msgstr "" -#: build/poptBT.c:203 +#: build/poptBT.c:204 msgid "ignore ExcludeArch: directives from spec file" msgstr "" -#: build/poptBT.c:205 +#: build/poptBT.c:206 msgid "debug file state machine" msgstr "" -#: build/poptBT.c:207 +#: build/poptBT.c:208 msgid "do not execute any stages of the build" msgstr "" -#: build/poptBT.c:209 +#: build/poptBT.c:210 msgid "do not verify build dependencies" msgstr "" -#: build/poptBT.c:211 +#: build/poptBT.c:212 msgid "generate package header(s) compatible with (legacy) rpm[23] packaging" msgstr "" -#: build/poptBT.c:214 +#: build/poptBT.c:215 msgid "do not accept i18N msgstr's from specfile" msgstr "" -#: build/poptBT.c:216 -msgid "remove sources when done" -msgstr "" - -#: build/poptBT.c:218 +#: build/poptBT.c:219 msgid "remove specfile when done" msgstr "" -#: build/poptBT.c:220 -msgid "skip straight to specified stage (only for c,i)" -msgstr "" - -#: build/poptBT.c:222 -msgid "generate PGP/GPG signature" -msgstr "" - -#: build/poptBT.c:224 +#: build/poptBT.c:225 msgid "override target platform" msgstr "" -#: build/poptBT.c:226 +#: build/poptBT.c:227 msgid "lookup i18N strings in specfile catalog" msgstr "" -#: build/spec.c:232 +#: build/spec.c:228 #, c-format msgid "line %d: Bad number: %s\n" msgstr "" -#: build/spec.c:238 +#: build/spec.c:234 #, c-format msgid "line %d: Bad no%s number: %d\n" msgstr "" -#: build/spec.c:299 +#: build/spec.c:295 #, c-format msgid "line %d: Bad %s number: %s\n" msgstr "" -#: lib/cpio.c:187 +#: lib/cpio.c:191 #, c-format msgid "(error 0x%x)" msgstr "" -#: lib/cpio.c:190 +#: lib/cpio.c:194 msgid "Bad magic" msgstr "" -#: lib/cpio.c:191 +#: lib/cpio.c:195 msgid "Bad/unreadable header" msgstr "" -#: lib/cpio.c:212 +#: lib/cpio.c:216 msgid "Header size too big" msgstr "" -#: lib/cpio.c:213 +#: lib/cpio.c:217 msgid "Unknown file type" msgstr "" -#: lib/cpio.c:214 +#: lib/cpio.c:218 msgid "Missing hard link(s)" msgstr "" -#: lib/cpio.c:215 +#: lib/cpio.c:219 msgid "MD5 sum mismatch" msgstr "" -#: lib/cpio.c:216 +#: lib/cpio.c:220 msgid "Internal error" msgstr "" -#: lib/cpio.c:217 +#: lib/cpio.c:221 msgid "Archive file not in header" msgstr "" -#: lib/cpio.c:228 +#: lib/cpio.c:232 msgid " failed - " msgstr "" -#: lib/depends.c:104 +#. XXX legacy epoch-less requires/conflicts compatibility +#: lib/depends.c:569 #, c-format -msgid "cannot open Packages database in %s\n" +msgid "" +"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" +"\tA %s\tB %s\n" msgstr "" -#: lib/depends.c:297 +#: lib/depends.c:598 #, c-format -msgid "package %s was already added, replacing with %s\n" +msgid " %s A %s\tB %s\n" msgstr "" -#: lib/depends.c:568 -msgid "(cached)" -msgstr "" - -#: lib/depends.c:593 -msgid "(rpmrc provides)" -msgstr "" - -#: lib/depends.c:609 -msgid "(rpmlib provides)" -msgstr "" - -#: lib/depends.c:630 -msgid "(db files)" -msgstr "" - -#: lib/depends.c:642 -msgid "(db provides)" -msgstr "" - -#: lib/depends.c:655 -msgid "(db package)" -msgstr "" - -#: lib/depends.c:694 -#, c-format -msgid "%9s: (%s, %s) added to Depends cache.\n" -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 -msgid "NO " -msgstr "" - -#: lib/depends.c:696 lib/rpmds.c:411 lib/rpmds.c:570 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 msgid "YES" msgstr "" -#: lib/depends.c:962 +#: lib/depends.c:599 lib/depends.c:1221 lib/depends.c:1354 +msgid "NO " +msgstr "" + +#: lib/depends.c:1023 +#, c-format +msgid "%s: %-45s YES (added files)\n" +msgstr "" + +#: lib/depends.c:1129 +#, c-format +msgid "%s: %-45s YES (added provide)\n" +msgstr "" + +#: lib/depends.c:1220 +#, c-format +msgid "%s: %-45s %-s (cached)\n" +msgstr "" + +#: lib/depends.c:1249 +#, c-format +msgid "%s: %-45s YES (rpmrc provides)\n" +msgstr "" + +#: lib/depends.c:1266 +#, c-format +msgid "%s: %-45s YES (rpmlib provides)\n" +msgstr "" + +#: lib/depends.c:1290 +#, c-format +msgid "%s: %-45s YES (db files)\n" +msgstr "" + +#: lib/depends.c:1303 +#, c-format +msgid "%s: %-45s YES (db provides)\n" +msgstr "" + +#: lib/depends.c:1317 +#, c-format +msgid "%s: %-45s YES (db package)\n" +msgstr "" + +#: lib/depends.c:1333 +#, c-format +msgid "%s: %-45s NO\n" +msgstr "" + +#: lib/depends.c:1354 +#, c-format +msgid "%s: (%s, %s) added to Depends cache.\n" +msgstr "" + +#. requirements are not satisfied. +#: lib/depends.c:1426 +#, c-format +msgid "package %s-%s-%s require not satisfied: %s\n" +msgstr "" + +#. conflicts exist. +#: lib/depends.c:1505 +#, c-format +msgid "package %s conflicts: %s\n" +msgstr "" + +#: lib/depends.c:1688 #, c-format msgid "ignore package name relation(s) [%d]\t%s -> %s\n" msgstr "" -#: lib/depends.c:1081 +#: lib/depends.c:1792 #, c-format -msgid "removing %s \"%s\" from tsort relations.\n" +msgid "removing %s-%s-%s \"%s\" from tsort relations.\n" msgstr "" #. Record all relations. -#: lib/depends.c:1349 +#: lib/depends.c:1948 msgid "========== recording tsort relations\n" msgstr "" #. T4. Scan for zeroes. -#: lib/depends.c:1455 +#: lib/depends.c:2008 msgid "" "========== tsorting packages (order, #predecessors, #succesors, tree, " "depth)\n" msgstr "" -#: lib/depends.c:1548 +#: lib/depends.c:2073 msgid "========== successors only (presentation order)\n" msgstr "" -#: lib/depends.c:1618 +#: lib/depends.c:2137 msgid "LOOP:\n" msgstr "" -#: lib/depends.c:1653 +#: lib/depends.c:2166 msgid "========== continuing tsort ...\n" msgstr "" -#. Return no. of packages that could not be ordered. -#: lib/depends.c:1658 -#, c-format -msgid "rpmdepOrder failed, %d elements remain\n" -msgstr "" - #: lib/formats.c:29 lib/formats.c:53 lib/formats.c:84 lib/formats.c:281 -#: rpmdb/header.c:2951 rpmdb/header.c:2972 rpmdb/header.c:2994 +#: lib/header.c:2951 lib/header.c:2972 lib/header.c:2994 msgid "(not a number)" msgstr "" @@ -1538,960 +2352,874 @@ msgstr "" msgid "file %s is on an unknown device\n" msgstr "" -#: lib/fsm.c:308 -msgid "========== Directories not explictly included in package:\n" +#: lib/fsm.c:290 +msgid "========= Directories not explictly included in package:\n" msgstr "" -#: lib/fsm.c:310 +#: lib/fsm.c:292 #, c-format -msgid "%10d %s\n" +msgid "%9d %s\n" msgstr "" -#: lib/fsm.c:1191 +#: lib/fsm.c:1147 #, c-format msgid "%s directory created with perms %04o.\n" msgstr "" -#: lib/fsm.c:1476 +#: lib/fsm.c:1430 #, c-format msgid "archive file %s was not found in header file list\n" msgstr "" -#: lib/fsm.c:1597 lib/fsm.c:1727 +#: lib/fsm.c:1551 lib/fsm.c:1680 #, c-format msgid "%s saved as %s\n" msgstr "" -#: lib/fsm.c:1753 +#: lib/fsm.c:1706 #, c-format msgid "%s rmdir of %s failed: Directory not empty\n" msgstr "" -#: lib/fsm.c:1759 +#: lib/fsm.c:1712 #, c-format msgid "%s rmdir of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1769 +#: lib/fsm.c:1722 #, c-format msgid "%s unlink of %s failed: %s\n" msgstr "" -#: lib/fsm.c:1791 +#: lib/fsm.c:1742 #, c-format msgid "%s created as %s\n" msgstr "" -#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217 -#, c-format -msgid "error creating temporary file %s\n" -msgstr "" - -#: lib/package.c:167 lib/package.c:238 -msgid "packaging version 1 is not supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:188 lib/package.c:246 -msgid "" -"only packaging with major numbers <= 4 is supported by this version of RPM\n" -msgstr "" - -#: lib/package.c:224 lib/rpmchecksig.c:156 lib/rpmchecksig.c:522 -#, c-format -msgid "%s: readLead failed\n" -msgstr "" - -#: lib/package.c:230 -#, c-format -msgid "%s: bad magic\n" -msgstr "" - -#: lib/package.c:254 lib/rpmchecksig.c:174 lib/rpmchecksig.c:538 -#, c-format -msgid "%s: rpmReadSignature failed\n" -msgstr "" - -#: lib/package.c:258 lib/rpmchecksig.c:178 lib/rpmchecksig.c:543 -#, c-format -msgid "%s: No signature available\n" -msgstr "" - -#: lib/package.c:284 -#, c-format -msgid "%s: headerRead failed\n" -msgstr "" - -#: lib/package.c:303 lib/rpmchecksig.c:107 lib/rpmchecksig.c:466 -#, c-format -msgid "%s: Fread failed: %s\n" -msgstr "" - -#: lib/poptI.c:53 -msgid "exclude paths must begin with a /" -msgstr "" - -#: lib/poptI.c:65 -msgid "relocations must begin with a /" -msgstr "" - -#: lib/poptI.c:67 -msgid "relocations must contain a =" -msgstr "" - -#: lib/poptI.c:70 -msgid "relocations must have a / following the =" -msgstr "" - -#: lib/poptI.c:84 -msgid "rollback takes a time/date stamp argument" -msgstr "" - -#: lib/poptI.c:91 -msgid "malformed rollback time/date stamp argument" -msgstr "" - -#: lib/poptI.c:110 -msgid "install all files, even configurations which might otherwise be skipped" -msgstr "" - -#: lib/poptI.c:114 -msgid "" -"remove all packages which match (normally an error is generated if " -" specified multiple packages)" -msgstr "" - -#: lib/poptI.c:120 lib/poptI.c:171 -msgid "do not execute package scriptlet(s)" -msgstr "" - -#: lib/poptI.c:124 -msgid "relocate files in non-relocateable package" -msgstr "" - -#: lib/poptI.c:127 -msgid "save erased package files by renaming into sub-directory" -msgstr "" - -#: lib/poptI.c:130 -msgid "erase (uninstall) package" -msgstr "" - -#: lib/poptI.c:130 -msgid "+" -msgstr "" - -#: lib/poptI.c:133 -msgid "do not install documentation" -msgstr "" - -#: lib/poptI.c:135 -msgid "skip files with leading component " -msgstr "" - -#: lib/poptI.c:136 -msgid "" -msgstr "" - -#: lib/poptI.c:139 -msgid "short hand for --replacepkgs --replacefiles" -msgstr "" - -#: lib/poptI.c:142 -msgid "upgrade package(s) if already installed" -msgstr "" - -#: lib/poptI.c:143 lib/poptI.c:159 lib/poptI.c:231 -msgid "+" -msgstr "" - -#: lib/poptI.c:145 -msgid "print hash marks as package installs (good with -v)" -msgstr "" - -#: lib/poptI.c:148 -msgid "don't verify package architecture" -msgstr "" - -#: lib/poptI.c:151 -msgid "don't verify package operating system" -msgstr "" - -#: lib/poptI.c:154 -msgid "don't check disk space before installing" -msgstr "" - -#: lib/poptI.c:156 -msgid "install documentation" -msgstr "" - -#: lib/poptI.c:159 -msgid "install package" -msgstr "" - -#: lib/poptI.c:161 -msgid "update the database, but do not modify the filesystem" -msgstr "" - -#: lib/poptI.c:163 -msgid "do not verify package dependencies" -msgstr "" - -#: lib/poptI.c:166 -msgid "do not reorder package installation to satisfy dependencies" -msgstr "" - -#: lib/poptI.c:174 -#, c-format -msgid "do not execute %%pre scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:177 -#, c-format -msgid "do not execute %%post scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:180 -#, c-format -msgid "do not execute %%preun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:183 -#, c-format -msgid "do not execute %%postun scriptlet (if any)" -msgstr "" - -#: lib/poptI.c:187 -msgid "do not execute any scriptlet(s) triggered by this package" -msgstr "" - -#: lib/poptI.c:190 -#, c-format -msgid "do not execute any %%triggerprein scriptlet(s)" -msgstr "" - -#: lib/poptI.c:193 -#, c-format -msgid "do not execute any %%triggerin scriptlet(s)" -msgstr "" - -#: lib/poptI.c:196 -#, c-format -msgid "do not execute any %%triggerun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:199 -#, c-format -msgid "do not execute any %%triggerpostun scriptlet(s)" -msgstr "" - -#: lib/poptI.c:203 -msgid "" -"upgrade to an old version of the package (--force on upgrades does this " -"automatically)" -msgstr "" - -#: lib/poptI.c:207 -msgid "print percentages as package installs" -msgstr "" - -#: lib/poptI.c:209 -msgid "relocate the package to , if relocatable" -msgstr "" - -#: lib/poptI.c:212 -msgid "relocate files from path to " -msgstr "" - -#: lib/poptI.c:213 -msgid "=" -msgstr "" - -#: lib/poptI.c:216 -msgid "save erased package files by repackaging" -msgstr "" - -#: lib/poptI.c:219 -msgid "install even if the package replaces installed files" -msgstr "" - -#: lib/poptI.c:222 -msgid "reinstall if the package is already present" -msgstr "" - -#: lib/poptI.c:224 -msgid "deinstall new, reinstall old, package(s), back to " -msgstr "" - -#: lib/poptI.c:225 -msgid "" -msgstr "" - -#: lib/poptI.c:227 -msgid "don't install, but tell if it would work or not" -msgstr "" - -#: lib/poptI.c:230 -msgid "upgrade package(s)" -msgstr "" - -#: lib/poptQV.c:95 -msgid "query/verify all packages" -msgstr "" - -#: lib/poptQV.c:97 -msgid "rpm checksig mode" -msgstr "" - -#: lib/poptQV.c:99 -msgid "query/verify package(s) owning file" -msgstr "" - -#: lib/poptQV.c:101 -msgid "query/verify package(s) with file identifier" -msgstr "" - -#: lib/poptQV.c:103 -msgid "query/verify package(s) in group" -msgstr "" - -#: lib/poptQV.c:105 -msgid "query/verify package(s) with header identifier" -msgstr "" - -#: lib/poptQV.c:107 -msgid "query/verify a package file (i.e. a binary *.rpm file)" -msgstr "" - -#: lib/poptQV.c:109 -msgid "query/verify package(s) with package identifier" -msgstr "" - -#: lib/poptQV.c:111 -msgid "rpm query mode" -msgstr "" - -#: lib/poptQV.c:115 -msgid "display known query tags" -msgstr "" - -#: lib/poptQV.c:117 -msgid "query a spec file" -msgstr "" - -#: lib/poptQV.c:117 -msgid "" -msgstr "" - -#: lib/poptQV.c:119 -msgid "query/verify package(s) from install transaction" -msgstr "" - -#: lib/poptQV.c:121 -msgid "query the package(s) triggered by the package" -msgstr "" - -#: lib/poptQV.c:123 -msgid "rpm verify mode" -msgstr "" - -#: lib/poptQV.c:126 -msgid "rpm verify mode (legacy)" -msgstr "" - -#: lib/poptQV.c:128 -msgid "query/verify the package(s) which require a dependency" -msgstr "" - -#: lib/poptQV.c:130 -msgid "query/verify the package(s) which provide a dependency" -msgstr "" - -#: lib/poptQV.c:190 -msgid "list all configuration files" -msgstr "" - -#: lib/poptQV.c:192 -msgid "list all documentation files" -msgstr "" - -#: lib/poptQV.c:194 -msgid "dump basic file information" -msgstr "" - -#: lib/poptQV.c:196 -msgid "list files in package" -msgstr "" - -#: lib/poptQV.c:201 -#, c-format -msgid "skip %%ghost files" -msgstr "" - -#: lib/poptQV.c:205 -#, c-format -msgid "skip %%license files" -msgstr "" - -#: lib/poptQV.c:208 -#, c-format -msgid "skip %%readme files" -msgstr "" - -#: lib/poptQV.c:214 -msgid "use the following query format" -msgstr "" - -#: lib/poptQV.c:216 -msgid "substitute i18n sections into spec file" -msgstr "" - -#: lib/poptQV.c:218 -msgid "display the states of the listed files" -msgstr "" - -#: lib/poptQV.c:220 -msgid "display a verbose file listing" -msgstr "" - -#: lib/poptQV.c:240 lib/poptQV.c:282 lib/poptQV.c:316 -msgid "don't verify MD5 digest of files" -msgstr "" - -#: lib/poptQV.c:243 -msgid "don't verify size of files" -msgstr "" - -#: lib/poptQV.c:246 -msgid "don't verify symlink path of files" -msgstr "" - -#: lib/poptQV.c:249 -msgid "don't verify owner of files" -msgstr "" - -#: lib/poptQV.c:252 -msgid "don't verify group of files" -msgstr "" - -#: lib/poptQV.c:255 -msgid "don't verify modification time of files" -msgstr "" - -#: lib/poptQV.c:258 lib/poptQV.c:261 -msgid "don't verify mode of files" -msgstr "" - -#: lib/poptQV.c:264 -msgid "don't verify files in package" -msgstr "" - -#: lib/poptQV.c:266 -msgid "don't verify package dependencies" -msgstr "" - -#: lib/poptQV.c:268 lib/poptQV.c:272 -msgid "don't execute verify script(s)" -msgstr "" - -#: lib/poptQV.c:275 -msgid "don't verify digest(s)" -msgstr "" - -#: lib/poptQV.c:278 -msgid "don't verify signature(s)" -msgstr "" - -#: lib/poptQV.c:286 lib/poptQV.c:320 -msgid "don't verify GPG V3 DSA signature(s)" -msgstr "" - -#: lib/poptQV.c:289 lib/poptQV.c:323 -msgid "don't verify PGP V3 RSA/MD5 signature(s)" -msgstr "" - -#: lib/poptQV.c:304 -msgid "sign a package, preserving other existing signatures" -msgstr "" - -#: lib/poptQV.c:306 -msgid "verify package signature(s)" -msgstr "" - -#: lib/poptQV.c:308 -msgid "import an armored public key" -msgstr "" - -#: lib/poptQV.c:310 -msgid "sign a package, discarding all current signatures" -msgstr "" - -#: lib/poptQV.c:312 -msgid "generate signature" -msgstr "" - -#. @observer@ -#: lib/problems.c:227 -msgid "different" -msgstr "" - -#: lib/problems.c:235 -#, c-format -msgid "package %s is intended for a %s architecture" -msgstr "" - -#: lib/problems.c:240 -#, c-format -msgid "package %s is intended for a %s operating system" -msgstr "" - -#: lib/problems.c:245 -#, c-format -msgid "package %s is already installed" -msgstr "" - -#: lib/problems.c:250 -#, c-format -msgid "path %s in package %s is not relocateable" -msgstr "" - -#: lib/problems.c:255 -#, c-format -msgid "file %s conflicts between attempted installs of %s and %s" -msgstr "" - -#: lib/problems.c:260 -#, c-format -msgid "file %s from install of %s conflicts with file from package %s" -msgstr "" - -#: lib/problems.c:265 -#, c-format -msgid "package %s (which is newer than %s) is already installed" -msgstr "" - -#: lib/problems.c:270 -#, c-format -msgid "installing package %s needs %ld%cb on the %s filesystem" -msgstr "" - -#: lib/problems.c:280 -#, c-format -msgid "installing package %s needs %ld inodes on the %s filesystem" -msgstr "" - -#: lib/problems.c:285 -#, c-format -msgid "package %s pre-transaction syscall(s): %s failed: %s" -msgstr "" - -#: lib/problems.c:289 -#, c-format -msgid "package %s has unsatisfied Requires: %s\n" -msgstr "" - -#: lib/problems.c:293 -#, c-format -msgid "package %s has unsatisfied Conflicts: %s\n" -msgstr "" - -#: lib/problems.c:298 -#, c-format -msgid "unknown error %d encountered while manipulating package %s" -msgstr "" - -#: lib/problems.c:378 -msgid "conflicts with" -msgstr "" - -#: lib/problems.c:378 -msgid "is needed by" +#. This should not be allowed +#. @-modfilesys@ +#: lib/header.c:332 +msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" msgstr "" #. @-modfilesys@ -#: lib/psm.c:247 rpmdb/header.c:383 rpmdb/header_internal.c:161 +#: lib/header.c:369 lib/header_internal.c:139 lib/psm.c:403 #, c-format msgid "Data type %d not supported\n" msgstr "" -#: lib/psm.c:444 +#. @-observertrans -readonlytrans@ +#: lib/header.c:2194 +msgid "missing { after %" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2224 +msgid "missing } after %{" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2238 +msgid "empty tag format" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2252 +msgid "empty tag name" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2269 +msgid "unknown tag" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2296 +msgid "] expected at end of array" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2314 +msgid "unexpected ]" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2318 +msgid "unexpected }" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2384 +msgid "? expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2393 +msgid "{ expected after ? in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2406 lib/header.c:2448 +msgid "} expected in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2416 +msgid ": expected following ? subexpression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2433 +msgid "{ expected after : in expression" +msgstr "" + +#. @-observertrans -readonlytrans@ +#: lib/header.c:2458 +msgid "| expected at end of expression" +msgstr "" + +#: lib/misc.c:236 lib/misc.c:241 lib/misc.c:247 +#, c-format +msgid "error creating temporary file %s\n" +msgstr "" + +#: lib/package.c:173 +msgid "packaging version 1 is not supported by this version of RPM\n" +msgstr "" + +#: lib/package.c:237 +msgid "" +"only packaging with major numbers <= 4 is supported by this version of RPM\n" +msgstr "" + +#: lib/poptI.c:82 +msgid "rollback takes a time/date stamp argument" +msgstr "" + +#: lib/poptI.c:86 +msgid "malformed rollback time/date stamp argument" +msgstr "" + +#: lib/poptI.c:112 lib/poptI.c:166 +msgid "do not execute package scriptlet(s)" +msgstr "" + +#: lib/poptI.c:119 +msgid "use chainsaw dependency tree decimation when ordering" +msgstr "" + +#: lib/poptI.c:122 +msgid "save erased package files by renaming into sub-directory" +msgstr "" + +#: lib/poptI.c:125 +msgid "+" +msgstr "" + +#: lib/poptI.c:130 +msgid "skip files with leading component " +msgstr "" + +#: lib/poptI.c:131 +msgid "" +msgstr "" + +#: lib/poptI.c:137 +msgid "upgrade package(s) if already installed" +msgstr "" + +#: lib/poptI.c:138 lib/poptI.c:154 lib/poptI.c:226 +msgid "+" +msgstr "" + +#: lib/poptI.c:169 +#, c-format +msgid "do not execute %%pre scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:172 +#, c-format +msgid "do not execute %%post scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:175 +#, c-format +msgid "do not execute %%preun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:178 +#, c-format +msgid "do not execute %%postun scriptlet (if any)" +msgstr "" + +#: lib/poptI.c:182 +msgid "do not execute any scriptlet(s) triggered by this package" +msgstr "" + +#: lib/poptI.c:185 +#, c-format +msgid "do not execute any %%triggerprein scriptlet(s)" +msgstr "" + +#: lib/poptI.c:188 +#, c-format +msgid "do not execute any %%triggerin scriptlet(s)" +msgstr "" + +#: lib/poptI.c:191 +#, c-format +msgid "do not execute any %%triggerun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:194 +#, c-format +msgid "do not execute any %%triggerpostun scriptlet(s)" +msgstr "" + +#: lib/poptI.c:207 +msgid "relocate files from path to " +msgstr "" + +#: lib/poptI.c:208 +msgid "=" +msgstr "" + +#: lib/poptI.c:211 +msgid "save erased package files by repackaging" +msgstr "" + +#: lib/poptI.c:219 +msgid "deinstall new, reinstall old, package(s), back to " +msgstr "" + +#: lib/poptI.c:220 +msgid "" +msgstr "" + +#: lib/poptI.c:225 +msgid "upgrade package(s)" +msgstr "" + +#: lib/poptK.c:58 +msgid "generate signature" +msgstr "" + +#: lib/poptQV.c:88 +msgid "query/verify all packages" +msgstr "" + +#: lib/poptQV.c:90 +msgid "query/verify package(s) owning file" +msgstr "" + +#: lib/poptQV.c:92 +msgid "query/verify package(s) with file identifier" +msgstr "" + +#: lib/poptQV.c:94 +msgid "query/verify package(s) in group" +msgstr "" + +#: lib/poptQV.c:96 +msgid "query/verify package(s) with header identifier" +msgstr "" + +#: lib/poptQV.c:98 +msgid "query/verify a package file (i.e. a binary *.rpm file)" +msgstr "" + +#: lib/poptQV.c:100 +msgid "query/verify package(s) with package identifier" +msgstr "" + +#: lib/poptQV.c:102 +msgid "rpm query mode" +msgstr "" + +#: lib/poptQV.c:106 +msgid "display known query tags" +msgstr "" + +#: lib/poptQV.c:108 +msgid "query a spec file" +msgstr "" + +#: lib/poptQV.c:108 +msgid "" +msgstr "" + +#: lib/poptQV.c:110 +msgid "query/verify package(s) from install transaction" +msgstr "" + +#: lib/poptQV.c:112 +msgid "query the package(s) triggered by the package" +msgstr "" + +#: lib/poptQV.c:114 +msgid "rpm verify mode" +msgstr "" + +#: lib/poptQV.c:116 +msgid "rpm verify mode (legacy)" +msgstr "" + +#: lib/poptQV.c:118 +msgid "query/verify the package(s) which require a dependency" +msgstr "" + +#: lib/poptQV.c:120 +msgid "query/verify the package(s) which provide a dependency" +msgstr "" + +#: lib/poptQV.c:171 +msgid "list all configuration files" +msgstr "" + +#: lib/poptQV.c:173 +msgid "list all documentation files" +msgstr "" + +#: lib/poptQV.c:175 +msgid "dump basic file information" +msgstr "" + +#: lib/poptQV.c:177 +msgid "list files in package" +msgstr "" + +#: lib/poptQV.c:182 +#, c-format +msgid "skip %%ghost files" +msgstr "" + +#: lib/poptQV.c:186 +#, c-format +msgid "skip %%license files" +msgstr "" + +#: lib/poptQV.c:189 +#, c-format +msgid "skip %%readme files" +msgstr "" + +#: lib/poptQV.c:195 +msgid "use the following query format" +msgstr "" + +#: lib/poptQV.c:197 +msgid "substitute i18n sections into spec file" +msgstr "" + +#: lib/poptQV.c:199 +msgid "display the states of the listed files" +msgstr "" + +#: lib/poptQV.c:201 +msgid "display a verbose file listing" +msgstr "" + +#: lib/poptQV.c:219 +msgid "don't verify MD5 digest of files" +msgstr "" + +#: lib/poptQV.c:222 +msgid "don't verify size of files" +msgstr "" + +#: lib/poptQV.c:225 +msgid "don't verify symlink path of files" +msgstr "" + +#: lib/poptQV.c:228 +msgid "don't verify owner of files" +msgstr "" + +#: lib/poptQV.c:231 +msgid "don't verify group of files" +msgstr "" + +#: lib/poptQV.c:234 +msgid "don't verify modification time of files" +msgstr "" + +#: lib/poptQV.c:237 lib/poptQV.c:240 +msgid "don't verify mode of files" +msgstr "" + +#: lib/poptQV.c:243 +msgid "don't verify files in package" +msgstr "" + +#: lib/poptQV.c:245 +msgid "don't verify package dependencies" +msgstr "" + +#: lib/poptQV.c:247 lib/poptQV.c:251 +msgid "don't execute %verifyscript (if any)" +msgstr "" + +#: lib/poptQV.c:254 +msgid "don't verify header SHA1 digest" +msgstr "" + +#: lib/problems.c:83 +#, c-format +msgid " is needed by %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:86 +#, c-format +msgid " conflicts with %s-%s-%s\n" +msgstr "" + +#: lib/problems.c:130 +#, c-format +msgid "package %s is for a different architecture" +msgstr "" + +#: lib/problems.c:135 +#, c-format +msgid "package %s is for a different operating system" +msgstr "" + +#: lib/problems.c:140 +#, c-format +msgid "package %s is already installed" +msgstr "" + +#: lib/problems.c:145 +#, c-format +msgid "path %s in package %s is not relocateable" +msgstr "" + +#: lib/problems.c:150 +#, c-format +msgid "file %s conflicts between attempted installs of %s and %s" +msgstr "" + +#: lib/problems.c:155 +#, c-format +msgid "file %s from install of %s conflicts with file from package %s" +msgstr "" + +#: lib/problems.c:160 +#, c-format +msgid "package %s (which is newer than %s) is already installed" +msgstr "" + +#: lib/problems.c:165 +#, c-format +msgid "installing package %s needs %ld%cb on the %s filesystem" +msgstr "" + +#: lib/problems.c:175 +#, c-format +msgid "installing package %s needs %ld inodes on the %s filesystem" +msgstr "" + +#: lib/problems.c:180 +#, c-format +msgid "package %s pre-transaction syscall(s): %s failed: %s" +msgstr "" + +#: lib/problems.c:184 +#, c-format +msgid "package %s has unsatisfied Requires: %s\n" +msgstr "" + +#: lib/problems.c:188 +#, c-format +msgid "package %s has unsatisfied Conflicts: %s\n" +msgstr "" + +#: lib/problems.c:193 +#, c-format +msgid "unknown error %d encountered while manipulating package %s" +msgstr "" + +#: lib/psm.c:600 #, c-format msgid "cannot create %%%s %s\n" msgstr "" -#: lib/psm.c:450 +#: lib/psm.c:606 #, c-format msgid "cannot write to %%%s %s\n" msgstr "" -#: lib/psm.c:491 +#: lib/psm.c:644 msgid "source package expected, binary found\n" msgstr "" -#: lib/psm.c:607 +#: lib/psm.c:750 msgid "source package contains no .spec file\n" msgstr "" -#: lib/psm.c:717 -#, c-format -msgid "%s: running %s scriptlet\n" -msgstr "" - -#: lib/psm.c:883 +#: lib/psm.c:1015 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n" msgstr "" -#: lib/psm.c:890 +#: lib/psm.c:1022 #, c-format msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n" msgstr "" -#: lib/psm.c:1232 +#: lib/psm.c:1358 #, c-format -msgid "%s: %s has %d files, test = %d\n" +msgid "%s: %s-%s-%s has %d files, test = %d\n" msgstr "" -#: lib/psm.c:1351 +#: lib/psm.c:1475 #, c-format -msgid "%s: %s scriptlet failed (%d), skipping %s\n" +msgid "%s: %s scriptlet failed (%d), skipping %s-%s-%s\n" msgstr "" -#: lib/psm.c:1493 +#: lib/psm.c:1617 #, c-format msgid "user %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1502 +#: lib/psm.c:1626 #, c-format msgid "group %s does not exist - using root\n" msgstr "" -#: lib/psm.c:1544 +#: lib/psm.c:1667 #, c-format msgid "unpacking of archive failed%s%s: %s\n" msgstr "" -#: lib/psm.c:1545 +#: lib/psm.c:1668 msgid " on file " msgstr "" -#: lib/psm.c:1733 +#: lib/psm.c:1860 #, c-format msgid "%s failed on file %s: %s\n" msgstr "" -#: lib/psm.c:1736 +#: lib/psm.c:1863 #, c-format msgid "%s failed: %s\n" msgstr "" -#: lib/query.c:124 +#: lib/psm.c:1968 +#, c-format +msgid "%s: running %s script(s) (if any)\n" +msgstr "" + +#: lib/query.c:119 #, c-format msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:221 +#: lib/query.c:216 msgid "(contains no files)" msgstr "" -#: lib/query.c:282 +#: lib/query.c:277 msgid "normal " msgstr "" -#: lib/query.c:285 +#: lib/query.c:280 msgid "replaced " msgstr "" -#: lib/query.c:288 +#: lib/query.c:283 msgid "not installed " msgstr "" -#: lib/query.c:291 +#: lib/query.c:286 msgid "net shared " msgstr "" -#: lib/query.c:294 +#: lib/query.c:289 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:299 +#: lib/query.c:294 msgid "(no state) " msgstr "" -#: lib/query.c:318 lib/query.c:374 +#: lib/query.c:313 lib/query.c:369 msgid "package has neither file owner or id lists\n" msgstr "" -#: lib/query.c:463 +#: lib/query.c:459 #, c-format msgid "can't query %s: %s\n" msgstr "" -#: lib/query.c:617 lib/query.c:655 lib/rpminstall.c:333 lib/rpminstall.c:475 -#: lib/rpminstall.c:845 +#: lib/query.c:614 lib/query.c:648 lib/rpminstall.c:327 lib/rpminstall.c:471 +#: lib/rpminstall.c:858 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:633 +#: lib/query.c:627 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:639 +#: lib/query.c:633 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:665 lib/rpminstall.c:488 +#: lib/query.c:658 lib/rpminstall.c:484 #, c-format msgid "%s: read manifest failed: %s\n" msgstr "" -#: lib/query.c:709 +#: lib/query.c:700 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:730 +#: lib/query.c:722 msgid "no packages\n" msgstr "" -#: lib/query.c:750 +#: lib/query.c:741 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:760 +#: lib/query.c:751 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:774 lib/query.c:796 lib/query.c:814 lib/query.c:845 +#: lib/query.c:765 lib/query.c:787 lib/query.c:808 lib/query.c:842 #, c-format msgid "malformed %s: %s\n" msgstr "" -#: lib/query.c:784 lib/query.c:802 lib/query.c:820 lib/query.c:850 +#: lib/query.c:775 lib/query.c:793 lib/query.c:818 lib/query.c:847 #, c-format msgid "no package matches %s: %s\n" msgstr "" -#: lib/query.c:861 +#: lib/query.c:858 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:872 +#: lib/query.c:869 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:906 +#: lib/query.c:904 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:910 +#: lib/query.c:908 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:937 +#: lib/query.c:934 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:940 +#: lib/query.c:937 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:945 +#: lib/query.c:941 #, c-format msgid "record %u could not be read\n" msgstr "" -#: lib/query.c:956 lib/rpminstall.c:633 +#: lib/query.c:952 lib/rpminstall.c:635 #, c-format msgid "package %s is not installed\n" msgstr "" -#: lib/rpmal.c:674 -msgid "(added files)" -msgstr "" - -#: lib/rpmal.c:771 -msgid "(added provide)" -msgstr "" - -#: lib/rpmchecksig.c:49 +#: lib/rpmchecksig.c:41 #, c-format msgid "%s: open failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:61 +#: lib/rpmchecksig.c:53 msgid "makeTempFile failed\n" msgstr "" -#: lib/rpmchecksig.c:101 +#: lib/rpmchecksig.c:87 #, c-format msgid "%s: Fwrite failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:161 +#: lib/rpmchecksig.c:93 +#, c-format +msgid "%s: Fread failed: %s\n" +msgstr "" + +#: lib/rpmchecksig.c:132 lib/rpmchecksig.c:319 +#, c-format +msgid "%s: readLead failed\n" +msgstr "" + +#: lib/rpmchecksig.c:137 #, c-format msgid "%s: Can't sign v1.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:165 +#: lib/rpmchecksig.c:141 #, c-format msgid "%s: Can't re-sign v2.0 RPM\n" msgstr "" -#: lib/rpmchecksig.c:229 +#: lib/rpmchecksig.c:150 lib/rpmchecksig.c:335 +#, c-format +msgid "%s: rpmReadSignature failed\n" +msgstr "" + +#: lib/rpmchecksig.c:154 lib/rpmchecksig.c:340 +#, c-format +msgid "%s: No signature available\n" +msgstr "" + +#: lib/rpmchecksig.c:242 #, c-format msgid "%s: writeLead failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:235 +#: lib/rpmchecksig.c:248 #, c-format msgid "%s: rpmWriteSignature failed: %s\n" msgstr "" -#: lib/rpmchecksig.c:528 +#: lib/rpmchecksig.c:325 #, c-format msgid "%s: No signature available (v1.0 RPM)\n" msgstr "" -#: lib/rpmchecksig.c:725 +#: lib/rpmchecksig.c:498 msgid "NOT OK" msgstr "" -#: lib/rpmchecksig.c:726 lib/rpmchecksig.c:740 +#: lib/rpmchecksig.c:499 lib/rpmchecksig.c:513 msgid " (MISSING KEYS:" msgstr "" -#: lib/rpmchecksig.c:728 lib/rpmchecksig.c:742 +#: lib/rpmchecksig.c:501 lib/rpmchecksig.c:515 msgid ") " msgstr "" -#: lib/rpmchecksig.c:729 lib/rpmchecksig.c:743 +#: lib/rpmchecksig.c:502 lib/rpmchecksig.c:516 msgid " (UNTRUSTED KEYS:" msgstr "" -#: lib/rpmchecksig.c:731 lib/rpmchecksig.c:745 +#: lib/rpmchecksig.c:504 lib/rpmchecksig.c:518 msgid ")" msgstr "" -#: lib/rpmchecksig.c:739 +#: lib/rpmchecksig.c:512 msgid "OK" msgstr "" -#. XXX legacy epoch-less requires/conflicts compatibility -#: lib/rpmds.c:539 -#, c-format -msgid "" -"the \"B\" dependency needs an epoch (assuming same as \"A\")\n" -"\tA %s\tB %s\n" -msgstr "" - -#: lib/rpmds.c:569 -#, c-format -msgid " %s A %s\tB %s\n" -msgstr "" - -#. @=branchstate@ -#: lib/rpmds.c:593 -#, c-format -msgid "package %s has unsatisfied %s: %s\n" -msgstr "" - -#: lib/rpminstall.c:160 +#: lib/rpminstall.c:153 msgid "Preparing..." msgstr "" -#: lib/rpminstall.c:162 +#: lib/rpminstall.c:155 msgid "Preparing packages for installation..." msgstr "" -#: lib/rpminstall.c:281 +#: lib/rpminstall.c:277 #, c-format msgid "Retrieving %s\n" msgstr "" #. XXX undefined %{name}/%{version}/%{release} here #. XXX %{_tmpdir} does not exist -#: lib/rpminstall.c:293 +#: lib/rpminstall.c:287 #, c-format msgid " ... as %s\n" msgstr "" -#: lib/rpminstall.c:297 +#: lib/rpminstall.c:291 #, c-format msgid "skipping %s - transfer failed - %s\n" msgstr "" -#: lib/rpminstall.c:395 +#: lib/rpminstall.c:373 +#, c-format +msgid "cannot open Packages database in %s\n" +msgstr "" + +#: lib/rpminstall.c:396 #, c-format msgid "package %s is not relocateable\n" msgstr "" -#: lib/rpminstall.c:449 +#: lib/rpminstall.c:445 #, c-format msgid "error reading from file %s\n" msgstr "" -#: lib/rpminstall.c:455 +#: lib/rpminstall.c:451 #, c-format msgid "file %s requires a newer version of RPM\n" msgstr "" -#: lib/rpminstall.c:467 lib/rpminstall.c:701 +#: lib/rpminstall.c:463 lib/rpminstall.c:708 #, c-format msgid "%s cannot be installed\n" msgstr "" -#: lib/rpminstall.c:503 +#: lib/rpminstall.c:499 #, c-format msgid "found %d source and %d binary packages\n" msgstr "" -#: lib/rpminstall.c:521 lib/rpminstall.c:1029 +#: lib/rpminstall.c:515 lib/rpminstall.c:1056 msgid "failed dependencies:\n" msgstr "" -#: lib/rpminstall.c:544 +#: lib/rpminstall.c:536 msgid "installing binary packages\n" msgstr "" -#: lib/rpminstall.c:566 +#: lib/rpminstall.c:557 #, c-format msgid "cannot open file %s: %s\n" msgstr "" -#: lib/rpminstall.c:636 +#: lib/rpminstall.c:622 +#, c-format +msgid "cannot open %s/packages.rpm\n" +msgstr "" + +#: lib/rpminstall.c:638 #, c-format msgid "\"%s\" specifies multiple packages\n" msgstr "" -#: lib/rpminstall.c:660 +#: lib/rpminstall.c:662 msgid "removing these packages would break dependencies:\n" msgstr "" -#: lib/rpminstall.c:687 +#: lib/rpminstall.c:692 #, c-format msgid "cannot open %s: %s\n" msgstr "" -#: lib/rpminstall.c:693 +#: lib/rpminstall.c:698 #, c-format msgid "Installing %s\n" msgstr "" -#: lib/rpminstall.c:1022 +#: lib/rpminstall.c:1049 #, c-format -msgid "rollback %d packages to %s" +msgid "rollback (+%d,-%d) packages to %s" msgstr "" #: lib/rpmlead.c:50 @@ -2499,327 +3227,331 @@ msgstr "" msgid "read failed: %s (%d)\n" msgstr "" -#: lib/rpmrc.c:191 +#: lib/rpmrc.c:192 #, c-format msgid "missing second ':' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:194 +#: lib/rpmrc.c:195 #, c-format msgid "missing architecture name at %s:%d\n" msgstr "" -#: lib/rpmrc.c:348 +#: lib/rpmrc.c:349 #, c-format msgid "Incomplete data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:353 +#: lib/rpmrc.c:354 #, c-format msgid "Too many args in data line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:361 +#: lib/rpmrc.c:362 #, c-format msgid "Bad arch/os number: %s (%s:%d)\n" msgstr "" -#: lib/rpmrc.c:398 +#: lib/rpmrc.c:399 #, c-format msgid "Incomplete default line at %s:%d\n" msgstr "" -#: lib/rpmrc.c:403 +#: lib/rpmrc.c:404 #, c-format msgid "Too many args in default line at %s:%d\n" msgstr "" #. XXX Feof(fd) -#: lib/rpmrc.c:573 +#: lib/rpmrc.c:574 #, c-format msgid "Failed to read %s: %s.\n" msgstr "" -#: lib/rpmrc.c:611 +#: lib/rpmrc.c:612 #, c-format msgid "missing ':' (found 0x%02x) at %s:%d\n" msgstr "" -#: lib/rpmrc.c:628 lib/rpmrc.c:702 +#: lib/rpmrc.c:629 lib/rpmrc.c:703 #, c-format msgid "missing argument for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:645 lib/rpmrc.c:667 +#: lib/rpmrc.c:646 lib/rpmrc.c:668 #, c-format msgid "%s expansion failed at %s:%d \"%s\"\n" msgstr "" -#: lib/rpmrc.c:654 +#: lib/rpmrc.c:655 #, c-format msgid "cannot open %s at %s:%d: %s\n" msgstr "" -#: lib/rpmrc.c:694 +#: lib/rpmrc.c:695 #, c-format msgid "missing architecture for %s at %s:%d\n" msgstr "" -#: lib/rpmrc.c:761 +#: lib/rpmrc.c:762 #, c-format msgid "bad option '%s' at %s:%d\n" msgstr "" -#: lib/rpmrc.c:1386 +#: lib/rpmrc.c:1387 #, c-format msgid "Unknown system: %s\n" msgstr "" -#: lib/rpmrc.c:1387 +#: lib/rpmrc.c:1388 msgid "Please contact rpm-list@redhat.com\n" msgstr "" -#: lib/rpmrc.c:1612 +#: lib/rpmrc.c:1613 #, c-format msgid "Cannot expand %s\n" msgstr "" -#: lib/rpmrc.c:1617 +#: lib/rpmrc.c:1618 #, c-format msgid "Cannot read %s, HOME is too large.\n" msgstr "" -#: lib/rpmrc.c:1634 +#: lib/rpmrc.c:1635 #, c-format msgid "Unable to open %s for reading: %s.\n" msgstr "" -#: lib/signature.c:117 +#: lib/signature.c:128 msgid "file is not regular -- skipping size check\n" msgstr "" -#: lib/signature.c:126 +#: lib/signature.c:145 #, c-format msgid "Expected size: %12d = lead(%d)+sigs(%d)+pad(%d)+data(%d)\n" msgstr "" -#: lib/signature.c:131 +#: lib/signature.c:149 #, c-format msgid " Actual size: %12d\n" msgstr "" -#: lib/signature.c:151 +#: lib/signature.c:169 msgid "No signature\n" msgstr "" -#: lib/signature.c:155 +#: lib/signature.c:173 msgid "Old PGP signature\n" msgstr "" -#: lib/signature.c:168 +#: lib/signature.c:184 msgid "Old (internal-only) signature! How did you get that!?\n" msgstr "" -#: lib/signature.c:224 +#: lib/signature.c:234 #, c-format msgid "Signature: size(%d)+pad(%d)\n" msgstr "" -#: lib/signature.c:299 lib/signature.c:397 lib/signature.c:537 -#: lib/signature.c:569 +#: lib/signature.c:305 lib/signature.c:398 lib/signature.c:647 +#: lib/signature.c:752 lib/signature.c:829 lib/signature.c:862 #, c-format msgid "Could not exec %s: %s\n" msgstr "" -#: lib/signature.c:315 +#: lib/signature.c:321 msgid "pgp failed\n" msgstr "" #. PGP failed to write signature #. Just in case -#: lib/signature.c:322 +#: lib/signature.c:328 msgid "pgp failed to write signature\n" msgstr "" -#: lib/signature.c:327 +#: lib/signature.c:333 #, c-format msgid "PGP sig size: %d\n" msgstr "" -#: lib/signature.c:343 lib/signature.c:442 +#: lib/signature.c:346 lib/signature.c:440 msgid "unable to read the signature\n" msgstr "" -#: lib/signature.c:348 +#: lib/signature.c:351 #, c-format msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:414 +#: lib/signature.c:415 msgid "gpg failed\n" msgstr "" #. GPG failed to write signature #. Just in case -#: lib/signature.c:421 +#: lib/signature.c:422 msgid "gpg failed to write signature\n" msgstr "" -#: lib/signature.c:426 +#: lib/signature.c:427 #, c-format msgid "GPG sig size: %d\n" msgstr "" -#: lib/signature.c:447 +#: lib/signature.c:445 #, c-format msgid "Got %d bytes of GPG sig\n" msgstr "" -#: lib/signature.c:475 +#: lib/signature.c:473 msgid "Generating signature using PGP.\n" msgstr "" -#: lib/signature.c:481 +#: lib/signature.c:479 msgid "Generating signature using GPG.\n" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:574 lib/signature.c:627 +#: lib/signature.c:867 lib/signature.c:920 #, c-format msgid "Invalid %%_signature spec in macro file\n" msgstr "" -#: lib/signature.c:607 +#: lib/signature.c:900 #, c-format msgid "You must set \"%%_gpg_name\" in your macro file\n" msgstr "" -#: lib/signature.c:619 +#: lib/signature.c:912 #, c-format msgid "You must set \"%%_pgp_name\" in your macro file\n" msgstr "" -#: lib/signature.c:663 -msgid "Header+Payload size: " -msgstr "" - -#: lib/signature.c:692 -msgid "MD5 digest: " -msgstr "" - -#: lib/signature.c:732 -msgid "V3 RSA/MD5 signature: " -msgstr "" - -#: lib/signature.c:822 -msgid "V3 DSA signature: " -msgstr "" - -#: lib/signature.c:886 -msgid "Verify signature: BAD PARAMETERS\n" -msgstr "" - -#: lib/signature.c:906 +#: lib/signature.c:955 msgid "Broken MD5 digest: UNSUPPORTED\n" msgstr "" -#: lib/signature.c:910 -#, c-format -msgid "Signature: UNKNOWN (%d)\n" +#: lib/transaction.c:447 +msgid "========== relocations\n" msgstr "" -#: lib/transaction.c:180 +#: lib/transaction.c:451 +#, c-format +msgid "%5d exclude %s\n" +msgstr "" + +#: lib/transaction.c:454 +#, c-format +msgid "%5d relocate %s -> %s\n" +msgstr "" + +#: lib/transaction.c:524 +#, c-format +msgid "excluding multilib path %s%s\n" +msgstr "" + +#: lib/transaction.c:587 +#, c-format +msgid "excluding %s %s\n" +msgstr "" + +#: lib/transaction.c:597 +#, c-format +msgid "relocating %s to %s\n" +msgstr "" + +#: lib/transaction.c:675 +#, c-format +msgid "relocating directory %s to %s\n" +msgstr "" + +#: lib/transaction.c:809 #, c-format msgid "%s skipped due to missingok flag\n" msgstr "" -#. @innercontinue@ -#: lib/transaction.c:990 +#: lib/transaction.c:1403 #, c-format msgid "excluding directory %s\n" msgstr "" -#: lib/transaction.c:1085 -msgid "getting list of mounted filesystems\n" -msgstr "" - -#: lib/verify.c:243 +#: lib/verify.c:241 msgid "package lacks both user name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:264 +#: lib/verify.c:262 msgid "package lacks both group name and id lists (this should never happen)\n" msgstr "" -#: lib/verify.c:408 +#: lib/verify.c:392 #, c-format msgid "missing %s" msgstr "" -#: lib/verify.c:505 +#: lib/verify.c:487 #, c-format -msgid "Unsatisifed dependencies for %s: " +msgid "Unsatisfied dependencies for %s-%s-%s: " msgstr "" -#: lib/verify.c:543 +#: lib/verify.c:527 #, c-format msgid "%s-%s-%s: immutable header region digest check failed\n" msgstr "" -#: rpmdb/db1.c:98 rpmdb/db3.c:100 +#: rpmdb/db1.c:101 rpmdb/db3.c:100 #, c-format msgid "db%d error(%d) from %s: %s\n" msgstr "" -#: rpmdb/db1.c:101 rpmdb/db3.c:103 +#: rpmdb/db1.c:104 rpmdb/db3.c:103 #, c-format msgid "db%d error(%d): %s\n" msgstr "" -#: rpmdb/db1.c:168 +#: rpmdb/db1.c:171 #, c-format msgid "" "Broken package chain at offset %d(0x%08x), attempting to reconnect ...\n" msgstr "" -#: rpmdb/db1.c:180 +#: rpmdb/db1.c:183 #, c-format msgid "Reconnecting broken chain at offset %d(0x%08x).\n" msgstr "" #. @=branchstate@ -#: rpmdb/db1.c:506 +#: rpmdb/db1.c:509 #, c-format msgid "closed db file %s\n" msgstr "" -#: rpmdb/db1.c:509 +#: rpmdb/db1.c:512 #, c-format msgid "removed db file %s\n" msgstr "" -#: rpmdb/db1.c:544 +#: rpmdb/db1.c:547 #, c-format msgid "bad db file %s\n" msgstr "" -#: rpmdb/db1.c:549 +#: rpmdb/db1.c:552 #, c-format msgid "opening db file %s mode 0x%x\n" msgstr "" #. XXX check errno validity -#: rpmdb/db1.c:572 +#: rpmdb/db1.c:575 #, c-format msgid "cannot get %s lock on database\n" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "exclusive" msgstr "" -#: rpmdb/db1.c:573 rpmdb/db3.c:1228 +#: rpmdb/db1.c:576 rpmdb/db3.c:1228 msgid "shared" msgstr "" @@ -2893,344 +3625,259 @@ msgid "" "if \"rpm --rebuilddb\" fails to correct the problem.\n" msgstr "" -#. This should not be allowed -#. @-modfilesys@ -#: rpmdb/header.c:346 -msgid "dataLength() RPM_STRING_TYPE count must be 1.\n" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2208 -#, c-format -msgid "missing { after %" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2238 -msgid "missing } after %{" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2252 -msgid "empty tag format" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2266 -msgid "empty tag name" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2283 -msgid "unknown tag" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2310 -msgid "] expected at end of array" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2328 -msgid "unexpected ]" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2332 -msgid "unexpected }" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2398 -msgid "? expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2407 -msgid "{ expected after ? in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2420 rpmdb/header.c:2462 -msgid "} expected in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2430 -msgid ": expected following ? subexpression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2447 -msgid "{ expected after : in expression" -msgstr "" - -#. @-observertrans -readonlytrans@ -#: rpmdb/header.c:2472 -msgid "| expected at end of expression" -msgstr "" - -#: rpmdb/header.c:2695 -msgid "(unknown type)" -msgstr "" - -#: rpmdb/poptDB.c:19 +#: rpmdb/poptDB.c:22 msgid "initialize database" msgstr "" -#: rpmdb/poptDB.c:21 +#: rpmdb/poptDB.c:24 msgid "rebuild database inverted lists from installed package headers" msgstr "" -#: rpmdb/poptDB.c:24 -msgid "verify database files" -msgstr "" - -#: rpmdb/poptDB.c:26 +#: rpmdb/poptDB.c:29 msgid "generate headers compatible with (legacy) rpm[23] packaging" msgstr "" #. @-modfilesys@ -#: rpmdb/rpmdb.c:129 +#: rpmdb/rpmdb.c:161 #, c-format msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n" msgstr "" -#: rpmdb/rpmdb.c:387 +#: rpmdb/rpmdb.c:428 #, c-format msgid "cannot open %s index using db%d - %s (%d)\n" msgstr "" -#: rpmdb/rpmdb.c:409 +#: rpmdb/rpmdb.c:450 #, c-format msgid "cannot open %s index\n" msgstr "" -#: rpmdb/rpmdb.c:501 +#: rpmdb/rpmdb.c:542 #, c-format msgid "error(%d) getting \"%s\" records from %s index\n" msgstr "" -#: rpmdb/rpmdb.c:632 +#: rpmdb/rpmdb.c:673 #, c-format msgid "error(%d) storing record %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:642 +#: rpmdb/rpmdb.c:683 #, c-format msgid "error(%d) removing record %s from %s\n" msgstr "" -#: rpmdb/rpmdb.c:906 +#: rpmdb/rpmdb.c:935 msgid "no dbpath has been set\n" msgstr "" -#: rpmdb/rpmdb.c:1054 +#: rpmdb/rpmdb.c:1079 msgid "" "old format database is present; use --rebuilddb to generate a new format " "database\n" msgstr "" #. error -#: rpmdb/rpmdb.c:1319 +#: rpmdb/rpmdb.c:1324 #, c-format msgid "error(%d) counting packages\n" msgstr "" -#: rpmdb/rpmdb.c:2097 rpmdb/rpmdb.c:3372 +#: rpmdb/rpmdb.c:2110 rpmdb/rpmdb.c:3477 #, c-format msgid "record number %u in database is bad -- skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2150 +#: rpmdb/rpmdb.c:2163 #, c-format msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n" msgstr "" -#: rpmdb/rpmdb.c:2420 +#: rpmdb/rpmdb.c:2442 #, c-format msgid "%s: cannot read header at 0x%x\n" msgstr "" -#: rpmdb/rpmdb.c:2540 +#: rpmdb/rpmdb.c:2605 #, c-format msgid "removing \"%s\" from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2544 +#: rpmdb/rpmdb.c:2609 #, c-format msgid "removing %d entries from %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2714 +#: rpmdb/rpmdb.c:2779 #, c-format msgid "error(%d) allocating new package instance\n" msgstr "" -#: rpmdb/rpmdb.c:2873 +#: rpmdb/rpmdb.c:2978 #, c-format msgid "adding \"%s\" to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:2877 +#: rpmdb/rpmdb.c:2982 #, c-format msgid "adding %d entries to %s index.\n" msgstr "" -#: rpmdb/rpmdb.c:3258 +#: rpmdb/rpmdb.c:3363 #, c-format msgid "removing %s after successful db3 rebuild.\n" msgstr "" -#: rpmdb/rpmdb.c:3291 +#: rpmdb/rpmdb.c:3396 msgid "no dbpath has been set" msgstr "" -#: rpmdb/rpmdb.c:3318 +#: rpmdb/rpmdb.c:3423 #, c-format msgid "rebuilding database %s into %s\n" msgstr "" -#: rpmdb/rpmdb.c:3322 +#: rpmdb/rpmdb.c:3427 #, c-format msgid "temporary database %s already exists\n" msgstr "" -#: rpmdb/rpmdb.c:3328 +#: rpmdb/rpmdb.c:3433 #, c-format msgid "creating directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3330 +#: rpmdb/rpmdb.c:3435 #, c-format msgid "creating directory %s: %s\n" msgstr "" -#: rpmdb/rpmdb.c:3337 +#: rpmdb/rpmdb.c:3442 #, c-format msgid "opening old database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3348 +#: rpmdb/rpmdb.c:3453 #, c-format msgid "opening new database with dbapi %d\n" msgstr "" -#: rpmdb/rpmdb.c:3412 +#: rpmdb/rpmdb.c:3517 #, c-format msgid "cannot add record originally at %u\n" msgstr "" -#: rpmdb/rpmdb.c:3430 +#: rpmdb/rpmdb.c:3535 msgid "failed to rebuild database: original database remains in place\n" msgstr "" -#: rpmdb/rpmdb.c:3438 +#: rpmdb/rpmdb.c:3543 msgid "failed to replace old database with new database!\n" msgstr "" -#: rpmdb/rpmdb.c:3440 +#: rpmdb/rpmdb.c:3545 #, c-format msgid "replace files in %s with files from %s to recover" msgstr "" -#: rpmdb/rpmdb.c:3450 +#: rpmdb/rpmdb.c:3555 #, c-format msgid "removing directory %s\n" msgstr "" -#: rpmdb/rpmdb.c:3452 +#: rpmdb/rpmdb.c:3557 #, c-format msgid "failed to remove directory %s: %s\n" msgstr "" -#: rpmio/macro.c:226 +#: rpmio/macro.c:228 #, c-format msgid "======================== active %d empty %d\n" msgstr "" #. XXX just in case -#: rpmio/macro.c:353 +#: rpmio/macro.c:355 #, c-format msgid "%3d>%*s(empty)" msgstr "" -#: rpmio/macro.c:396 +#: rpmio/macro.c:398 #, c-format msgid "%3d<%*s(empty)\n" msgstr "" -#: rpmio/macro.c:631 +#: rpmio/macro.c:633 #, c-format msgid "Macro %%%s has unterminated body\n" msgstr "" -#: rpmio/macro.c:660 +#: rpmio/macro.c:662 #, c-format msgid "Macro %%%s has illegal name (%%define)\n" msgstr "" -#: rpmio/macro.c:666 +#: rpmio/macro.c:668 #, c-format msgid "Macro %%%s has unterminated opts\n" msgstr "" -#: rpmio/macro.c:671 +#: rpmio/macro.c:673 #, c-format msgid "Macro %%%s has empty body\n" msgstr "" -#: rpmio/macro.c:677 +#: rpmio/macro.c:679 #, c-format msgid "Macro %%%s failed to expand\n" msgstr "" -#: rpmio/macro.c:714 +#: rpmio/macro.c:716 #, c-format msgid "Macro %%%s has illegal name (%%undefine)\n" msgstr "" -#: rpmio/macro.c:826 +#: rpmio/macro.c:828 #, c-format msgid "Macro %%%s (%s) was not used below level %d\n" msgstr "" -#: rpmio/macro.c:946 +#: rpmio/macro.c:948 #, c-format msgid "Unknown option %c in %s(%s)\n" msgstr "" -#: rpmio/macro.c:1147 +#: rpmio/macro.c:1149 #, c-format msgid "Recursion depth(%d) greater than max(%d)\n" msgstr "" -#: rpmio/macro.c:1216 rpmio/macro.c:1233 +#: rpmio/macro.c:1218 rpmio/macro.c:1235 #, c-format msgid "Unterminated %c: %s\n" msgstr "" -#: rpmio/macro.c:1274 +#: rpmio/macro.c:1276 #, c-format msgid "A %% is followed by an unparseable macro\n" msgstr "" -#: rpmio/macro.c:1403 +#: rpmio/macro.c:1405 #, c-format msgid "Macro %%%.*s not found, skipping\n" msgstr "" -#: rpmio/macro.c:1479 +#: rpmio/macro.c:1481 msgid "Target buffer overflow\n" msgstr "" #. XXX Fstrerror -#: rpmio/macro.c:1678 rpmio/macro.c:1684 +#: rpmio/macro.c:1680 rpmio/macro.c:1686 #, c-format msgid "File %s: %s\n" msgstr "" -#: rpmio/macro.c:1687 +#: rpmio/macro.c:1689 #, c-format msgid "File %s is smaller than %u bytes\n" msgstr "" diff --git a/popt/po/pt.po b/popt/po/pt.po index de630131d..48660fbcb 100644 --- a/popt/po/pt.po +++ b/popt/po/pt.po @@ -1,26 +1,25 @@ msgid "" msgstr "" -"Project-Id-Version: popt 1.6.3\n" -"POT-Creation-Date: 2002-03-13 12:58-0500\n" -"PO-Revision-Date: 2001-01-21 19:31+00:00\n" +"Project-Id-Version: popt\n" +"POT-Creation-Date: 2002-05-06 15:34-0400\n" +"PO-Revision-Date: 2002-02-13 18:32+0000\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-latin1\n" -"Content-Transfer-Encoding: none\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" -#: popthelp.c:53 +#: popthelp.c:57 msgid "Show this help message" msgstr "Mostrar esta mensagem de ajuda" -#: popthelp.c:54 +#: popthelp.c:58 msgid "Display brief usage message" msgstr "Mostrar uma mensagem de utilizaçăo sucinta" -#: popthelp.c:57 -#, fuzzy +#: popthelp.c:61 msgid "Display option defaults in message" -msgstr "Mostrar uma mensagem de utilizaçăo sucinta" +msgstr "Mostrar valor por omissăo das opçőes na mensagem" #~ msgid "unknown errno" #~ msgstr "errno desconhecido" @@ -37,6 +36,9 @@ msgstr "Mostrar uma mensagem de utiliza #~ msgid "mutually exclusive logical operations requested" #~ msgstr "foram pedidas operaçőes lógicas mutuamente exclusivas" +#~ msgid "opt->arg should not be NULL" +#~ msgstr "opt->arg năo deve ser NULL" + #~ msgid "aliases nested too deeply" #~ msgstr "'aliases' demasiado aninhados" @@ -49,6 +51,9 @@ msgstr "Mostrar uma mensagem de utiliza #~ msgid "number too large or too small" #~ msgstr "número demasiado grando ou pequeno" +#~ msgid "memory allocation failed" +#~ msgstr "alocaçăo de memória falhou" + #~ msgid "unknown error" #~ msgstr "erro desconhecido" diff --git a/python/Makefile.am b/python/Makefile.am index 53902ce8c..c0e8f8645 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -15,7 +15,7 @@ INCLUDES = -I. \ noinst_HEADERS = hash.h header-py.h \ rpmal-py.h rpmds-py.h rpmdb-py.h rpmfd-py.h rpmfi-py.h rpmmi-py.h \ - rpmte-py.h rpmts-py.h \ + rpmrc-py.h rpmte-py.h rpmts-py.h \ upgrade.h mylibs= \ @@ -38,7 +38,7 @@ poptmodule_so_LDFLAGS = $(mylibs) $(LIBS) -shared -Wl,-soname,poptmodule.so noinst_LTLIBRARIES = librpmmodule.la librpmmodule_la_SOURCES = rpmmodule.c hash.c upgrade.c header-py.c \ rpmal-py.c rpmds-py.c rpmdb-py.c rpmfd-py.c rpmfi-py.c rpmmi-py.c \ - rpmte-py.c rpmts-py.c + rpmrc-py.c rpmte-py.c rpmts-py.c rpmmodule.so$(EXEEXT): $(librpmmodule_la_OBJECTS) $(CC) -o $@ $(librpmmodule_la_OBJECTS) $(rpmmodule_so_LDFLAGS) diff --git a/python/Makefile.in b/python/Makefile.in index 7fe3f66e5..fb0de83a7 100644 --- a/python/Makefile.in +++ b/python/Makefile.in @@ -210,7 +210,7 @@ INCLUDES = -I. \ noinst_HEADERS = hash.h header-py.h \ rpmal-py.h rpmds-py.h rpmdb-py.h rpmfd-py.h rpmfi-py.h rpmmi-py.h \ - rpmte-py.h rpmts-py.h \ + rpmrc-py.h rpmte-py.h rpmts-py.h \ upgrade.h @@ -235,7 +235,7 @@ poptmodule_so_LDFLAGS = $(mylibs) $(LIBS) -shared -Wl,-soname,poptmodule.so noinst_LTLIBRARIES = librpmmodule.la librpmmodule_la_SOURCES = rpmmodule.c hash.c upgrade.c header-py.c \ rpmal-py.c rpmds-py.c rpmdb-py.c rpmfd-py.c rpmfi-py.c rpmmi-py.c \ - rpmte-py.c rpmts-py.c + rpmrc-py.c rpmte-py.c rpmts-py.c subdir = python mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs @@ -247,7 +247,7 @@ librpmmodule_la_LDFLAGS = librpmmodule_la_LIBADD = am_librpmmodule_la_OBJECTS = rpmmodule.lo hash.lo upgrade.lo \ header-py.lo rpmal-py.lo rpmds-py.lo rpmdb-py.lo rpmfd-py.lo \ - rpmfi-py.lo rpmmi-py.lo rpmte-py.lo rpmts-py.lo + rpmfi-py.lo rpmmi-py.lo rpmrc-py.lo rpmte-py.lo rpmts-py.lo librpmmodule_la_OBJECTS = $(am_librpmmodule_la_OBJECTS) python_PROGRAMS = rpmmodule.so$(EXEEXT) poptmodule.so$(EXEEXT) PROGRAMS = $(python_PROGRAMS) @@ -273,8 +273,8 @@ am__depfiles_maybe = depfiles @AMDEP_TRUE@ ./$(DEPDIR)/rpmdb-py.Plo ./$(DEPDIR)/rpmds-py.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/rpmfd-py.Plo ./$(DEPDIR)/rpmfi-py.Plo \ @AMDEP_TRUE@ ./$(DEPDIR)/rpmmi-py.Plo ./$(DEPDIR)/rpmmodule.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/rpmte-py.Plo ./$(DEPDIR)/rpmts-py.Plo \ -@AMDEP_TRUE@ ./$(DEPDIR)/upgrade.Plo +@AMDEP_TRUE@ ./$(DEPDIR)/rpmrc-py.Plo ./$(DEPDIR)/rpmte-py.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/rpmts-py.Plo ./$(DEPDIR)/upgrade.Plo COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ @@ -348,6 +348,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpmfi-py.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpmmi-py.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpmmodule.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpmrc-py.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpmte-py.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rpmts-py.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upgrade.Plo@am__quote@ diff --git a/python/rpmmi-py.c b/python/rpmmi-py.c index f1d01cd0c..5782bf6c2 100644 --- a/python/rpmmi-py.c +++ b/python/rpmmi-py.c @@ -130,9 +130,13 @@ rpmmi_Pattern(rpmmiObject * s, PyObject * args) /** \ingroup python */ static struct PyMethodDef rpmmi_methods[] = { +#if Py_TPFLAGS_HAVE_ITER + {"iter", (PyCFunction) rpmmi_Iter, METH_VARARGS, + NULL}, {"next", (PyCFunction) rpmmi_Next, METH_VARARGS, "mi.next() -> hdr\n\ - Retrieve next header that matches.\n" }, +#endif {"pattern", (PyCFunction) rpmmi_Pattern, METH_VARARGS, "mi.pattern(TagN, mire_type, pattern)\n\ - Set a secondary match pattern on tags from retrieved header.\n" }, diff --git a/python/rpmmodule.c b/python/rpmmodule.c index 10a8e2c73..4c23fb6bc 100644 --- a/python/rpmmodule.c +++ b/python/rpmmodule.c @@ -21,6 +21,7 @@ #include "rpmfd-py.h" #include "rpmfi-py.h" #include "rpmmi-py.h" +#include "rpmrc-py.h" #include "rpmte-py.h" #include "rpmts-py.h" @@ -36,36 +37,6 @@ */ /*@{*/ -/** - */ -static PyObject * doAddMacro(PyObject * self, PyObject * args) -{ - char * name, * val; - - if (!PyArg_ParseTuple(args, "ss", &name, &val)) - return NULL; - - addMacro(NULL, name, NULL, val, RMIL_DEFAULT); - - Py_INCREF(Py_None); - return Py_None; -} - -/** - */ -static PyObject * doDelMacro(PyObject * self, PyObject * args) -{ - char * name; - - if (!PyArg_ParseTuple(args, "s", &name)) - return NULL; - - delMacro(NULL, name); - - Py_INCREF(Py_None); - return Py_None; -} - /** */ static PyObject * archScore(PyObject * self, PyObject * args) @@ -348,10 +319,14 @@ static PyMethodDef rpmModuleMethods[] = { { "TransactionSet", (PyCFunction) rpmts_Create, METH_VARARGS, "rpm.TransactionSet([rootDir, [db]]) -> ts\n\ - Create a transaction set.\n" }, - { "addMacro", (PyCFunction) doAddMacro, METH_VARARGS, + + { "newrc", (PyCFunction) rpmrc_Create, METH_VARARGS|METH_KEYWORDS, NULL }, - { "delMacro", (PyCFunction) doDelMacro, METH_VARARGS, + { "addMacro", (PyCFunction) rpmrc_AddMacro, METH_VARARGS, NULL }, + { "delMacro", (PyCFunction) rpmrc_DelMacro, METH_VARARGS, + NULL }, + { "archscore", (PyCFunction) archScore, METH_VARARGS, NULL }, { "findUpgradeSet", (PyCFunction) findUpgradeSet, METH_VARARGS, @@ -392,6 +367,11 @@ static PyMethodDef rpmModuleMethods[] = { { NULL } } ; +/** + */ +static char rpm__doc__[] = +""; + void initrpm(void); /* XXX eliminate gcc warning */ /** */ @@ -403,7 +383,21 @@ void initrpm(void) struct headerSprintfExtension_s * ext; PyObject * m; - m = Py_InitModule("rpm", rpmModuleMethods); + if (PyType_Ready(&hdr_Type) < 0) return; + if (PyType_Ready(&rpmal_Type) < 0) return; + if (PyType_Ready(&rpmdb_Type) < 0) return; + if (PyType_Ready(&rpmds_Type) < 0) return; + if (PyType_Ready(&rpmfd_Type) < 0) return; + if (PyType_Ready(&rpmfi_Type) < 0) return; + if (PyType_Ready(&rpmmi_Type) < 0) return; + + rpmrc_Type.tp_base = &PyDict_Type; + if (PyType_Ready(&rpmrc_Type) < 0) return; + + if (PyType_Ready(&rpmte_Type) < 0) return; + if (PyType_Ready(&rpmts_Type) < 0) return; + + m = Py_InitModule3("rpm", rpmModuleMethods, rpm__doc__); if (m == NULL) return; @@ -421,39 +415,33 @@ void initrpm(void) PyDict_SetItemString(d, "error", pyrpmError); #endif - rpmal_Type.ob_type = &PyType_Type; - Py_INCREF(&rpmal_Type); - PyModule_AddObject(m, "al", (PyObject *) &rpmal_Type); - - rpmdb_Type.ob_type = &PyType_Type; - Py_INCREF(&rpmdb_Type); - PyModule_AddObject(m, "db", (PyObject *) &rpmdb_Type); - - rpmds_Type.ob_type = &PyType_Type; - Py_INCREF(&rpmds_Type); - PyModule_AddObject(m, "ds", (PyObject *) &rpmds_Type); - - rpmfd_Type.ob_type = &PyType_Type; - Py_INCREF(&rpmfd_Type); - PyModule_AddObject(m, "fd", (PyObject *) &rpmfd_Type); - - rpmfi_Type.ob_type = &PyType_Type; - Py_INCREF(&rpmfi_Type); - PyModule_AddObject(m, "fi", (PyObject *) &rpmfi_Type); - - hdr_Type.ob_type = &PyType_Type; Py_INCREF(&hdr_Type); PyModule_AddObject(m, "hdr", (PyObject *) &hdr_Type); - rpmmi_Type.ob_type = &PyType_Type; + Py_INCREF(&rpmal_Type); + PyModule_AddObject(m, "al", (PyObject *) &rpmal_Type); + + Py_INCREF(&rpmdb_Type); + PyModule_AddObject(m, "db", (PyObject *) &rpmdb_Type); + + Py_INCREF(&rpmds_Type); + PyModule_AddObject(m, "ds", (PyObject *) &rpmds_Type); + + Py_INCREF(&rpmfd_Type); + PyModule_AddObject(m, "fd", (PyObject *) &rpmfd_Type); + + Py_INCREF(&rpmfi_Type); + PyModule_AddObject(m, "fi", (PyObject *) &rpmfi_Type); + Py_INCREF(&rpmmi_Type); PyModule_AddObject(m, "mi", (PyObject *) &rpmmi_Type); - rpmte_Type.ob_type = &PyType_Type; + Py_INCREF(&rpmrc_Type); + PyModule_AddObject(m, "rc", (PyObject *) &rpmrc_Type); + Py_INCREF(&rpmte_Type); PyModule_AddObject(m, "te", (PyObject *) &rpmte_Type); - rpmts_Type.ob_type = &PyType_Type; Py_INCREF(&rpmts_Type); PyModule_AddObject(m, "ts", (PyObject *) &rpmts_Type); diff --git a/python/rpmrc-py.c b/python/rpmrc-py.c new file mode 100644 index 000000000..bea2b006a --- /dev/null +++ b/python/rpmrc-py.c @@ -0,0 +1,426 @@ +/** \ingroup python + * \file python/rpmrc-py.c + */ + +#include "system.h" + +#include "Python.h" +#include "structmember.h" +extern PyTypeObject PyDictIter_Type; + +#include +#include "rpmps.h" + +#include "header-py.h" +#include "rpmal-py.h" +#include "rpmdb-py.h" +#include "rpmds-py.h" +#include "rpmfd-py.h" +#include "rpmfi-py.h" +#include "rpmmi-py.h" +#include "rpmrc-py.h" +#include "rpmte-py.h" +#include "rpmts-py.h" + +#include "debug.h" + +static int _rc_debug = 0; + +/** \ingroup python + * \class rpm.rc + * \brief A python rpm.rc object encapsulates rpmlib configuration. + */ + +/** \ingroup python + * \name Class: rpm.rc + */ +/*@{*/ + +/** + */ +static const char * lbl(void * s) +{ + PyObject * o = s; + + if (o == NULL) return "null"; + + if (o->ob_type == &PyType_Type) return o->ob_type->tp_name; + + if (o->ob_type == &PyClass_Type) return "Class"; + if (o->ob_type == &PyComplex_Type) return "Complex"; + if (o->ob_type == &PyDict_Type) return "Dict"; + if (o->ob_type == &PyDictIter_Type) return "DictIter"; + if (o->ob_type == &PyFile_Type) return "File"; + if (o->ob_type == &PyFloat_Type) return "Float"; + if (o->ob_type == &PyFunction_Type) return "Function"; + if (o->ob_type == &PyInt_Type) return "Int"; + if (o->ob_type == &PyList_Type) return "List"; + if (o->ob_type == &PyLong_Type) return "Long"; + if (o->ob_type == &PyMethod_Type) return "Method"; + if (o->ob_type == &PyModule_Type) return "Module"; + if (o->ob_type == &PyString_Type) return "String"; + if (o->ob_type == &PyTuple_Type) return "Tuple"; + if (o->ob_type == &PyType_Type) return "Type"; + if (o->ob_type == &PyUnicode_Type) return "Unicode"; + + if (o->ob_type == &hdr_Type) return "hdr"; + if (o->ob_type == &rpmal_Type) return "rpmal"; + if (o->ob_type == &rpmdb_Type) return "rpmdb"; + if (o->ob_type == &rpmds_Type) return "rpmds"; + if (o->ob_type == &rpmfd_Type) return "rpmfd"; + if (o->ob_type == &rpmfi_Type) return "rpmfi"; + if (o->ob_type == &rpmmi_Type) return "rpmmi"; + if (o->ob_type == &rpmrc_Type) return "rpmrc"; + if (o->ob_type == &rpmte_Type) return "rpmte"; + if (o->ob_type == &rpmts_Type) return "rpmts"; + + return "Unknown"; +} + +/** + */ +PyObject * rpmrc_AddMacro(PyObject * self, PyObject * args) +{ + char * name, * val; + + if (!PyArg_ParseTuple(args, "ss:AddMacro", &name, &val)) + return NULL; + + addMacro(NULL, name, NULL, val, -1); + + Py_INCREF(Py_None); + return Py_None; +} + +/** + */ +PyObject * rpmrc_DelMacro(PyObject * self, PyObject * args) +{ + char * name; + + if (!PyArg_ParseTuple(args, "s:DelMacro", &name)) + return NULL; + + delMacro(NULL, name); + + Py_INCREF(Py_None); + return Py_None; +} + +/** + */ +static PyObject * +rpmrc_getstate(rpmrcObject *s, PyObject *args) +{ + if (!PyArg_ParseTuple(args, ":getstate")) + return NULL; + return PyInt_FromLong(s->state); +} + +/** + */ +static PyObject * +rpmrc_setstate(rpmrcObject *s, PyObject *args) +{ + int state; + + if (!PyArg_ParseTuple(args, "i:setstate", &state)) + return NULL; + s->state = state; + Py_INCREF(Py_None); + return Py_None; +} + +/** + */ +static void rpmrc_dealloc(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_dealloc(%p[%s])\n", s, lbl(s)); + PyDict_Type.tp_dealloc(s); +} + +/** + */ +static int rpmrc_print(PyObject * s, FILE *fp, int flags) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_print(%p[%s],%p,%x)\n", s, lbl(s), fp, flags); + return PyDict_Type.tp_print(s, fp, flags); +} + +/** + */ +static int rpmrc_compare(PyObject * a, PyObject * b) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_compare(%p[%s],%p[%s])\n", a, lbl(a), b, lbl(b)); + return PyDict_Type.tp_compare(a, b); +} + +/** + */ +static PyObject * rpmrc_repr(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_repr(%p[%s])\n", s, lbl(s)); + return PyDict_Type.tp_repr(s); +} + +/** + */ +static long rpmrc_hash(PyObject * s) +{ + /* XXX dict objects are unhashable */ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_hash(%p[%s])\n", s, lbl(s)); + return PyDict_Type.tp_hash(s); +} + +/** + */ +static int +rpmrc_length(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_length(%p[%s])\n", s, lbl(s)); + return PyDict_Type.tp_as_mapping->mp_length(s); +} + +/** + */ +static PyObject * +rpmrc_subscript(PyObject * s, PyObject * key) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_subscript(%p[%s], %p[%s])\n", s, lbl(s), key, lbl(key)); + return PyDict_Type.tp_as_mapping->mp_subscript(s, key); +} + +/** + */ +static int +rpmrc_ass_subscript(PyObject * s, PyObject * key, PyObject * value) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_ass_subscript(%p[%s], %p[%s], %p[%s])\n", s, lbl(s), key, lbl(key), value, lbl(value)); + return PyDict_Type.tp_as_mapping->mp_ass_subscript(s, key, value); +} + +static PyMappingMethods rpmrc_as_mapping = { + rpmrc_length, /* mp_length */ + rpmrc_subscript, /* mp_subscript */ + rpmrc_ass_subscript, /* mp_ass_subscript */ +}; + +/** + */ +static PyObject * rpmrc_getattro (PyObject *s, PyObject *name) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_getattro(%p[%s], \"%s\")\n", s, lbl(s), PyString_AS_STRING(name)); + return PyObject_GenericGetAttr(s, name); +} + +/** + */ +static int rpmrc_setattro (PyObject *s, PyObject *name, PyObject * value) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_setattro(%p[%s], \"%s \", \"%s\")\n", s, lbl(s), PyString_AS_STRING(name), PyString_AS_STRING(value)); + return PyDict_Type.tp_setattro(s, name, value); +} + +/** + */ +static char rpmrc_doc[] = +""; + +/** + */ +static int rpmrc_traverse(PyObject * s, visitproc visit, void *arg) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_traverse(%p[%s],%p,%p)\n", s, lbl(s), visit, arg); + return PyDict_Type.tp_traverse(s, visit, arg); +} + +/** + */ +static int rpmrc_clear(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_clear(%p[%s])\n", s, lbl(s)); + return PyDict_Type.tp_clear(s); +} + +/** + */ +static PyObject * rpmrc_richcompare(PyObject * v, PyObject * w, int op) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_richcompare(%p[%s],%p[%s],%x)\n", v, lbl(v), w, lbl(w), op); + return PyDict_Type.tp_richcompare(v, w, op); +} + +/** + */ +static PyObject * rpmrc_iter(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_iter(%p[%s])\n", s, lbl(s)); + if (s->ob_type == &PyDictIter_Type) + return PyDictIter_Type.tp_iter(s); + return PyDict_Type.tp_iter(s); +} + +/** + */ +static PyObject * rpmrc_iternext(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_iternext(%p[%s])\n", s, lbl(s)); + if (s->ob_type == &PyDictIter_Type) + return PyDictIter_Type.tp_iternext(s); + return NULL; +} + +/** + */ +static PyObject * rpmrc_next(PyObject * s, PyObject *args) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_next(%p[%s],%p)\n", s, lbl(s), args); + if (s->ob_type == &PyDictIter_Type) + return PyDictIter_Type.tp_methods[0].ml_meth(s, args); + return NULL; +} + +static PyMemberDef rpmrc_members[] = { + {"state", T_INT, offsetof(rpmrcObject, state), READONLY, + "an int variable for demonstration purposes"}, + {0} +}; + +/** \ingroup python + */ +static int rpmrc_init(PyObject * s, PyObject *args, PyObject *kwds) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_init(%p[%s],%p,%p)\n", s, lbl(s), args, kwds); + if (PyDict_Type.tp_init(s, args, kwds) < 0) + return -1; + ((rpmrcObject *)s)->state = 0; + return 0; +} + +/** \ingroup python + */ +static void rpmrc_free(PyObject * s) +{ +if (_rc_debug) +fprintf(stderr, "*** rpmrc_free(%p[%s])\n", s, lbl(s)); + _PyObject_GC_Del(s); +} + +/** \ingroup python + */ +static PyObject * rpmrc_alloc(PyTypeObject * subtype, int nitems) +{ + PyObject * ns = PyType_GenericAlloc(subtype, nitems); + +if (_rc_debug) +fprintf(stderr, "*** rpmrc_alloc(%p[%s},%d) ret %p[%s]\n", subtype, lbl(subtype), nitems, ns, lbl(ns)); + return (PyObject *) ns; +} + +/** \ingroup python + */ +static PyObject * rpmrc_new(PyTypeObject * subtype, PyObject *args, PyObject *kwds) +{ + PyObject * ns; + + /* Derive an initialized dictionary of the appropriate size. */ + ns = PyDict_Type.tp_new(&rpmrc_Type, args, kwds); + + /* Perform additional initialization. */ + if (rpmrc_init(ns, args, kwds) < 0) { + rpmrc_free(ns); + return NULL; + } + +if (_rc_debug) +fprintf(stderr, "*** rpmrc_new(%p[%s],%p,%p) ret %p[%s]\n", subtype, lbl(subtype), args, kwds, ns, lbl(ns)); + return ns; +} + +/** + */ +static struct PyMethodDef rpmrc_methods[] = { + { "addMacro", (PyCFunction) rpmrc_AddMacro, METH_VARARGS, + NULL }, + { "delMacro", (PyCFunction) rpmrc_DelMacro, METH_VARARGS, + NULL }, + { "getstate", (PyCFunction) rpmrc_getstate, METH_VARARGS, + "getstate() -> state"}, + { "setstate", (PyCFunction) rpmrc_setstate, METH_VARARGS, + "setstate(state)"}, + { "next", (PyCFunction) rpmrc_next, METH_VARARGS, + "next() -- get the next value, or raise StopIteration"}, + {NULL, NULL} /* sentinel */ +}; + +/** \ingroup python + */ +PyTypeObject rpmrc_Type = { + PyObject_HEAD_INIT(&PyType_Type) + 0, /* ob_size */ + "rpm.rc", /* tp_name */ + sizeof(rpmrcObject), /* tp_size */ + 0, /* tp_itemsize */ + (destructor) rpmrc_dealloc, /* tp_dealloc */ + rpmrc_print, /* tp_print */ + 0, /* tp_getattr */ + 0, /* tp_setattr */ + rpmrc_compare, /* tp_compare */ + rpmrc_repr, /* tp_repr */ + 0, /* tp_as_number */ + 0, /* tp_as_sequence */ + &rpmrc_as_mapping, /* tp_as_mapping */ + rpmrc_hash, /* tp_hash */ + 0, /* tp_call */ + 0, /* tp_str */ + (getattrofunc) rpmrc_getattro, /* tp_getattro */ + (setattrofunc) rpmrc_setattro, /* tp_setattro */ + 0, /* tp_as_buffer */ + Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC | Py_TPFLAGS_BASETYPE, /* tp_flags */ + rpmrc_doc, /* tp_doc */ +#if Py_TPFLAGS_HAVE_ITER + rpmrc_traverse, /* tp_traverse */ + rpmrc_clear, /* tp_clear */ + rpmrc_richcompare, /* tp_richcompare */ + 0, /* tp_weaklistoffset */ + rpmrc_iter, /* tp_iter */ + rpmrc_iternext, /* tp_iternext */ + rpmrc_methods, /* tp_methods */ + rpmrc_members, /* tp_members */ + 0, /* tp_getset */ + &PyDict_Type, /* tp_base */ + 0, /* tp_dict */ + 0, /* tp_descr_get */ + 0, /* tp_descr_set */ + 0, /* tp_dictoffset */ + rpmrc_init, /* tp_init */ + rpmrc_alloc, /* tp_alloc */ + rpmrc_new, /* tp_new */ + rpmrc_free, /* tp_free */ + 0, /* tp_is_gc */ +#endif +}; + +PyObject * rpmrc_Create(PyObject * self, PyObject *args, PyObject *kwds) +{ + return rpmrc_new(&rpmrc_Type, args, kwds); +} + +/*@}*/ diff --git a/python/rpmrc-py.h b/python/rpmrc-py.h new file mode 100644 index 000000000..649a52eda --- /dev/null +++ b/python/rpmrc-py.h @@ -0,0 +1,26 @@ +#ifndef H_RPMRC_PY +#define H_RPMRC_PY + +/** \ingroup python + * \file python/rpmrc-py.h + */ + +/** \ingroup python + */ +typedef struct rpmrcObject_s rpmrcObject; + +/** \ingroup python + */ +struct rpmrcObject_s { + PyDictObject dict; + int state; +} ; + +extern PyTypeObject rpmrc_Type; + +PyObject * rpmrc_AddMacro(PyObject * self, PyObject * args); +PyObject * rpmrc_DelMacro(PyObject * self, PyObject * args); + +PyObject * rpmrc_Create(PyObject * self, PyObject * args, PyObject * kwds); + +#endif diff --git a/rpm.spec.in b/rpm.spec.in index 486279f1b..37e5cf844 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -17,7 +17,7 @@ Name: rpm %define version @VERSION@ Version: %{version} %{expand: %%define rpm_version %{version}} -Release: 0.19 +Release: 0.20 Group: System Environment/Base Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz Copyright: GPL @@ -515,17 +515,23 @@ fi %{__prefix}/include/popt.h %changelog +* Sat Jun 1 2002 Jeff Johnson 4.1-0.20 +- fix: use getgrnam, not getpwnam, to convert gid -> group. +- fix: avoid sign extension, use only 16 bits, when verifying rdev. +- python: separate {add,del}Macro methods, prepare for macro dictionary. +- i18n: copy current production PO files to top-of-stack. + * Tue May 28 2002 Jeff Johnson 4.1-0.19 -- add rpmal/rpmte/rpmfd methods to bindings. -- drop cpanflute and cpanflute2, will be in Chip's CPAN package now. -- eliminate legacy db methods, add ts.dbMatch method. +- python: add rpmal/rpmte/rpmfd methods to bindings. +- perl: drop cpanflute and cpanflute2, will be in Chip's CPAN package. +- python: eliminate legacy db methods, add ts.dbMatch method. * Sun May 26 2002 Jeff Johnson 4.1-0.17 - fix: un-resurrect "()(64bit)" markings using objdump on i386. * Fri May 24 2002 Jeff Johnson 4.1-0.16 -- add rpmds/rpmfi/rpmts methods to bindings. -- re-enable rpm-python sub-package. +- python: add rpmds/rpmfi/rpmts methods. +- python: re-enable rpm-python sub-package. - fix: resurrect "()(64bit)" markings using objdump. * Sun May 19 2002 Jeff Johnson 4.1-0.15