From f84fd1900d2c478ad645b9d8b12557bc4e7825ac Mon Sep 17 00:00:00 2001 From: jbj Date: Wed, 27 Dec 2000 21:19:53 +0000 Subject: [PATCH] - use malloc'ed buffer for large queries. CVS patchset: 4377 CVS date: 2000/12/27 21:19:53 --- CHANGES | 1 + lib/query.c | 41 +++++++++++++++++-------- lib/signature.c | 2 -- po/cs.po | 73 ++++++++++++++++++++++---------------------- po/da.po | 70 ++++++++++++++++++++----------------------- po/de.po | 75 +++++++++++++++++++++++----------------------- po/es.po | 70 ++++++++++++++++++++----------------------- po/fi.po | 75 +++++++++++++++++++++++----------------------- po/fr.po | 70 ++++++++++++++++++++----------------------- po/gl.po | 70 ++++++++++++++++++++----------------------- po/hu.po | 70 ++++++++++++++++++++----------------------- po/id.po | 70 ++++++++++++++++++++----------------------- po/is.po | 70 ++++++++++++++++++++----------------------- po/it.po | 70 ++++++++++++++++++++----------------------- po/ja.po | 75 +++++++++++++++++++++++----------------------- po/ko.po | 70 ++++++++++++++++++++----------------------- po/no.po | 70 ++++++++++++++++++++----------------------- po/pl.po | 73 ++++++++++++++++++++++---------------------- po/pt.po | 70 ++++++++++++++++++++----------------------- po/pt_BR.po | 70 ++++++++++++++++++++----------------------- po/ro.po | 70 ++++++++++++++++++++----------------------- po/rpm.pot | 70 ++++++++++++++++++++----------------------- po/ru.po | 73 ++++++++++++++++++++++---------------------- po/sk.po | 73 ++++++++++++++++++++++---------------------- po/sl.po | 75 +++++++++++++++++++++++----------------------- po/sr.po | 75 +++++++++++++++++++++++----------------------- po/sv.po | 73 ++++++++++++++++++++++---------------------- po/tr.po | 75 +++++++++++++++++++++++----------------------- po/uk.po | 70 ++++++++++++++++++++----------------------- po/wa.po | 70 ++++++++++++++++++++----------------------- po/zh.po | 70 ++++++++++++++++++++----------------------- po/zh_CN.GB2312.po | 70 ++++++++++++++++++++----------------------- rpm.spec.in | 3 ++ 33 files changed, 1028 insertions(+), 1094 deletions(-) diff --git a/CHANGES b/CHANGES index f946956a7..32fe4502f 100644 --- a/CHANGES +++ b/CHANGES @@ -78,6 +78,7 @@ - fix: removed headers from db need a headerCopy(). - send query/verify output through rpmlog(). - resurrect rpmErrorSetCallback() and rpmErrorString(). + - use malloc'ed buffer for large queries. 3.0.6 -> 4.0 - use DIRNAMES/BASENAMES/DIRINDICES not FILENAMES in packages and db. diff --git a/lib/query.c b/lib/query.c index 742625a02..9efff587a 100644 --- a/lib/query.c +++ b/lib/query.c @@ -141,19 +141,15 @@ static void printFileInfo(char * te, const char * name, if (perms) free(perms); } -static inline char * queryHeader(char * te, Header h, const char * qfmt) +static inline const char * queryHeader(Header h, const char * qfmt) { const char * errstr; const char * str; str = headerSprintf(h, qfmt, rpmTagTable, rpmHeaderFormats, &errstr); - if (str == NULL) { + if (str == NULL) rpmError(RPMERR_QFMT, _("incorrect format: %s\n"), errstr); - return te; - } - te = stpcpy(te, str); - te += strlen(te); - return te; + return str; } static int countLinks(int_16 * fileRdevList, int_32 * fileInodeList, int nfiles, @@ -176,7 +172,6 @@ static int countLinks(int_16 * fileRdevList, int_32 * fileInodeList, int nfiles, int showQueryPackage(QVA_t *qva, /*@unused@*/rpmdb rpmdb, Header h) { - char buf[BUFSIZ]; char * t, * te; int queryFlags = qva->qva_flags; @@ -199,9 +194,10 @@ int showQueryPackage(QVA_t *qva, /*@unused@*/rpmdb rpmdb, Header h) uint_16 * fileRdevList; int_32 * dirIndexes; int rc = 0; /* XXX FIXME: need real return code */ + int nonewline = 0; int i; - te = t = buf; + te = t = xmalloc(BUFSIZ); *te = '\0'; if (!queryFormat && !queryFlags) { @@ -213,8 +209,21 @@ int showQueryPackage(QVA_t *qva, /*@unused@*/rpmdb rpmdb, Header h) goto exit; } - if (queryFormat) - te = queryHeader(te, h, queryFormat); + if (queryFormat) { + const char * str = queryHeader(h, queryFormat); + nonewline = 1; + if (str) { + size_t tb = (te - t); + size_t sb = strlen(str); + + if (sb >= (BUFSIZ - tb)) { + t = xrealloc(t, BUFSIZ+sb); + te = t + tb; + } + te = stpcpy(te, str); + free((void *)str); + } + } if (!(queryFlags & QUERY_FOR_LIST)) goto exit; @@ -358,7 +367,7 @@ int showQueryPackage(QVA_t *qva, /*@unused@*/rpmdb rpmdb, Header h) *te++ = '\n'; *te = '\0'; rpmMessage(RPMMESS_NORMAL, "%s", t); - te = t = buf; + te = t; *t = '\0'; } } @@ -366,8 +375,14 @@ int showQueryPackage(QVA_t *qva, /*@unused@*/rpmdb rpmdb, Header h) rc = 0; exit: - if (te > t) + if (te > t) { + if (!nonewline) { + *te++ = '\n'; + *te = '\0'; + } rpmMessage(RPMMESS_NORMAL, "%s", t); + } + if (t) free(t); if (dirNames) free(dirNames); if (baseNames) free(baseNames); if (fileLinktoList) free(fileLinktoList); diff --git a/lib/signature.c b/lib/signature.c index e5cf12b0c..67bcd4e67 100644 --- a/lib/signature.c +++ b/lib/signature.c @@ -558,7 +558,6 @@ verifyPGPSignature(const char *datafile, const void * sig, int count, char *resu break; } - fprintf(stderr, _("exec failed!\n")); rpmError(RPMERR_EXEC, _("Could not run pgp. Use --nopgp to skip PGP checks.")); _exit(RPMERR_EXEC); @@ -631,7 +630,6 @@ verifyGPGSignature(const char *datafile, const void * sig, int count, char *resu "--batch", "--no-verbose", "--verify", sigfile, datafile, NULL); - fprintf(stderr, _("exec failed!\n")); rpmError(RPMERR_EXEC, _("Could not run gpg. Use --nogpg to skip GPG checks.")); _exit(RPMERR_EXEC); diff --git a/po/cs.po b/po/cs.po index 39cb20288..98b234b8d 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-08-23 22:24+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -3055,119 +3055,119 @@ msgstr "nezn msgid "incorrect format: %s\n" msgstr "chyba ve formátu: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(neobsahuje ¾ádné soubory)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "normální " -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "nahrazen " -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "neinstalován " -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "sdílen v síti " -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(neznámý %3d) " -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(chybí stav) " -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "balíèek nemá vlastníka souboru ani seznamy id" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "nemohu provést dotaz %s: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "otevøení %s selhalo: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "dotaz na %s se nezdaøil\n" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "¾ádné balíèky\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾ádné balíèky\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "¾ádný balíèek neaktivuje %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "¾ádný balíèek nevy¾aduje %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "¾ádný balíèek neposkytuje %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "soubor %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "soubor %s nevlastní ¾ádný balíèek\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "neplatné èíslo balíèku: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "záznam balíèku èíslo: %u\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "záznam %d nelze pøeèíst\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "balíèek %s není nainstalován\n" @@ -3756,7 +3756,7 @@ msgstr "nemohu msgid "Got %d bytes of PGP sig\n" msgstr "Pøeèteno %d bajtù PGP podpisu\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "Nemohu spustit gpg" @@ -3788,33 +3788,29 @@ msgstr "Generuji PGP podpis.\n" msgid "Generating signature using GPG.\n" msgstr "Generuji GPG podpis.\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Nemohu spustit pgp. Vynechte kontroly PGP pomocí --nopgp." -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "spu¹tìní selhalo!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Nelze spustit gpg. Vynechte kontroly GPG pomocí --nogpg." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Nemohu spustit pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "Neplatná %%_signature v makro souboru" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru" @@ -4101,6 +4097,9 @@ msgstr "nemohu otev msgid "failed to create %s: %s\n" msgstr "nemohu vytvoøit %s: %s\n" +#~ msgid "exec failed!\n" +#~ msgstr "spu¹tìní selhalo!\n" + #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "hodnova %%instchangelog v makro souboru má být èíslo, ale není" diff --git a/po/da.po b/po/da.po index 2014f46a9..f52377f76 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-03-07 05:17+01:00\n" "Last-Translator: K. Christiansen \n" "Language-Team: Danish/Dansk \n" @@ -3013,119 +3013,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "ingen pakker\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "ugyldig pakkenummer: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3687,7 +3687,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3719,33 +3719,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/de.po b/po/de.po index 32f019653..507675b2f 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -3304,123 +3304,123 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "Fehler beim Format %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(beinhaltet keine Dateien)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "Paket %s ist nicht installiert\n" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(unbekannter Typ)" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "Fehler: kann %s nicht öffnen\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "öffnen von %s fehlgeschlagen: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s scheint kein RPM-Paket zu sein\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:586 +#: lib/query.c:601 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "Anfrage von %s fehlgeschlagen\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "Anfrage an alle Pakete" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "Gruppe %s beinhaltet kein einziges Paket\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "kein Paket triggert %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "kein Paket verlangt %s\n" # oder besser: ... listet %s auf? -ke- -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "kein Paket stellt %s bereit\n" # , c-format -#: lib/query.c:682 +#: lib/query.c:697 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "die Datei »%s« gehört zu keinem Paket\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "ungültige Paket-Nummer: %s\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "Eintrag %d konnte nicht gelesen werden\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "Paket %s ist nicht installiert\n" @@ -4001,7 +4001,7 @@ msgstr "nicht m msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 #, fuzzy msgid "Couldn't exec gpg" msgstr "Konnte pgp nicht durchführen" @@ -4038,36 +4038,31 @@ msgstr "PGP-Signatur generieren" msgid "Generating signature using GPG.\n" msgstr "PGP-Signatur generieren" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." -#: lib/signature.c:561 lib/signature.c:634 -#, fuzzy -msgid "exec failed!\n" -msgstr "%s: Öffnen fehlgeschlagen\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Konnte pgp nicht aufrufen. Überspring die PGP-Checks mit --nopgp." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Konnte pgp nicht durchführen" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" -#: lib/signature.c:773 +#: lib/signature.c:771 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein" @@ -4367,6 +4362,10 @@ msgstr " msgid "failed to create %s: %s\n" msgstr "anlegen von %s fehlgeschlagen\n" +#, fuzzy +#~ msgid "exec failed!\n" +#~ msgstr "%s: Öffnen fehlgeschlagen\n" + #, fuzzy #~ msgid " --rcfile " #~ msgstr " -b " diff --git a/po/es.po b/po/es.po index a98fd6acc..0ffbc4a70 100644 --- a/po/es.po +++ b/po/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/fi.po b/po/fi.po index fca6757cb..9ec22a8ba 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=\n" @@ -3217,121 +3217,121 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "virhe formaatissa: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(ei tiedostoja)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "paketti %s ei ole asennettu\n" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(tuntematon tyyppi)" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "virhe: en voi avata %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s:n avaus ei onnistunut: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ei vaikuta RPM-paketilta\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:586 +#: lib/query.c:601 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s:n kysely ei onnistunut\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "kysele kaikki paketit" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "ryhmässä %s ei ole paketteja\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "mikään paketti ei laukaise %s:a\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "mikään pakettie ei tarvitse %s:a\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "mikään paketti ei tarjoa %s:a\n" -#: lib/query.c:682 +#: lib/query.c:697 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "en voinut avata %s: %s" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "tiedostoa %s ei omista mikään paketti\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "virheellinen paketin numero: %s\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "tietuetta %d ei voitu lukea\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "paketti %s ei ole asennettu\n" @@ -3901,7 +3901,7 @@ msgstr "en voinut lukea allekirjoitusta" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 #, fuzzy msgid "Couldn't exec gpg" msgstr "En voinut ajaa pgp:tä" @@ -3938,36 +3938,31 @@ msgstr "generoi PGP-allekirjoitus" msgid "Generating signature using GPG.\n" msgstr "generoi PGP-allekirjoitus" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" -#: lib/signature.c:561 lib/signature.c:634 -#, fuzzy -msgid "exec failed!\n" -msgstr "%s: avaus ei onnistunut\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "En voinut ajaa pgp:tä" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" -#: lib/signature.c:773 +#: lib/signature.c:771 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa" @@ -4263,6 +4258,10 @@ msgstr "en voinut avata %s: %s" msgid "failed to create %s: %s\n" msgstr "%s:n luonti epäonnistui\n" +#, fuzzy +#~ msgid "exec failed!\n" +#~ msgstr "%s: avaus ei onnistunut\n" + #, fuzzy #~ msgid " --rcfile " #~ msgstr " -b " diff --git a/po/fr.po b/po/fr.po index 4f6d8b82d..434383994 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,5 +1,5 @@ msgid "" -msgstr "POT-Creation-Date: 2000-12-26 14:00-0500\n" +msgstr "POT-Creation-Date: 2000-12-27 16:13-0500\n" #: build.c:26 #, fuzzy, c-format @@ -3221,121 +3221,121 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "impossible d'ouvrir: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "La construction a échoué.\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "aucun package n'a été spécifié pour l'installation" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "aucun package n'a été spécifié pour l'installation" @@ -3901,7 +3901,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3937,33 +3937,29 @@ msgstr " --sign - gen msgid "Generating signature using GPG.\n" msgstr " --sign - genère une signature PGP" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/gl.po b/po/gl.po index a98fd6acc..0ffbc4a70 100644 --- a/po/gl.po +++ b/po/gl.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/hu.po b/po/hu.po index a98fd6acc..0ffbc4a70 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/id.po b/po/id.po index a98fd6acc..0ffbc4a70 100644 --- a/po/id.po +++ b/po/id.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/is.po b/po/is.po index c04266539..574874f77 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-08-02 13:00+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -3009,119 +3009,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3683,7 +3683,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3715,33 +3715,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/it.po b/po/it.po index a98fd6acc..0ffbc4a70 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/ja.po b/po/ja.po index d1c899bba..d8d489b78 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -88,7 +88,7 @@ msgstr " # build root [BuildRoot] # net share [¥Í¥Ã¥È¶¦Í­] # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë] -# $Id: ja.po,v 1.132 2000/12/26 19:07:02 jbj Exp $ +# $Id: ja.po,v 1.133 2000/12/27 21:19:56 jbj Exp $ #: rpm.c:185 rpmqv.c:269 #, c-format msgid "rpm: %s\n" @@ -3177,120 +3177,120 @@ msgstr " msgid "incorrect format: %s\n" msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "Ä̾ï" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "¥Í¥Ã¥È¶¦Í­" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(̤ÃΤΠ%3d)" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" -#: lib/query.c:586 +#: lib/query.c:601 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "¥Õ¥¡¥¤¥ë %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n" @@ -3858,7 +3858,7 @@ msgstr " msgid "Got %d bytes of PGP sig\n" msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 #, fuzzy msgid "Couldn't exec gpg" msgstr "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" @@ -3895,39 +3895,35 @@ msgstr "PGP msgid "Generating signature using GPG.\n" msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n" "PGP ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nopgp ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "¼Â¹Ô¼ºÇÔ!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n" "GPG ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nogpg ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Ç̵¸ú¤Ê %%_signature ¥¹¥Ú¥Ã¥¯" -#: lib/signature.c:761 +#: lib/signature.c:759 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" -#: lib/signature.c:773 +#: lib/signature.c:771 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó" @@ -4227,6 +4223,9 @@ msgstr "%s msgid "failed to create %s: %s\n" msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" +#~ msgid "exec failed!\n" +#~ msgstr "¼Â¹Ô¼ºÇÔ!\n" + #, fuzzy #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "" diff --git a/po/ko.po b/po/ko.po index a98fd6acc..0ffbc4a70 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/no.po b/po/no.po index 032a320b7..a39baa7f2 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-08-17 20:22+02:00\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -3029,119 +3029,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "feil under lesing fra fil %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3704,7 +3704,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3736,33 +3736,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/pl.po b/po/pl.po index 7012274c0..48c96fc95 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -3159,120 +3159,120 @@ msgstr "wyst msgid "incorrect format: %s\n" msgstr "b³±d w formacie: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(nie zawiera plików)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "normalny " -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "zast±piony " -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "niezainstalowany" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "udostêpniony w sieci" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(nieznany %3d)" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(brak statusu)" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "nie mo¿na odwi±zaæ %s: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "otwarcie %s nie powiod³o siê\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s nie wygl±da na pakiet RPM\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "odpytywanie %s nie powiod³o siê\n" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "znaleziono %d pakietów\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s nie zawiera ¿adnych pakietów\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "¿aden pakiet nie zahacza %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "¿aden pakiet nie wymaga %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "¿aden pakiet nie udostêpnia %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "plik %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "plik %s nie nale¿y do ¿adnego pakietu\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "b³êdny numer pakietu: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "numer rekordu pakietu: %d\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "nie mo¿na odczytaæ rekordu %d\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "pakiet %s nie jest zainstalowany\n" @@ -3839,7 +3839,7 @@ msgstr "nie mo msgid "Got %d bytes of PGP sig\n" msgstr "Mam %d bajtów sygnatury PGP\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "Nie mo¿na uruchomiæ gpg" @@ -3873,33 +3873,29 @@ msgstr "Generowanie sygnatury: %d\n" msgid "Generating signature using GPG.\n" msgstr "Generowanie sygnatury: %d\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Nie mo¿na uruchomiæ pgp. U¿yj --nopgp aby pomin±æ sprawdz. PGP" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "uruchomienie nie powiod³o siê!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Nie mo¿na uruchomiæ gpg. U¿yj --nopgp aby pomin±æ sprawdz. GPG" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Nie mo¿na uruchomiæ pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "B³êdny wpis %%_signature w pliku makra" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra" @@ -4187,6 +4183,9 @@ msgstr "nie mo msgid "failed to create %s: %s\n" msgstr "utworzenie %s nie powiod³o siê\n" +#~ msgid "exec failed!\n" +#~ msgstr "uruchomienie nie powiod³o siê!\n" + #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "" #~ "warto¶æ %%instchangelog w pliku makra powinna byæ liczb±, a nie jest" diff --git a/po/pt.po b/po/pt.po index 70f9f1351..d6960182c 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-08-01 21:11+01:00\n" "Last-Translator: Pedro Morais \n" "Language-Team: pt \n" @@ -2977,119 +2977,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3655,7 +3655,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3687,33 +3687,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po index 8ceecc19d..24bee1941 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -2,7 +2,7 @@ # Revised by Arnaldo Carvalho de Melo , 1998. # msgid "" -msgstr "POT-Creation-Date: 2000-12-26 14:00-0500\n" +msgstr "POT-Creation-Date: 2000-12-27 16:13-0500\n" # , c-format #: build.c:26 @@ -3295,122 +3295,122 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "não foi passado pacote para instalação" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" # , c-format -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "Não consegui abrir: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "Construção falhou.\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "pesquise todos os pacotes" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, fuzzy, c-format msgid "no package triggers %s\n" msgstr "não foram passados pacotes para assinatura" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, fuzzy, c-format msgid "package %s is not installed\n" msgstr "não foi passado pacote para instalação" @@ -4016,7 +4016,7 @@ msgstr "gere assinatura PGP" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -4052,33 +4052,29 @@ msgstr "gere assinatura PGP" msgid "Generating signature using GPG.\n" msgstr "gere assinatura PGP" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/ro.po b/po/ro.po index 421071dcb..3de2d4aae 100644 --- a/po/ro.po +++ b/po/ro.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 1999-04-10 12:00+EST\n" "Last-Translator: Cristian Gafton \n" "Language-Team: Romanian \n" @@ -2975,119 +2975,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3649,7 +3649,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3681,33 +3681,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index 561b41d8a..c7b4c39d9 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/ru.po b/po/ru.po index a66ac9f18..3cdabdb16 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-08-08 01:20+0300\n" "Last-Translator: Eugene Kanter \n" "Language-Team: Black Cat Linux Team \n" @@ -3071,119 +3071,119 @@ msgstr " msgid "incorrect format: %s\n" msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "ÎÏÒÍÁÌØÎÙÊ " -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "ÚÁÍÅÎÅÎÎÙÊ " -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎ " -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "ÓÅÔÅ×ÏÊ " -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(ÎÅÉÚ×. %3d) " -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(ÓÏÓÔ. ÎÅÔ) " -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "ÚÁÐÒÏÓÙ Ë SRPM × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "ÚÁÐÒÏÓ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ×ÏÚÍÏÖÎÏ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "ÎÅÔ ÐÁËÅÔÏ×\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "ÎÉ ÏÄÉÎ ÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "ÆÁÊÌ %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "ÎÏÍÅÒ ÚÁÐÉÓÉ ÐÁËÅÔÁ: %u\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n" @@ -3775,7 +3775,7 @@ msgstr " msgid "Got %d bytes of PGP sig\n" msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg" @@ -3807,37 +3807,33 @@ msgstr " msgid "Generating signature using GPG.\n" msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ GPG.\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" "î×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp. éÓÐÏÌØÚÕÊÔÅ --nopgp ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ PGP " "ÐÏÄÐÉÓÅÊ." -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "ÏÛÉÂËÁ ÚÁÐÕÓËÁ!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ gpg. éÓÐÏÌØÚÕÊÔÅ --nogpg ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ GPG " "ÐÏÄÐÉÓÅÊ." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÕÓÔÉÔØ pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ" @@ -4121,6 +4117,9 @@ msgstr " msgid "failed to create %s: %s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n" +#~ msgid "exec failed!\n" +#~ msgstr "ÏÛÉÂËÁ ÚÁÐÕÓËÁ!\n" + #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "ÚÎÁÞÅÎÉÅ %%instchangelog × ÍÁËÒÏÆÁÊÌÅ ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ" diff --git a/po/sk.po b/po/sk.po index ae40dc61d..9472dd3e3 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -3167,120 +3167,120 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "chyba formátu: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(neobsahuje ¾iadne súbory)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "normálny " -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "nahradený " -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "nein¹talovaný " -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "zdieµaný " -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(neznámy %d) " -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(¾iadny stav) " -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "zmazanie %s zlyhalo: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "otvorenie %s zlyhalo\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s zrejme nie je RPM balík\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "otázka na %s zlyhala\n" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "nájdených %d balíkov\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s neobsahuje ¾iadne balíky\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "¾iadny z balíkov nespú¹»a %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "¾iadny z balíkov nevy¾aduje %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "¾iadny z balíkov neposkytuje %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "súbor %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "chybné èíslo balíku: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "po¾aduje sa záznam èíslo %d\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "záznam %d nie je mo¾né preèíta»\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "balík %s nie je nain¹talovaný\n" @@ -3847,7 +3847,7 @@ msgstr "nie je mo msgid "Got %d bytes of PGP sig\n" msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "Nie je mo¾né spusti» gpg" @@ -3881,33 +3881,29 @@ msgstr "Vytv msgid "Generating signature using GPG.\n" msgstr "Vytvára sa PGP podpis: %d\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Nie je mo¾né spusti» pgp. Pou¾ite --nopgp pre vynechanie PGP kontrol." -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "vykonanie zlyhalo!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Nie je mo¾né spusti» gpg. Pou¾ite --nogpg pre vynechanie GPG kontrol." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Nie je mo¾né spusti» pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "Chybná ¹pecifikácia podpisu %%_signature v makro-súbore" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore" @@ -4196,6 +4192,9 @@ msgstr "nepodarilo sa otvori msgid "failed to create %s: %s\n" msgstr "nepodarilo sa vytvori» %s\n" +#~ msgid "exec failed!\n" +#~ msgstr "vykonanie zlyhalo!\n" + #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "" #~ "hodnota %%instchangelog v makro-súbore by mala by» èíselná, ale nie je" diff --git a/po/sl.po b/po/sl.po index e1268b2ce..f3c5fcce2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,12 +1,12 @@ # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr. # Copyright (C) 2000 Free Software Foundation, Inc. # Primo¾ Peterlin , 2000. -# $Id: sl.po,v 1.117 2000/12/26 19:07:20 jbj Exp $ +# $Id: sl.po,v 1.118 2000/12/27 21:20:03 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -3154,120 +3154,120 @@ msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s" msgid "incorrect format: %s\n" msgstr "napaka v obliki: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(ne vsebuje datotek)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "normalno " -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "nadome¹èeno " -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "ni name¹èeno " -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "omre¾ni " -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(neznano %3d) " -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(brez stanja) " -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "ni mo¾no poizvedeti o %s: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "odpiranje %s je bilo neuspe¹no: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s najverjetneje ni paket RPM\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "poizvedba po %s je bila neuspe¹na\n" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "poizvedba po datoteki spec. %s je bila neuspe¹na, razèlemba ni mo¾na\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "ni paketov\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "skupina %s ne vsebuje nobenega paketa\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "noben paket ne pro¾i %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "noben paket ne potrebuje %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "noben paket ne nudi %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "datoteka %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ni del nobenega paketa\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "neveljavna ¹tevilka paketa: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "¹tevilka zapisa paketa: %d\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "zapisa %d ni mo¾no prebrati\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "paket %s ni name¹èen\n" @@ -3859,7 +3859,7 @@ msgstr "branje podpisa je bilo neuspe msgid "Got %d bytes of PGP sig\n" msgstr "Prebrano %d bajtov podpisa PGP\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "Ni mo¾no pognati gpg" @@ -3891,33 +3891,29 @@ msgstr "Ustvarjanje podpisa s PGP.\n" msgid "Generating signature using GPG.\n" msgstr "Ustvarjanje podpisa z GnuPG.\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Ni mo¾no pognati pgp. Preverjanja PGP lahko preskoèite z --nopgp" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "zagon je bil neuspe¹en!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Ni mo¾no pognati gpg. Preverjanja GnuPG lahko preskoèite z --nogpg" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Ni mo¾no pognati pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "Neveljavno doloèilo %%_signature v makrodatoteki" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\"" @@ -4203,6 +4199,9 @@ msgstr "neuspe msgid "failed to create %s: %s\n" msgstr "neuspe¹no ustvarjanje %s: %s\n" +#~ msgid "exec failed!\n" +#~ msgstr "zagon je bil neuspe¹en!\n" + #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "" #~ "vrednost %%instchangelog v makrodatoteki bi morala biti ¹tevilo, pa ni" diff --git a/po/sr.po b/po/sr.po index 20fec9407..04c6c47ea 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "Content-Type: text/plain; charset=\n" "Date: 1998-05-02 21:41:47-0400\n" "From: Erik Troan \n" @@ -3172,121 +3172,121 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "gre¹ka u formatu: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(nema datoteka)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "paket %s nije instaliran\n" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(nepoznat tip)" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "gre¹ka: ne mogu da otvorim %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "neuspelo otvaranje %s: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s ne lièi na RPM paket\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:586 +#: lib/query.c:601 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "upit nad %s neuspeo\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "upit nad svim paketima" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupa %s ne sadr¾i nijedan paket\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "nijedan paket ne aktivira %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "nijedan paket ne zahteva %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "nijedan paket ne obezbeðuje %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "datoteka %s ne pripada nijednom paketu\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "pogre¹an broj paketa: %s\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "ne mogu da proèitam slog %d\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "paket %s nije instaliran\n" @@ -3856,7 +3856,7 @@ msgstr "ne mogu da pro msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 #, fuzzy msgid "Couldn't exec gpg" msgstr "Ne mogu da izvr¹im PGP" @@ -3893,36 +3893,31 @@ msgstr "napravi PGP potpis" msgid "Generating signature using GPG.\n" msgstr "napravi PGP potpis" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru." -#: lib/signature.c:561 lib/signature.c:634 -#, fuzzy -msgid "exec failed!\n" -msgstr "%s: Neuspelo otvaranje\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Ne mogu da izvr¹im PGP" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" -#: lib/signature.c:773 +#: lib/signature.c:771 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci" @@ -4218,6 +4213,10 @@ msgstr "neuspelo otvaranje %s: %s" msgid "failed to create %s: %s\n" msgstr "neuspelo kreiranje %s\n" +#, fuzzy +#~ msgid "exec failed!\n" +#~ msgstr "%s: Neuspelo otvaranje\n" + #, fuzzy #~ msgid " --rcfile " #~ msgstr " -b \t " diff --git a/po/sv.po b/po/sv.po index d4f19f43e..5d2488d8f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: 2000-10-09 22:31+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -3048,119 +3048,119 @@ msgstr "ok msgid "incorrect format: %s\n" msgstr "fel i format: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(innehåller inga filer)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "normal " -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "ersatt " -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "oinstallerat " -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "nätdelad " -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "(okänd %3d) " -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "(ej tillstnd) " -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "paketet har varken filägare eller id-listor" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "kan inte fråga om %s: %s\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "misslyckades öppna %s: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "källpaket i gammalt format går ej att fråga om\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s verkar inte vara ett RPM-paket\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "fråga om %s misslyckades\n" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "fråga om spec-fil %s misslyckades, kan inte parsa\n" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "inga paket\n" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "grupp %s innehåller inga paket\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "inga paketutlösare %s\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "inget paket behöver %s\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "inget paket tillhandahåller %s\n" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "fil %s: %s\n" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "filen %s tillhör inget paket\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "felaktigt paketnummer: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "paketpost nummer: %u\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "post %d kunde inte läsas\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "paket %s är inte installerat\n" @@ -3749,7 +3749,7 @@ msgstr "kan inte l msgid "Got %d bytes of PGP sig\n" msgstr "Fick %d byte PGPsignatur\n" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "Kunde inte köra gpg" @@ -3781,33 +3781,29 @@ msgstr "Genererar signatur med PGP.\n" msgid "Generating signature using GPG.\n" msgstr "Genererar signatur med GPG.\n" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "Kunde inte köra pgp. Använd --nopgp för att hoppa över PGPkontroll." -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "exec misslyckades!\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "Kunde inte köra gpg. Använd --nogpg för att hoppa över GPGkontroll." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "Kunde inte köra pgp" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "Ogiltig %%_signature specifikation i makrofil" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil" @@ -4093,6 +4089,9 @@ msgstr "kunde inte msgid "failed to create %s: %s\n" msgstr "kunde inte skapa %s: %s\n" +#~ msgid "exec failed!\n" +#~ msgstr "exec misslyckades!\n" + #~ msgid "%%instchangelog value in macro file should be a number, but isn't" #~ msgstr "" #~ "%%instchangelog-värde i makrofil skall vara ett tal, men är inte det" diff --git a/po/tr.po b/po/tr.po index 5f793780a..ef843e97d 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3229,121 +3229,121 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "format hatasý: %s\n" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "(hiç dosya içermiyor)" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 #, fuzzy msgid "not installed " msgstr "%s pakedi yüklenmemiþ\n" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, fuzzy, c-format msgid "(unknown %3d) " msgstr "(bilinmeyen tip)" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, fuzzy, c-format msgid "can't query %s: %s\n" msgstr "hata: %s eriþilemiyor\n" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, fuzzy, c-format msgid "open of %s failed: %s\n" msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "eski tip kaynak paketleri sorgulanamýyor\n" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "%s bir RPM paketi deðil (gibi)\n" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:586 +#: lib/query.c:601 #, fuzzy, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n" -#: lib/query.c:609 +#: lib/query.c:624 #, fuzzy msgid "no packages\n" msgstr "Tüm paketleri sorgulama" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "%s grubu hiç paket içermiyor\n" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "hiç bir paket %s tetiklemiyor\n" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "hiç bir paket %s gerektirmiyor\n" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "hiç bir paket %s saðlamýyor\n" -#: lib/query.c:682 +#: lib/query.c:697 #, fuzzy, c-format msgid "file %s: %s\n" msgstr "%s açýlamadý: %s" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "%s dosyasý, hiç bir pakete ait deðil\n" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "geçersiz paket numarsý: %s\n" -#: lib/query.c:715 +#: lib/query.c:730 #, fuzzy, c-format msgid "package record number: %u\n" msgstr "geçersiz paket numarsý: %s\n" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "%d numaralý kayýt okunamadý\n" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "%s pakedi yüklenmemiþ\n" @@ -3913,7 +3913,7 @@ msgstr "imzay msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 #, fuzzy msgid "Couldn't exec gpg" msgstr "PGP çalýþtýrýlamadý" @@ -3950,36 +3950,31 @@ msgstr "PGP-imzas msgid "Generating signature using GPG.\n" msgstr "PGP-imzasý yaratýr" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn." -#: lib/signature.c:561 lib/signature.c:634 -#, fuzzy -msgid "exec failed!\n" -msgstr "%s: Eriþilemedi\n" - -#: lib/signature.c:636 +#: lib/signature.c:634 #, fuzzy msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn." -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "PGP çalýþtýrýlamadý" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 #, fuzzy msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý" -#: lib/signature.c:773 +#: lib/signature.c:771 #, fuzzy msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý" @@ -4275,6 +4270,10 @@ msgstr "%s a msgid "failed to create %s: %s\n" msgstr "%s yaratýlamýyor\n" +#, fuzzy +#~ msgid "exec failed!\n" +#~ msgstr "%s: Eriþilemedi\n" + #, fuzzy #~ msgid " --rcfile " #~ msgstr " -b " diff --git a/po/uk.po b/po/uk.po index a98fd6acc..0ffbc4a70 100644 --- a/po/uk.po +++ b/po/uk.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/wa.po b/po/wa.po index a98fd6acc..0ffbc4a70 100644 --- a/po/wa.po +++ b/po/wa.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/zh.po b/po/zh.po index a98fd6acc..0ffbc4a70 100644 --- a/po/zh.po +++ b/po/zh.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po index a98fd6acc..0ffbc4a70 100644 --- a/po/zh_CN.GB2312.po +++ b/po/zh_CN.GB2312.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2000-12-26 14:00-0500\n" +"POT-Creation-Date: 2000-12-27 16:13-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2980,119 +2980,119 @@ msgstr "" msgid "incorrect format: %s\n" msgstr "" -#: lib/query.c:224 +#: lib/query.c:233 msgid "(contains no files)" msgstr "" -#: lib/query.c:275 +#: lib/query.c:284 msgid "normal " msgstr "" -#: lib/query.c:277 +#: lib/query.c:286 msgid "replaced " msgstr "" -#: lib/query.c:279 +#: lib/query.c:288 msgid "not installed " msgstr "" -#: lib/query.c:281 +#: lib/query.c:290 msgid "net shared " msgstr "" -#: lib/query.c:283 +#: lib/query.c:292 #, c-format msgid "(unknown %3d) " msgstr "" -#: lib/query.c:288 +#: lib/query.c:297 msgid "(no state) " msgstr "" -#: lib/query.c:307 lib/query.c:352 +#: lib/query.c:316 lib/query.c:361 msgid "package has neither file owner or id lists" msgstr "" -#: lib/query.c:403 +#: lib/query.c:418 #, c-format msgid "can't query %s: %s\n" msgstr "" #. XXX Fstrerror -#: lib/query.c:519 +#: lib/query.c:534 #, c-format msgid "open of %s failed: %s\n" msgstr "" -#: lib/query.c:539 +#: lib/query.c:554 msgid "old format source packages cannot be queried\n" msgstr "" -#: lib/query.c:548 lib/rpminstall.c:312 +#: lib/query.c:563 lib/rpminstall.c:312 #, c-format msgid "%s does not appear to be a RPM package\n" msgstr "" -#: lib/query.c:552 +#: lib/query.c:567 #, c-format msgid "query of %s failed\n" msgstr "" -#: lib/query.c:586 +#: lib/query.c:601 #, c-format msgid "query of specfile %s failed, can't parse\n" msgstr "" -#: lib/query.c:609 +#: lib/query.c:624 msgid "no packages\n" msgstr "" -#: lib/query.c:620 +#: lib/query.c:635 #, c-format msgid "group %s does not contain any packages\n" msgstr "" -#: lib/query.c:630 +#: lib/query.c:645 #, c-format msgid "no package triggers %s\n" msgstr "" -#: lib/query.c:640 +#: lib/query.c:655 #, c-format msgid "no package requires %s\n" msgstr "" -#: lib/query.c:651 +#: lib/query.c:666 #, c-format msgid "no package provides %s\n" msgstr "" -#: lib/query.c:682 +#: lib/query.c:697 #, c-format msgid "file %s: %s\n" msgstr "" -#: lib/query.c:686 +#: lib/query.c:701 #, c-format msgid "file %s is not owned by any package\n" msgstr "" -#: lib/query.c:712 +#: lib/query.c:727 #, c-format msgid "invalid package number: %s\n" msgstr "" -#: lib/query.c:715 +#: lib/query.c:730 #, c-format msgid "package record number: %u\n" msgstr "" -#: lib/query.c:720 +#: lib/query.c:735 #, c-format msgid "record %d could not be read\n" msgstr "" -#: lib/query.c:731 lib/rpminstall.c:546 +#: lib/query.c:746 lib/rpminstall.c:546 #, c-format msgid "package %s is not installed\n" msgstr "" @@ -3654,7 +3654,7 @@ msgstr "" msgid "Got %d bytes of PGP sig\n" msgstr "" -#: lib/signature.c:350 lib/signature.c:695 +#: lib/signature.c:350 lib/signature.c:693 msgid "Couldn't exec gpg" msgstr "" @@ -3686,33 +3686,29 @@ msgstr "" msgid "Generating signature using GPG.\n" msgstr "" -#: lib/signature.c:501 lib/signature.c:563 +#: lib/signature.c:501 lib/signature.c:562 msgid "Could not run pgp. Use --nopgp to skip PGP checks." msgstr "" -#: lib/signature.c:561 lib/signature.c:634 -msgid "exec failed!\n" -msgstr "" - -#: lib/signature.c:636 +#: lib/signature.c:634 msgid "Could not run gpg. Use --nogpg to skip GPG checks." msgstr "" -#: lib/signature.c:724 +#: lib/signature.c:722 msgid "Couldn't exec pgp" msgstr "" #. @notreached@ #. This case should have been screened out long ago. -#: lib/signature.c:728 lib/signature.c:781 +#: lib/signature.c:726 lib/signature.c:779 msgid "Invalid %%_signature spec in macro file" msgstr "" -#: lib/signature.c:761 +#: lib/signature.c:759 msgid "You must set \"%%_gpg_name\" in your macro file" msgstr "" -#: lib/signature.c:773 +#: lib/signature.c:771 msgid "You must set \"%%_pgp_name\" in your macro file" msgstr "" diff --git a/rpm.spec.in b/rpm.spec.in index 017cbcb94..20e669a1a 100644 --- a/rpm.spec.in +++ b/rpm.spec.in @@ -309,6 +309,9 @@ fi %{__prefix}/include/popt.h %changelog +* Wed Dec 27 2000 Jeff Johnson +- use malloc'ed buffer for large queries. + * Tue Dec 26 2000 Jeff Johnson - send query/verify output through rpmlog(). - resurrect rpmErrorSetCallback() and rpmErrorString().