add (disabled for now) dependency check to rpmgraph.
authorjbj <devnull@localhost>
Tue, 2 Jul 2002 13:16:50 +0000 (13:16 +0000)
committerjbj <devnull@localhost>
Tue, 2 Jul 2002 13:16:50 +0000 (13:16 +0000)
splint and gettext fiddles.

CVS patchset: 5536
CVS date: 2002/07/02 13:16:50

44 files changed:
lib/package.c
lib/poptALL.c
lib/poptI.c
lib/rpmcli.h
lib/rpmlibprov.c
macros.in
po/POTFILES.in
po/cs.po
po/da.po
po/de.po
po/en_RN.po
po/es.po
po/eu_ES.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
rpm.spec.in
rpmdb/legacy.c
rpmqv.c
system.h
tools/rpmgraph.c
zlib/.cvsignore

index ee93068..96bee89 100644 (file)
@@ -143,8 +143,8 @@ Header headerRegenSigHeader(const Header h)
 
 /*@unchecked@*/
 static int nkeyids = 0;
-/*@unchecked@*/
-static int * keyids = NULL;
+/*@unchecked@*/ /*@only@*/ /*@null@*/
+static int * keyids;
 
 /**
  * Remember current key id.
@@ -152,8 +152,8 @@ static int * keyids = NULL;
  * @return             0 if new keyid, otherwise 1
  */
 static int rpmtsStashKeyid(rpmts ts)
-       /*@globals keyids, nkeyids @*/
-       /*@modifies keyids, nkeyids @*/
+       /*@globals nkeyids, keyids @*/
+       /*@modifies nkeyids, keyids @*/
 {
     struct pgpDigParams_s * sigp = NULL;
     unsigned int keyid;
@@ -164,15 +164,19 @@ static int rpmtsStashKeyid(rpmts ts)
 
     sigp = &ts->dig->signature;
     keyid = pgpGrab(sigp->signid+4, 4);
+    if (keyid == 0)
+       return 0;
 
-    if (keyids != NULL && keyid > 0)
+    if (keyids != NULL)
     for (i = 0; i < nkeyids; i++) {
        if (keyid == keyids[i])
            return 1;
     }
 
     keyids = xrealloc(keyids, (nkeyids + 1) * sizeof(*keyids));
+/*@-boundswrite@*/
     keyids[nkeyids] = keyid;
+/*@=boundswrite@*/
     nkeyids++;
 
     return 0;
index 5beecdd..5e2f739 100644 (file)
@@ -25,7 +25,7 @@ static const char * pipeOutput = NULL;
 /*@unchecked@*/
 /*@observer@*/ /*@null@*/
 static const char * rcfile = NULL;
-/*@unchecked@*/
+/*@unchecked@*/ /*@observer@*/
 static const char * rootdir = "/";
 
 /*@-exportheadervar@*/
@@ -53,8 +53,10 @@ static void printVersion(void)
  */
 /*@mayexit@*/
 static void rpmcliConfigured(void)
-       /*@globals internalState @*/
-       /*@modifies internalState @*/
+       /*@globals rpmCLIMacroContext, rpmGlobalMacroContext,
+               fileSystem, internalState @*/
+       /*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
+               fileSystem, internalState @*/
 {
     static int initted = -1;
 
@@ -71,7 +73,10 @@ static void rpmcliAllArgCallback( /*@unused@*/ poptContext con,
                 /*@unused@*/ enum poptCallbackReason reason,
                 const struct poptOption * opt, const char * arg,
                 /*@unused@*/ const void * data)
-        /*@*/
+       /*@globals rpmCLIMacroContext, rpmGlobalMacroContext,
+               fileSystem, internalState @*/
+       /*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
+               fileSystem, internalState @*/
 {
 #if 0
 /*@observer@*/
@@ -92,7 +97,9 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
     case 'D':
        (void) rpmDefineMacro(NULL, arg, RMIL_CMDLINE);
        rpmcliConfigured();
+/*@-type@*/
        (void) rpmDefineMacro(rpmCLIMacroContext, arg, RMIL_CMDLINE);
+/*@=type@*/
        break;
     case 'E':
        rpmcliConfigured();
@@ -118,6 +125,7 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
     /*@=branchstate@*/
 }
 
+/*@-bitwisesigned -compmempass @*/
 /*@unchecked@*/
 struct poptOption rpmcliAllPoptTable[] = {
 /*@-type@*/ /* FIX: cast? */
@@ -158,7 +166,7 @@ struct poptOption rpmcliAllPoptTable[] = {
        N_("read <FILE:...> instead of default file(s)"),
        N_("<FILE:...>") },
 #endif
- { "showrc", '\0', 0, POPT_SHOWRC|POPT_ARGFLAG_DOC_HIDDEN, 0,
+ { "showrc", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_SHOWRC,
        N_("display final rpmrc and macro configuration"),
        NULL },
 
@@ -176,6 +184,7 @@ struct poptOption rpmcliAllPoptTable[] = {
 
    POPT_TABLEEND
 };
+/*@=bitwisesigned =compmempass @*/
 
 poptContext
 rpmcliFini(poptContext optCon)
@@ -183,12 +192,15 @@ rpmcliFini(poptContext optCon)
     optCon = poptFreeContext(optCon);
 
 #if HAVE_MCHECK_H && HAVE_MTRACE
+    /*@-noeffect@*/
     muntrace();   /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
+    /*@=noeffect@*/
 #endif
 
     return NULL;
 }
 
+/*@-globstate@*/
 poptContext
 rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
 {
@@ -197,8 +209,11 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
     int rc;
 
 #if HAVE_MCHECK_H && HAVE_MTRACE
+    /*@-noeffect@*/
     mtrace();   /* Trace malloc only if MALLOC_TRACE=mtrace-output-file. */
+    /*@=noeffect@*/
 #endif
+/*@-globs -mods@*/
     setprogname(argv[0]);       /* Retrofit glibc __progname */
 
     /* XXX glibc churn sanity */
@@ -206,14 +221,14 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
        if ((__progname = strrchr(argv[0], '/')) != NULL) __progname++;
        else __progname = argv[0];
     }
+/*@=globs =mods@*/
 
+#if !defined(__LCLINT__)
     (void)setlocale(LC_ALL, "" );
 
-#ifdef  __LCLINT__
-#define LOCALEDIR       "/usr/share/locale"
-#endif
     (void)bindtextdomain(PACKAGE, LOCALEDIR);
     (void)textdomain(PACKAGE);
+#endif
 
     rpmSetVerbosity(RPMMESS_NORMAL);
 
@@ -223,9 +238,11 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
        return NULL;
     }
 
+/*@-nullpass -temptrans@*/
     optCon = poptGetContext(__progname, argc, (const char **)argv, optionsTable, 0);
+/*@=nullpass =temptrans@*/
     (void) poptReadConfigFile(optCon, LIBRPMALIAS_FILENAME);
-    poptReadDefaultConfig(optCon, 1);
+    (void) poptReadDefaultConfig(optCon, 1);
     poptSetExecPath(optCon, RPMCONFIGDIR, 1);
 
     /* Process all options, whine if unknown. */
@@ -233,18 +250,22 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
        optArg = poptGetOptArg(optCon);
        switch (rc) {
        default:
+/*@-nullpass@*/
            fprintf(stderr, _("%s: option table misconfigured (%d)\n"),
                __progname, rc);
+/*@=nullpass@*/
            exit(EXIT_FAILURE);
 
-           /*@notreached@*/ break;
+           /*@notreached@*/ /*@switchbreak@*/ break;
         }
     }
 
     if (rc < -1) {
+/*@-nullpass@*/
        fprintf(stderr, "%s: %s: %s\n", __progname,
                poptBadOption(optCon, POPT_BADOPTION_NOALIAS),
                poptStrerror(rc));
+/*@=nullpass@*/
        exit(EXIT_FAILURE);
     }
 
@@ -258,5 +279,6 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
 
     return optCon;
 }
+/*@=globstate@*/
 
 /*@=boundsread@*/
index d85570c..13736de 100644 (file)
@@ -51,9 +51,9 @@ static void installArgCallback( /*@unused@*/ poptContext con,
            argerror(_("exclude paths must begin with a /"));
        ia->relocations = xrealloc(ia->relocations, 
                        sizeof(*ia->relocations) * (ia->numRelocations + 1));
-       /*@-temptrans@*/
+/*@-temptrans@*/
        ia->relocations[ia->numRelocations].oldPath = xstrdup(arg);
-       /*@=temptrans@*/
+/*@=temptrans@*/
        ia->relocations[ia->numRelocations].newPath = NULL;
        ia->numRelocations++;
        break;
@@ -71,12 +71,12 @@ static void installArgCallback( /*@unused@*/ poptContext con,
            argerror(_("relocations must have a / following the ="));
        ia->relocations = xrealloc(ia->relocations, 
                        sizeof(*ia->relocations) * (ia->numRelocations + 1));
-       /*@-temptrans@*/
+/*@-temptrans@*/
        ia->relocations[ia->numRelocations].oldPath = oldPath;
-       /*@=temptrans@*/
-       /*@-kepttrans@*/
+/*@=temptrans@*/
+/*@-kepttrans -usereleased @*/
        ia->relocations[ia->numRelocations].newPath = newPath;
-       /*@=kepttrans@*/
+/*@=kepttrans =usereleased @*/
        ia->numRelocations++;
       }        break;
     case POPT_ROLLBACK:
index b48c0cc..ec28bab 100644 (file)
@@ -37,7 +37,10 @@ extern struct poptOption             rpmcliAllPoptTable[];
 /*@null@*/
 poptContext
 rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
-       /*@*/;
+       /*@globals rpmCLIMacroContext, rpmGlobalMacroContext, stderr, 
+               fileSystem, internalState @*/
+       /*@modifies rpmCLIMacroContext, rpmGlobalMacroContext, stderr, 
+               fileSystem, internalState @*/;
 
 /**
  * Destroy most everything needed by an rpm CLI executable context.
index dfd4882..2ccb338 100644 (file)
@@ -57,8 +57,10 @@ void rpmShowRpmlibProvides(FILE * fp)
     const struct rpmlibProvides_s * rlp;
 
     for (rlp = rpmlibProvides; rlp->featureName != NULL; rlp++) {
+/*@-nullpass@*/ /* FIX: rlp->featureEVR not NULL */
        rpmds pro = rpmdsSingle(RPMTAG_PROVIDENAME, rlp->featureName,
                        rlp->featureEVR, rlp->featureFlags);
+/*@=nullpass@*/
        const char * DNEVR = rpmdsDNEVR(pro);
 
        if (pro != NULL && DNEVR != NULL) {
index 9baab9d..6a1575f 100644 (file)
--- a/macros.in
+++ b/macros.in
@@ -1,7 +1,7 @@
 #/*! \page config_macros Default configuration: /usr/lib/rpm/macros
 # \verbatim
 #
-# $Id: macros.in,v 1.105 2002/06/30 22:47:32 jbj Exp $
+# $Id: macros.in,v 1.106 2002/07/02 13:16:50 jbj Exp $
 #
 # This is a global RPM configuration file. All changes made here will
 # be lost when the rpm package is upgraded. Any per-system configuration
        %{?_dependency_whiteout_5_2}    \
        %{nil}
 
+
+#==============================================================================
+# ---- Cache configuration macros.
+#      Macro(s) used to configure the universe of headers used to
+#      solve dependencies using rpmcache(8).
+#
+#      Note: These values are specific to my machine, and most certainly
+#      are incorrect for any non-redhat.com machine. The macros are
+#      included here only to document the macro names and usage.
+%_bhpath        file://localhost/mnt/dist
+%_bhcoll        @(7.3|7.2|7.1|7.1sbe|7.1k|7.0|7.01j|7.0j|7.0sbe|7.0tc|6.2|6.2ha|6.2ee|6.1|6.0|5.2|5.1|5.0)
+%_bhN           @(SRPMS|i386|alpha|sparc|s390|ia64)
+%_bhVR          RedHat
+%_bhA           RPMS
+
 #==============================================================================
 # ---- per-platform macros.
 #      Macros that are specific to an individual platform. The values here
index 04a739f..81188d0 100644 (file)
@@ -32,6 +32,7 @@ lib/fsm.c
 lib/manifest.c
 lib/misc.c
 lib/package.c
+lib/poptALL.c
 lib/poptI.c
 lib/poptQV.c
 lib/psm.c
@@ -39,8 +40,10 @@ lib/query.c
 lib/rpmal.c
 lib/rpmchecksig.c
 lib/rpmds.c
+lib/rpmfi.c
 lib/rpminstall.c
 lib/rpmlead.c
+lib/rpmlibprov.c
 lib/rpmps.c
 lib/rpmrc.c
 lib/rpmte.c
@@ -52,16 +55,18 @@ lib/transaction.c
 lib/verify.c
 rpmdb/db3.c
 rpmdb/dbconfig.c
+rpmdb/fprint.c
 rpmdb/hdrNVR.c
 rpmdb/header.c
 rpmdb/header_internal.c
 rpmdb/legacy.c
 rpmdb/merge.c
 rpmdb/poptDB.c
-rpmdb/rpmhash.c
 rpmdb/rpmdb.c
+rpmdb/rpmhash.c
 rpmdb/tagname.c
 rpmio/digest.c
+rpmio/fts.c
 rpmio/macro.c
 rpmio/rpmio.c
 rpmio/rpmlog.c
@@ -70,3 +75,5 @@ rpmio/rpmpgp.c
 rpmio/rpmrpc.c
 rpmio/ugid.c
 rpmio/url.c
+tools/rpmcache.c
+tools/rpmgraph.c
index 0ad4718..22cce5e 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2001-07-24 10:02+0100\n"
 "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -74,254 +74,255 @@ msgstr "chyba p
 msgid "cannot re-open payload: %s\n"
 msgstr "nemohu znovu otevøít payload: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "vypsat pou¾ívanou verzi rpm"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "poskytnout výstu s ménì detaily"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "poskytnout detailnìj¹í výstup"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "definování makra <jméno> s obsahem <tìlo>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<jméno> <tìlo>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "vypsat expanzi makra <výraz>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<výraz>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "odeslat stdout do <pøíkazu>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<pøík>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "pou¾ít <adr> jako adresáø nejvy¹¹í úrovnì"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<adresáø>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "èíst <soubor:...> místo implicitního makro souboru"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<soubor:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "èíst <soubor:...> místo implicitního rpmrc souboru"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "zobrazit finální konfiguraci rpmrc a maker"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "zakázat pou¾ití libio(3) API"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "ladit protokol datového toku"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "ladit rpmio I/O"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "ladit manipulaci s URL cache"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "Volby dotazù (s -q or --query):"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "Vollby kontroly (s -V or --verify):"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "Volby signatury:"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "Volby databáze:"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "Sestavovací volby s [ <spec_soubor> | <tar_soubor> | <zdrojový_balíèek> ]:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr "Volby pro Instalaci/Aktualizaci/Mazání:"
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "Spoleèné volby pro v¹echny módy:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verze %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (c) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Tento program lze volnì ¹íøit podle podmínek GNU GPL."
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Pou¾ití: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "Volba --rcfile byla odstranìna.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Pou¾ijte volbu \"--macros <soubor:...>\".\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "specifikovat lze jen jeden hlavní re¾im"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "najednou lze provést jen jeden typ dotazu èi ovìøení"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "neoèekávaný pøíznak pro dotaz"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "neoèekávaný formát dotazu"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "neoèekávaný zdroj dotazu"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "vynucena mù¾e být jen instalace, aktualizace, smazání zdrojových kódù a spec "
 "souboru"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "soubory mohou být pøemístìny jen pøi instalaci balíèkù"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "pou¾ít lze jen jeden z parametrù --prefix nebo --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate a --excludepath je mo¾no pou¾ít jen pøi instalaci nových balíèkù"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix je mo¾no pou¾ít jen pøi instalaci nových balíèkù"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametry pro --prefix musejí zaèínat znakem /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "pou¾ít lze jen jeden z parametrù --excludedocs a --includedocs"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mù¾e být pou¾it jen pøi instalaci balíèkù"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mù¾e být pou¾it jen pøi instalaci a odstraòování balíèkù"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -329,7 +330,7 @@ msgstr ""
 "volba pro potlaèení skriptù mù¾e být pou¾ita jen pøi instalaci nebo pøi "
 "odstraòování balíèkù"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -337,7 +338,7 @@ msgstr ""
 "volba pro potlaèení triggerù mù¾e být pou¾ita jen pøi instalaci nebo "
 "odstraòování balíèkù"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -345,13 +346,13 @@ msgstr ""
 "--nodeps mù¾e být pou¾it jen pøi sestavování, rekompilaci, instalaci, "
 "odstraòování a kontrole"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test mù¾e být pou¾it jen pøi instalaci, odstraòování a sestavování"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -359,82 +360,82 @@ msgstr ""
 "--root (-r) mù¾e být pou¾it jen pøi instalaci, odstraòování, dotazech nebo "
 "znovuvytvoøení databáze"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametry pro --root (-r) musejí zaèínat znakem /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "¾ádné soubory k podepsání\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "pøístup k souboru %s se nezdaøil\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp nenalezeno: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Vlo¾te heslovou frázi: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Chybná heslová fráze\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Heslová fráze je v poøádku.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "©patná %%_signature spec v souboru maker.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign mù¾e být pou¾it jen pøi sestavování balíèkù"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "spu¹tìní selhalo\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "ke znovusestavení nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "pro sestavení nezadány ¾ádné spec soubory"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "pro sestavení nezadány ¾ádné tar soubory"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "k dotazu nezadány ¾ádné parametry"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "pro kontrolu nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekávané parametry pro --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "k dotazu nezadány ¾ádné parametry"
@@ -1604,45 +1605,59 @@ msgstr "%s vytvo
 msgid "error creating temporary file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "práce s balíèky verze 1 není podporována touto verzí RPM\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "tato verze RPM podporuje práci s balíèky s verzí <= 4\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, fuzzy, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "èíst <soubor:...> místo implicitního makro souboru"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musí zaèínat znakem /"
@@ -2030,7 +2045,7 @@ msgstr "nekontrolovat m
 msgid "don't verify files in package"
 msgstr "nekontrolovat soubory v balíèku"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
@@ -2193,8 +2208,8 @@ msgstr "bal
 msgid "can't query %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otevøení %s selhalo: %s\n"
@@ -2208,7 +2223,7 @@ msgstr "dotaz na %s se nezda
 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:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
@@ -2277,7 +2292,7 @@ msgstr "z
 msgid "record %u could not be read\n"
 msgstr "záznam %d nelze pøeèíst\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
@@ -2405,6 +2420,41 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
+#: lib/rpmfi.c:561
+#, fuzzy
+msgid "========== relocations\n"
+msgstr "========== ukládání tsort relací\n"
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "OS je vyøazen: %s\n"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%s vytvoøen jako %s\n"
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "Provádìní(%s): %s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "Provádìní(%s): %s\n"
+
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "Provádìní(%s): %s\n"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "nemohu provést dotaz %s: %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2414,83 +2464,84 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM verze %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, fuzzy, c-format
 msgid " ... as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "neinstalován  "
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "vytvoøení zdrojového a binárního balíèku z <tar_soubor>"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "chybné závislosti pøi sestavování:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "nainstalovat balíèek"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, fuzzy, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, fuzzy, c-format
 msgid "Installing %s\n"
 msgstr "øádek: %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2500,6 +2551,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "%s: Fread selhalo: %s\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3041,8 +3124,8 @@ msgstr "nemohu otev
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -3052,134 +3135,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuji %s-%s-%s \"%s\" z tsort relací.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu vytvoøit databázi z existující databáze"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Nelze pøejmenovat %s na %s: %m\n"
@@ -3398,6 +3481,73 @@ msgstr "
 msgid "failed to create %s: %s\n"
 msgstr "nemohu zjistit stav %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "ovìøit podpis v balíèku"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "nekontrolovat závislosti balíèkù"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "ovìøit podpis v balíèku"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "chyba pøi vytváøení doèasného souboru %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: Fread selhalo: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "Spoleèné volby pro v¹echny módy:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "definování makra <jméno> s obsahem <tìlo>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<jméno> <tìlo>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<výraz>+"
+
 #, fuzzy
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "dotaz/ovìøení balíèkù vy¾adujících závislost"
@@ -3997,9 +4147,6 @@ msgstr "nemohu zjistit stav %s: %s\n"
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "re¾im kontroly (zastaralý)"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: Fread selhalo: %s\n"
-
 #, fuzzy
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "nemohu znovu otevøít payload: %s\n"
@@ -4013,26 +4160,6 @@ msgstr "nemohu zjistit stav %s: %s\n"
 #~ msgstr "Generuji podpis: %d\n"
 
 #, fuzzy
-#~ msgid "========== relocations\n"
-#~ msgstr "========== ukládání tsort relací\n"
-
-#, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "OS je vyøazen: %s\n"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%s vytvoøen jako %s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "Provádìní(%s): %s\n"
-
-#, fuzzy
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "Provádìní(%s): %s\n"
-
-#, fuzzy
 #~ msgid "cannot get %s lock on database\n"
 #~ msgstr "nemohu otevøít RPM databázi v %s\n"
 
index 84cd472..0a52802 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2001-04-05 23:03GMT\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -75,264 +75,265 @@ msgstr "fejl ved l
 msgid "cannot re-open payload: %s\n"
 msgstr "kan ikke genåbne pakkeindhold: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "vis versionen af rpm som benyttes"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "medtag mindre detaljerede oplysninger"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "medtag mere detaljerede oplysninger"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "definér makro <navn> med værdi <vrdi>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<navn> <indhold>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "udlæs makroudvidelse af <udtryk>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<udtryk>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "send standard-ud til <kmd>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<kmd>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "brug <katalog> som topniveau-katalog"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<katalog>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "læs <fil:...> i stedet for standard makrofil(er)"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<fil:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "læs <fil:...> i stedet for standard rpmrc-fil(er)"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "vis den endelige rpmrc og makrokonfiguration"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "undlad at benytte libio(3)-API"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "aflus protokol-datastrøm"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "aflus rpmio I/O"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "aflus URL-bufferhåndtering"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "Forespørgselstilvalg (med -q eller --query):"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "Verifikationstilvalg (med -V eller --verify):"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "Signaturtilvalg"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "Databasetilvalg:"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr "Opbygningstilvalg med [ <spec-fil> | <tararkiv> | <kildepakke> ]:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "Fælles tilvalg for alle rpm-tilstande:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Dette program kan frit distribueres under betingelserne i GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Brug: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "Tilvalget --rcfile er fjernet.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Brug \"--macros <fil:...>\" i stedet..\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "kun ét hovedtilvalg kan angives"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "kun én af forespørgsel/verificér kan udføres ad gangen"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "uventet forespørgselsflag"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "uventet forespørgselsformat"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "uventet forespørgselskilde"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath angivet ved en operation, der ikke benytter en database"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "kun installation, opgradering, rmsource og rmspec kan tvinges igennem"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "filer kan kun omrokeres under installation"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "kun én af --prefix eller --relocate kan bruges"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate og --excludepath kan kun bruges, når nye pakker installeres"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan kun bruges, når nye pakker installeres"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametre til --prefix skal starte med et /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan kun angives ved installation"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan kun angives ved installation"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan kun angives ved installation"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan kun angives ved installation"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan kun angives ved installation"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan kun angives ved installation"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "kun én af --excludedocs og --includedocs kan angives"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan kun angives ved installation"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan kun angives ved installation"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan kun angives ved installation"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan kun angives ved installation"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan kun angives ved installation"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb kan kun angives ved installation og sletning"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb kan kun angives ved installation og sletning"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--notriggers kan kun angives ved installation og sletning af pakker"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -340,13 +341,13 @@ msgstr ""
 "--nodeps kan kun angives ved opbygning, genopbygning, genoversættelse, "
 "installation, sletning og verifikation"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test kan kun angives ved installation, sletning og opbygning"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -354,82 +355,82 @@ msgstr ""
 "--root (-r) kan kun angives ved installation, sletning, forespørgsel og "
 "genopbygning af databasen"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parameteren til --root (-r) skal starte med et /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "ingen filer at underskrive\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan ikke tilgå filen %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp ikke fundet: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Indtast adgangskode: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Adgangskode ikke godkendt\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Adgangskode godkendt.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Ugyldig angivelse af %%_signature i makrofil.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign kan kun bruges ved pakkeopbygning"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "eksekvering mislykkedes\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "ingen pakkefiler angivet til genopbygning"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "ingen spec-fil angivet til opbygning"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "ingen tar-arkiver angivet til opbygning"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ingen pakker angivet ved installation"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "ingen pakker angivet ved installation"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "ingen parametre angivet ved forespørgsel"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "ingen parametre angivet ved verifikation"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "uventede parametre til --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "ingen parametre angivet ved forespørgsel"
@@ -1602,46 +1603,60 @@ msgstr "%s oprettet som %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "fejl ved oprettelse af midlertidig fil %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "indpakningsversion 1 understøttes ikke af denne udgave af RPM\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "kun indpakninger med hovedversion <= 4 understøttes af denne udgave af RPM\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature mislykkedes\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen tilgængelig signatur\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "læs <fil:...> i stedet for standard makrofil(er)"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "udeladte stier skal begynde med et /"
@@ -2042,7 +2057,7 @@ msgstr "verific
 msgid "don't verify files in package"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
@@ -2209,8 +2224,8 @@ msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 msgid "can't query %s: %s\n"
 msgstr "kunne ikke forespørge %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
@@ -2224,7 +2239,7 @@ msgstr "foresp
 msgid "old format source packages cannot be queried\n"
 msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakker udløser %s\n"
@@ -2293,7 +2308,7 @@ msgstr "pakkens post-nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %d kunne ikke læses\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
@@ -2421,6 +2436,40 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s-%s-%s krav ikke opfyldt: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr "========== gemmer omrokeringer\n"
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d ekskluderer %s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d omrokerer %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "ekskluderer multilib-sti %s%s\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "ekskluderer %s %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "omrokerer %s til %s\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "omrokerer kataloget %s til %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "Forbereder..."
@@ -2429,82 +2478,83 @@ msgstr "Forbereder..."
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker til installation..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "overspringer %s - overførsel mislykkedes - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke omrokeres\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fejl ved læsning fra filen %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "filen %s kræver en nyere version af RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kunne ikke installeres\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fandt %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kunne ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" angiver flere pakker\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2514,6 +2564,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "læsning mislykkedes: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3051,8 +3133,8 @@ msgstr "kan ikke 
 msgid "no dbpath has been set\n"
 msgstr "der er ikke sat nogen dbpath\n"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
@@ -3062,138 +3144,138 @@ msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: kan ikke læse hoved ved 0x%x\n"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "fjerner \"%s\" fra %s-indekset.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "fjerne %d indgange fra %s-indekset.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "fejl(%d) ved hentning af \"%s\"-poster fra '%s'-indekset\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "fejl(%d) ved fjernelse af post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "fejl(%d) under allokering af ny pakkeinstans\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 "tilføjer \"%s\" til '%s'-indekset.\n"
 "\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "tilføjer %d indgange til '%s'-indekset.\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "fejl(%d) ved gemning af post %s i %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "fjerner %s efter vellykket genopbygning af db3.\n"
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "der ikke sat nogen dbpath"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "genopbygger database %s over i %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "den midlertidige database %s eksisterer allerede\n"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 "opretter kataloget %s\n"
 "\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "opretter kataloget %s: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "åbner gammel database med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "åbner ny database med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "post nummer %d i databasen er fejlbehæftet -- overspringer.\n"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kunne ikke tilføje posten, der tidligere var ved %d\n"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunne ikke genopbygge database: original-databasen beholdes\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "kunne ikke erstatte gammel database med ny database!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "erstat filer i %s med filer fra %s for at genoprette"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr "fjerner kataloget %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunne ikke fjerne katalog %s: %s\n"
@@ -3405,6 +3487,75 @@ msgstr "url-port skal v
 msgid "failed to create %s: %s\n"
 msgstr "kunne ikke oprette %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "verificér pakkesignatur"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "undlad at tjekke pakkers afhængighedskrav"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "verificér pakkesignatur"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr ""
+"opretter kataloget %s\n"
+"\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: læs manifest mislykkedes: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "Fælles tilvalg for alle rpm-tilstande:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "definér makro <navn> med værdi <vrdi>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<navn> <indhold>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<udtryk>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "fjernelse af disse pakker ville bryde afhængighederne:\n"
 
@@ -4000,9 +4151,6 @@ msgstr "kunne ikke oprette %s: %s\n"
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "gammel rpm verifikationstilstand"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: læs manifest mislykkedes: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "kunne ikke åbne %s/packages.rpm\n"
 
@@ -4012,27 +4160,6 @@ msgstr "kunne ikke oprette %s: %s\n"
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "Genererer signatur med gpg.\n"
 
-#~ msgid "========== relocations\n"
-#~ msgstr "========== gemmer omrokeringer\n"
-
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "%5d ekskluderer %s\n"
-
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d omrokerer %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "ekskluderer multilib-sti %s%s\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "ekskluderer %s %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "omrokerer %s til %s\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "omrokerer kataloget %s til %s\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 268c6ff..ed8f29e 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 1998-08-03 18:02+02:00\n"
 "Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
 "Language-Team: German <de@li.org>\n"
@@ -116,265 +116,265 @@ msgstr "Fehler beim Suchen nach Paket %s\n"
 msgid "cannot re-open payload: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "Die benutzte RPM-Version anzeigen"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "Die benutzte RPM-Version anzeigen"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "Standard-Ausgabe nach <BEFEHL> umleiten"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "<VERZ> als Stammverzeichnis benutzen"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 # , c-format
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Version %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright © 1998 - Red Hat Software"
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Dies darf unter den Bedingungen der »GNU GPL« frei verteilt werden"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Benutzung: rpm {--help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Benutzen Sie stattdessen -e oder --erase\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "Es darf nur ein Hauptmodus angegeben werden"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 "Nur nur eine Art der Anfrage/Überprüfung kann pro Programmlauf durchgeführt "
 "werden"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "nur die Installation und Aktualisierung darf erzwungen werden"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "Dateien können nur während der Paketinstallation verschoben werden"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "Argumente zu --prefix müssen mit einem / beginnen"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -383,7 +383,7 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -392,7 +392,7 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -401,7 +401,7 @@ msgstr ""
 "--nodeps darf nur während der Paketinstallation, -deinstallation und -"
 "überprüfung angegeben werden"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -409,7 +409,7 @@ msgstr ""
 "--test darf nur während der Paketinstallation, -deinstallation und -"
 "erstellung angegeben werden"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -417,84 +417,84 @@ msgstr ""
 "--root (-r) darf nur während der Paketinstallation, -deinstallation, -"
 "anfrage und Datenbankneuerstellungen angegeben werden"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Das Passwort ist richtig.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign darf nur während der Paketerstellung benutzt werden"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "Unerwartete Argumente zu --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
@@ -1739,49 +1739,62 @@ msgstr "kann Datei %s nicht 
 msgid "error creating temporary file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 #, fuzzy
 msgid "exclude paths must begin with a /"
@@ -2204,7 +2217,7 @@ msgstr "Paket installieren"
 msgid "don't verify files in package"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
@@ -2374,8 +2387,8 @@ msgstr "Paket hat keinen Namen"
 msgid "can't query %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
@@ -2389,7 +2402,7 @@ msgstr "Anfrage von %s fehlgeschlagen\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "kein Paket triggert %s\n"
@@ -2462,7 +2475,7 @@ msgstr "ung
 msgid "record %u could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
@@ -2589,6 +2602,43 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+# , c-format
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "Hole %s heraus\n"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "kann Datei %s nicht öffnen: "
+
+# , c-format
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "Hole %s heraus\n"
+
+# , c-format
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "Hole %s heraus\n"
+
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2599,83 +2649,84 @@ msgid "Preparing packages for installation..."
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
 # , c-format
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Hole %s heraus\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
@@ -2685,6 +2736,38 @@ msgstr "Es wurden keine Pakete f
 msgid "read failed: %s (%d)\n"
 msgstr "lesen fehlgeschlagen: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3237,8 +3320,8 @@ msgstr "Fehler: kann %s nicht 
 msgid "no dbpath has been set\n"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "Fehler beim Eintrag %s von %s"
@@ -3248,140 +3331,140 @@ msgstr "Fehler beim Eintrag %s von %s"
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # FIXME
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
 # , c-format
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -3606,6 +3689,63 @@ msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 msgid "failed to create %s: %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "Paketsignatur überprüfen"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "Dateiabhängigkeiten nicht überprüfen"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "Paketsignatur überprüfen"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: »readLead« fehlgeschlagen\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 # oder besser: "... verletzen" ?
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
@@ -4178,10 +4318,6 @@ msgstr "anlegen von %s fehlgeschlagen\n"
 #~ msgstr "Anfrage-Modus"
 
 #, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: »readLead« fehlgeschlagen\n"
-
-#, fuzzy
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
@@ -4193,29 +4329,6 @@ msgstr "anlegen von %s fehlgeschlagen\n"
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "PGP-Signatur generieren"
 
-# , c-format
-#, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "Hole %s heraus\n"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "kann Datei %s nicht öffnen: "
-
-# , c-format
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "Hole %s heraus\n"
-
-# , c-format
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "Hole %s heraus\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
-
 #, fuzzy
 #~ msgid "opening db file        %s mode 0x%x\n"
 #~ msgstr "Datenbank aus der vorhandenen neu erstellen"
index 9f349a5..36f6580 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 1a652bd..6b662dc 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -73,258 +73,258 @@ msgstr "virhe etsitt
 msgid "cannot re-open payload: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "tulosta käytetyn rpm:n versio"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "tulosta käytetyn rpm:n versio"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "lähetä vakiotuloste <komento>:lle"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "käytä <hakem> ylimpänä hakemistona"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versio %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Tätä ohjelmaa voi vapaasti levittää GNU GPL:n puittessa"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "käyttö: rpm {--help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Käytä sen sijaan -e tai --erase .\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "vain yksi päämoodi voidaan määritellä"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vain asennus tai päivitys voidaan pakottaa"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "vain toinen --prefix tai --relocate voidaan antaa"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix parametrien pitää alkaa /-merkillä"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -332,7 +332,7 @@ msgid ""
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -340,7 +340,7 @@ msgid ""
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -349,7 +349,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +357,7 @@ msgstr ""
 "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
 "käännettäessä"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,84 +365,84 @@ msgstr ""
 "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
 "kyseltäessä ja tietokannan uudelleenluonnissa"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametrit --root (-r):lle alettava /-merkillä"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "uudelleenkäännolle ei määritelty paketteja"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "käännökselle ei annettu määrittelytiedostoja"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "käännökselle ei määritelty tar-tiedostoja"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "tarkistukselle ei annettu parametrejä"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags: odottamattomia parametrejä"
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "kyselylle ei annettu parametrejä"
@@ -1625,49 +1625,62 @@ msgstr "en voinut avata tiedostoa %s: "
 msgid "error creating temporary file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 #, fuzzy
 msgid "exclude paths must begin with a /"
@@ -2087,7 +2100,7 @@ msgstr "asenna paketti"
 msgid "don't verify files in package"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
@@ -2255,8 +2268,8 @@ msgstr "paketilla ei ole nime
 msgid "can't query %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
@@ -2270,7 +2283,7 @@ msgstr "%s:n kysely ei onnistunut\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
@@ -2340,7 +2353,7 @@ msgstr "virheellinen paketin numero: %s\n"
 msgid "record %u could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
@@ -2466,6 +2479,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "Haen: %s\n"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "en voinut avata tiedostoa %s: "
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "Haen: %s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "Haen: %s\n"
+
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "virhe luotaessa hakemistoa %s: %s"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "virhe luotaessa hakemistoa %s: %s"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2475,83 +2522,84 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "asennukselle ei määritelty paketteja"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "poistolle ei määritelty paketteja"
@@ -2561,6 +2609,38 @@ msgstr "poistolle ei m
 msgid "read failed: %s (%d)\n"
 msgstr "luku epäonnistui: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3105,8 +3185,8 @@ msgstr "virhe: en voi avata %s\n"
 msgid "no dbpath has been set\n"
 msgstr "dbpath ei ole asetettu"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
@@ -3116,134 +3196,134 @@ msgstr "virhe luettaessa tietuetta %s %s:st
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "en voi lisätä tietuetta %d:stä"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "en voinut avata %s: %s"
@@ -3466,6 +3546,63 @@ msgstr "virhe: ftpport pit
 msgid "failed to create %s: %s\n"
 msgstr "%s:n luonti epäonnistui\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "tarkista paketin allekirjoitus"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "älä tarkista paketin riippuvuuksia"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "tarkista paketin allekirjoitus"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "virhe luotaessa hakemistoa %s: %s"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: readLead  epäonnistui\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
 
@@ -4033,10 +4170,6 @@ msgstr "%s:n luonti ep
 #~ msgstr "kyselymoodi"
 
 #, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: readLead  epäonnistui\n"
-
-#, fuzzy
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
@@ -4049,26 +4182,6 @@ msgstr "%s:n luonti ep
 #~ msgstr "generoi PGP-allekirjoitus"
 
 #, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "Haen: %s\n"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "en voinut avata tiedostoa %s: "
-
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "Haen: %s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "Haen: %s\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "virhe luotaessa hakemistoa %s: %s"
-
-#, fuzzy
 #~ msgid "opening db file        %s mode 0x%x\n"
 #~ msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
index 04d6d52..255be8a 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -79,278 +79,278 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 #, fuzzy
 msgid "print the version of rpm being used"
 msgstr "   --version\t\t- affiche la version de rpm utilise"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "   --version\t\t- affiche la version de rpm utilise"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 #, fuzzy
 msgid "use <dir> as the top level directory"
 msgstr "      --root <dir>\t- utilise <dir> comme rpertoire racine"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Peut tre redistribu librement selon les termes de la GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Utilisez de prfrence -e ou --erase.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "un seul type de requte/vrification peut tre effectu  la fois"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "seules l'installation et la mise  jour peuvent tre forces"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr ""
 "--replacefiles ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean ne peut tre spcifi que lors de la construction d'un package"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign ne peut tre spcifi que lors de la construction d'un package"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--percent ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--replacepkgs ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut tre spcifi que lors de l'installation d'un package"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -359,7 +359,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -368,7 +368,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -377,7 +377,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
@@ -386,7 +386,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -395,85 +395,85 @@ msgstr ""
 "--root (-r) ne peut tre spcifi que lors de l'installation, de la "
 "dsinstallation ou de l'interrogation d'un package"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 #, fuzzy
 msgid "pgp not found: "
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "La vrification du mot de passe a chou\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Mot de passe correct.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign ne peut tre spcifi que lors de la construction d'un package"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 #, fuzzy
 msgid "exec failed\n"
 msgstr "La construction a chou.\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "aucun package n'a t spcifi pour la reconstruction"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "aucun package n'a t spcifi pour la construction"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "aucun package n'a t spcifi pour la construction"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "aucun argument n'a t fourni pour la requte"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "aucun argument n'a t fourni pour la vrification"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "aucun argument n'a t fourni pour la requte"
@@ -1653,45 +1653,58 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 #, fuzzy
 msgid "exclude paths must begin with a /"
@@ -2134,7 +2147,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2300,8 +2313,8 @@ msgstr "aucun package n'a t spcifi pour l'installation"
 msgid "can't query %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "La construction a chou.\n"
@@ -2315,7 +2328,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2385,7 +2398,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2510,6 +2523,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2519,82 +2566,83 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
@@ -2604,6 +2652,38 @@ msgstr "aucun package n'a t spcifi pour la dsinstallation"
 msgid "read failed: %s (%d)\n"
 msgstr "impossible d'ouvrir: %s\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3143,8 +3223,8 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3154,134 +3234,134 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3493,6 +3573,66 @@ msgstr ""
 msgid "failed to create %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr ""
+"        -f <file>+        - interroge le package  qui appartient <file>"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr ""
+"        -f <file>+        - interroge le package  qui appartient <file>"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr ""
+"        -f <file>+        - interroge le package  qui appartient <file>"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "impossible d'ouvrir: %s\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #, fuzzy
 #~ msgid "package %s has unsatisfied Requires: %s\n"
 #~ msgstr "aucun package n'a t spcifi pour l'installation"
@@ -3813,10 +3953,6 @@ msgstr "impossible d'ouvrir: %s\n"
 #~ msgstr "aucun package n'a t spcifi pour l'installation"
 
 #, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "impossible d'ouvrir: %s\n"
-
-#, fuzzy
 #~ msgid "Generating signature using PGP.\n"
 #~ msgstr "      --sign            - genre une signature PGP"
 
@@ -3825,14 +3961,6 @@ msgstr "impossible d'ouvrir: %s\n"
 #~ msgstr "      --sign            - genre une signature PGP"
 
 #, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "impossible d'ouvrir: %s\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "impossible d'ouvrir: %s\n"
-
-#, fuzzy
 #~ msgid "opening db file        %s mode 0x%x\n"
 #~ msgstr "impossible d'ouvrir: %s\n"
 
index 034f388..d7cd94b 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2001-01-13 22:31+0100\n"
 "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
 "Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -73,353 +73,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1564,45 +1564,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1974,7 +1987,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2131,8 +2144,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2146,7 +2159,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2215,7 +2228,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2338,6 +2351,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2346,81 +2393,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2430,6 +2478,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2957,8 +3037,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2968,134 +3048,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3306,3 +3386,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 5f32964..65e3593 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2001-07-12 13:25+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
@@ -74,354 +74,355 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "prenta útgáfunúmer rpm sem verið er að nota"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "skilgreina fjölva <nafn> með gildinu <gildi>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<nafn> <gildi>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "prenta útvíkkun fjölva <expr>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "senda frálag í <skipun>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "sýna endanlega rpmrc og stillingar fjölva"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM útgáfa %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Höfundarréttur (C) 1998-2000 - Red Hat Inc"
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Þessu má dreifa frjálst samkvæmt skilmálum GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1572,45 +1573,58 @@ msgstr "%s b
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: Fseek brást: %s\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1990,7 +2004,7 @@ msgstr "ekki yfirfara heimildir skr
 msgid "don't verify files in package"
 msgstr "ekki yfirfara skrárnar í pakkanum"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ekki skoða pakkaskilyrðin"
 
@@ -2150,8 +2164,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2165,7 +2179,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
@@ -2234,7 +2248,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2357,6 +2371,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d færa %s -> %s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d færa %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "lína %d: %s\n"
+
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "%5d færa %s -> %s\n"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "%5d færa %s -> %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2365,82 +2413,83 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "gat ekki útbúið pakkaskilyrði:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2450,6 +2499,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2978,8 +3059,8 @@ msgstr "get ekki opna
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2989,134 +3070,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3328,6 +3409,71 @@ msgstr "g
 msgid "failed to create %s: %s\n"
 msgstr "gat ekki búið til %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "ekki skoða pakkaskilyrðin"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "ekki skoða pakkaskilyrðin"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "ekki skoða pakkaskilyrðin"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s rmdir %s brást: %s\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "skilgreina fjölva <nafn> með gildinu <gildi>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<nafn> <gildi>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<expr>+"
+
 #~ msgid "cannot open rpm database in %s\n"
 #~ msgstr "get ekki opnað pakka gagnagrunn í %s\n"
 
@@ -3674,9 +3820,6 @@ msgstr "gat ekki b
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "get ekki opnað %s/packages.rpm\n"
 
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d færa %s -> %s\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index b074b41..a280b18 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 1999-12-01 22:49 +JST\n"
 "Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
 "Language-Team: JRPM <jrpm@linux.or.jp>\n"
@@ -81,124 +81,124 @@ msgstr "
 msgid "cannot re-open payload: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "ɸ½à½ÐÎϤò <cmd> ¤Ø¥Ñ¥¤¥×¤·¤Þ¤¹"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ <dir> ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 #, fuzzy
 msgid "Signature options:"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ¥Ð¡¼¥¸¥ç¥ó %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
@@ -206,72 +206,72 @@ msgstr ""
 "ËÝÌõ¼Ô ¿ÀÅÄ ½¼ <kanda@nn.iij4u.or.jp>\n"
 "¸íÌõÅù¤Ï¿ÀÅĤޤÇ"
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "GNU°ìÈ̸øÍ­»ÈÍѵöÂú½ñ¤Î²¼¤Ç¼«Í³¤ËÇÛÉۤǤ­¤Þ¤¹"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "»ÈÍÑË¡: rpm {--help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, fuzzy, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "°ì¤Ä¤Î¥á¥¸¥ã¡¼¥â¡¼¥É¤Î¤ß¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "Ì䤤¹ç¤ï¤»/¸¡¾Ú¤Ï°ìÅ٤˰ì¤Ä¤·¤«¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥é¥°"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥©¡¼¥Þ¥Ã¥È"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥½¡¼¥¹"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¡¢¥½¡¼¥¹ºï½ü¡¢¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ëºï½ü»þ¤Î¤ß¶¯À©¤Ç¤­"
 "¤Þ¤¹"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ßºÆÇÛÃ֤Ǥ­¤Þ¤¹"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¤â¤·¤¯¤Ï --relocate ¤Î¤¤¤º¤ì¤«¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
@@ -279,82 +279,82 @@ msgstr ""
 "--relocate ¤È --excludepath ¤Ï¿·¤·¤¤¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍÑ"
 "¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¤Ï¿·µ¬¤Ë¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¤Ø¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¤È --includedocs ¤Ï¤É¤Á¤é¤«°ìÊý¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "-ignoreos ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "-ignoresize ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Îºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -362,13 +362,13 @@ msgid ""
 msgstr ""
 "--nodeps ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎºîÀ®¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢ºîÀ®»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -376,83 +376,83 @@ msgstr ""
 "--root (-r) ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢Ì䤤¹ç¤ï¤»¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹ºÆ¹½ÃÛ»þ¤Î¤ß»ØÄê¤Ç"
 "¤­¤Þ¤¹"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "½ð̾¤¹¤ë¤¿¤á¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 #, fuzzy
 msgid "pgp not found: "
 msgstr "pgp ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤ÏÀµ¾ï¤Ç¤¹¡¥\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign ¤Ï¥Ñ¥Ã¥±¡¼¥¸ºîÀ®»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "¼Â¹Ô¼ºÇÔ\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "ºÆºîÀ®¤¹¤ë¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "¸¡¾Ú¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¤Î°ú¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
@@ -1650,49 +1650,62 @@ msgstr "
 msgid "error creating temporary file %s\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 #, fuzzy
 msgid "exclude paths must begin with a /"
@@ -2123,7 +2136,7 @@ msgstr "
 msgid "don't verify files in package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
@@ -2292,8 +2305,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
@@ -2307,7 +2320,7 @@ msgstr "%s 
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
@@ -2377,7 +2390,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
@@ -2506,6 +2519,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2515,82 +2562,83 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2600,6 +2648,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "Æɤ߹þ¤ß¤Î¼ºÇÔ: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3152,8 +3232,8 @@ msgstr "%s 
 msgid "no dbpath has been set\n"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
@@ -3163,136 +3243,136 @@ msgstr "
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
@@ -3516,6 +3596,63 @@ msgstr "url 
 msgid "failed to create %s: %s\n"
 msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
 
@@ -3855,10 +3992,6 @@ msgstr "%s 
 #~ msgstr "Ì䤤¹ç¤ï¤»¥â¡¼¥É"
 
 #, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
-
-#, fuzzy
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
@@ -3871,29 +4004,6 @@ msgstr "%s 
 #~ msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
 
 #, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
-
-#, fuzzy
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 75c0aec..c791077 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2002-03-04 17:17+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
@@ -74,265 +74,266 @@ msgstr "
 msgid "cannot re-open payload: %s\n"
 msgstr "payload¸¦ ´Ù½Ã ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "ÇöÀç »ç¿ëµÇ°í Àִ rpm ¹öÀüÀ» Ç¥½ÃÇÕ´Ï´Ù"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "ÀÚ¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "¾ÆÁÖ »ó¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "<º»¹®>ÀÇ ³»¿ë(value)À¸·Î <À̸§> ¸ÅÅ©·Î¸¦ Á¤ÀÇÇÕ´Ï´Ù"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<À̸§> <º»¹®>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "<Ç¥Çö½Ä>+ ÀÇ ¸ÅÅ©·Î È®ÀåÀ» Ãâ·ÂÇÕ´Ï´Ù"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<Ç¥Çö½Ä>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "Ç¥ÁØÃâ·ÂÀ» <¸í·É>À¸·Î º¸³À´Ï´Ù"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<¸í·É>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<µð·ºÅ丮>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<ÆÄÀÏ:..>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "±âº» rpmrc ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "ÇöÀç ¼³Á¤µÇ¾î Àִ rpmrcÀÇ ³»¿ë°ú ¸ÅÅ©·Î¸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "libio(3) APIÀÇ »ç¿ëÀ» ÇØÁ¦ÇÕ´Ï´Ù"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "µ¥ÀÌÅÍ ½ºÆ®¸² ÇÁ·ÎÅäÄÝÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "rpmio ÀÔ/Ãâ·ÂÀ» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "URL Ä³½Ã Çڵ鸵À» µð¹ö±× ÇÕ´Ï´Ù"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "ÁúÀÇ ¿É¼Ç (-q ¶Ç´Â --query ¿É¼Ç°ú ÇÔ²² »ç¿ë):"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "°ËÁõ ¿É¼Ç (-V ¶Ç´Â --verify ¿É¼Ç°ú ÇÔ²² »ç¿ë):"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "¼­¸í ¿É¼Ç:"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "µ¥ÀÌÅͺ£À̽º ¿É¼Ç:"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "´ÙÀ½°ú ÇÔ²² »ç¿ëÇϴ Á¦ÀÛ ¿É¼Ç [ <specÆÄÀÏ> | <tarÆÄÀÏ> | <¼Ò½º ÆÐÅ°Áö> ]:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr "¼³Ä¡/¾÷±×·¹À̵å/»èÁ¦ ¿É¼Ç:"
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "¸ðµç rpm ¸ðµå¿¡¼­ÀÇ ÀϹÝÀûÀΠ¿É¼Ç:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ¹öÀü - %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "ÀÌ ÇÁ·Î±×·¥Àº GNU Public License ³»¿¡¼­ ÀÚÀ¯·Ó°Ô Àç¹èÆ÷ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "* »ç¿ë¹ý: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "--rcfile ¿É¼ÇÀÌ Á¦°ÅµÇ¾ú½À´Ï´Ù.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "´ë½Å \"--macros <ÆÄÀÏ:..>\" À» »ç¿ëÇÕ´Ï´Ù.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Àμö Ã³¸®°úÁ¤ (%d) µµÁß ³»ºÎ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "ÇϳªÀÇ ÁÖ(major) ¸ðµå¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÁúÀÇ/°ËÁõ À¯ÇüÀº °¢°¢ ´Ù¸¥ À¯Çü°ú µ¿½Ã¿¡ ¼öÇàÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Ç÷¡±× ÀÔ´Ï´Ù"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Çü½Ä ÀÔ´Ï´Ù"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ ¼Ò½º ÀÔ´Ï´Ù"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath´Â µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÏÁö ¾Ê±â À§ÇÑ ¿É¼ÇÀÔ´Ï´Ù"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "¼³Ä¡, ¾÷±×·¹À̵å, ¼Ò½º »èÁ¦, spec ÆÄÀÏ »èÁ¦½Ã¿¡¸¸ ¼öÇàµË´Ï´Ù"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÆÄÀÏÀ» Àç¹èÄ¡ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¶Ç´Â --relocate ¿É¼Ç Áß Çϳª¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate ¿Í --excludepath ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ"
 "½À´Ï´Ù"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¿Í --includedocs ¿É¼Ç¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¿É¼ÇÀº ÆÐÅ°Áö »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "½ºÅ©¸³Æ® ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "Æ®¸®°Å ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -340,13 +341,13 @@ msgstr ""
 "--nodeps ¿É¼ÇÀº ÆÐÅ°Áö Á¦ÀÛ, ÀçÁ¦ÀÛ(rebuild), ÀçÄÄÆÄÀÏ(recompile), ¼³Ä¡, »è"
 "Á¦, °ËÁõ½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, Á¦À۽ÿ¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -354,81 +355,81 @@ msgstr ""
 "--root (-r) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, ÁúÀÇ, µ¥ÀÌÅͺ£À̽º À籸Ãà½Ã¿¡¸¸ ÁöÁ¤ÇÒ "
 "¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "¼­¸íÇÒ ÆÄÀÏÀÌ ¾ø½À´Ï´Ù\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "%s ÆÄÀÏ¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp¸¦ Ã£À» ¼ö ¾øÀ½: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Æнº ±¸¹®(pass phrase) ÀÔ·Â: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ÀÏÄ¡ÇÕ´Ï´Ù.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign ¿É¼ÇÀº ÆÐÅ°Áö Á¦À۽ÿ¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "ÀçÁ¦ÀÛ(rebuild)ÇÒ ÆÐÅ°Áö ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ spec ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ tar ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr "»èÁ¦ÇÒ ÆÐÅ°Áö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "°ËÁõ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¿É¼Ç¿¡ ºÎÀûÀýÇÑ Àμö°¡ ÁöÁ¤µÇ¾ú½À´Ï´Ù "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
@@ -1588,45 +1589,59 @@ msgstr "%s(
 msgid "error creating temporary file %s\n"
 msgstr "ÀӽàÆÄÀÏ %s(À»)¸¦ »ý¼ºÇϴ µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ÀÌ RPM ¹öÀüÀº ÆÐŰ¡ ¹öÀü '1' À» Áö¿øÇÏÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ÀÌ RPM ¹öÀüÀº ÁÖ ¹øÈ£(major number)°¡ <= 4 ÀΠÆÐŰ¡ ¸¸À» Áö¿øÇÕ´Ï´Ù\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignatureÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: À¯È¿ÇÑ ¼­¸íÀÌ ¾ø½À´Ï´Ù\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLeadÀÌ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "Á¦¿Ü½Ãų °æ·Î´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
@@ -2014,7 +2029,7 @@ msgstr "
 msgid "don't verify files in package"
 msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
@@ -2182,8 +2197,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "%s(À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -2197,7 +2212,7 @@ msgstr "%s(
 msgid "old format source packages cannot be queried\n"
 msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s(¿Í)°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
@@ -2267,7 +2282,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
@@ -2394,6 +2409,40 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä»çÇ×(³»¿ª)ÀÌ ¸¸Á·ÇÏÁö ¾ÊÀ½: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr "========== Àç¹èÄ¡\n"
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d Á¦¿Ü  %s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "Áغñ Áß..."
@@ -2402,82 +2451,83 @@ msgstr "
 msgid "Preparing packages for installation..."
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... %s(À¸)·Î\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "(+%d,-%d) ÆÐÅ°Áö¸¦ %sÀ¸·Î ·Ñ¹é(rollback)ÇÕ´Ï´Ù"
@@ -2487,6 +2537,38 @@ msgstr "(+%d,-%d) 
 msgid "read failed: %s (%d)\n"
 msgstr "Àдµ¥ ½ÇÆÐÇÔ: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3029,8 +3111,8 @@ msgstr "%s 
 msgid "no dbpath has been set\n"
 msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -3041,137 +3123,137 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: ¼Õ»óµÈ Çì´õ #%u(ÀÌ)°¡ º¹±¸(retrieved)µÇ¾ú½À´Ï´Ù, »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: 0x%xÀÇ Çì´õ¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "%2$s À妽º¿¡¼­ \"%1$s\"(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%2$s À妽º¿¡¼­ %1$d Ç׸ñµé(entries)À» »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 "%3$s À妽º¿¡¼­ \"%2$s\" ·¹Äڵ带 ¾ò´Â µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "%3$s¿¡¼­ %2$s ·¹Äڵ带 »èÁ¦Çϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "»õ·Î¿î ÆÐÅ°Áö¸¦ ¹èÄ¡Çϴ µµÁß ¿À·ù(%d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%2$s À妽º¿¡ \"%1$s\"(À»)¸¦ Ãß°¡ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%2$s À妽º¿¡ %1$d Ç׸ñµé(entries)À» Ãß°¡ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "%3$s(À¸)·Î %2$s ·¹Äڵ带 ÀúÀåÇϴ µµÁß ¿À·ù(%1$d)°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "db3¸¦ À籸ÃàÇÑ ÈÄ¿¡ %s(À»)¸¦ »èÁ¦ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "db°æ·Î°¡ ¼³Á¤µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "%2$s¿¡ %1$s µ¥ÀÌÅͺ£À̽º¸¦ À籸Ãà ÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "Àӽ൥ÀÌÅͺ£À̽º %s(ÀÌ)°¡ À̹̠Á¸ÀçÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÔ: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "dbapi %d·Î ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "dbapi %d·Î »õ·Î¿î µ¥ÀÌÅͺ£À̽º¸¦ ¿±´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "µ¥ÀÌÅͺ£À̽ºÀÇ ·¹Äڵ堹øÈ£ %u(ÀÌ)°¡ À߸øµÇ¾ú½À´Ï´Ù -- »ý·«ÇÕ´Ï´Ù.\n"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "%u¿¡ Ã³À½ºÎÅÍ ·¹Äڵ带 Ãß°¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "µ¥ÀÌÅͺ£À̽º¸¦ À籸ÃàÇϴµ¥ ½ÇÆÐÇÔ: ¿øº» µ¥ÀÌÅͺ£À̽º´Â ±×´ë·Î À¯ÁöµË´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "ÀÌÀü µ¥ÀÌÅͺ£À̽º¸¦ »õ·Î¿î µ¥ÀÌÅͺ£À̽º·Î ±³Ã¼Çϴµ¥ ½ÇÆÐÇß½À´Ï´Ù!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "º¹±¸Çϱâ À§ÇØ $2$sÀÇ ÆÄÀÏÀ» $1$sÀÇ ÆÄÀϷΠ±³Ã¼ÇÕ´Ï´Ù"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »èÁ¦ÇÕ´Ï´Ù\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s µð·ºÅ丮¸¦ »èÁ¦Çϴµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -3384,6 +3466,73 @@ msgstr "URL 
 msgid "failed to create %s: %s\n"
 msgstr "%s(À»)¸¦ »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "¸ðµç rpm ¸ðµå¿¡¼­ÀÇ ÀϹÝÀûÀΠ¿É¼Ç:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "<º»¹®>ÀÇ ³»¿ë(value)À¸·Î <À̸§> ¸ÅÅ©·Î¸¦ Á¤ÀÇÇÕ´Ï´Ù"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<À̸§> <º»¹®>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<Ç¥Çö½Ä>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "ÀÌ ÆÐÅ°ÁöµéÀ» Á¦°ÅÇÒ °æ¿ì ÀÇÁ¸¼ºÀÌ ±úÁú ¼ö ÀÖÀ½:\n"
 
@@ -3992,9 +4141,6 @@ msgstr "%s(
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "rpm °ËÁõ ¸ðµå (legacy)"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "%s/packages.rpmÀ» ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
@@ -4004,27 +4150,6 @@ msgstr "%s(
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "GPG¸¦ »ç¿ëÇÏ¿© ¼­¸íÀ» »ý¼ºÇÕ´Ï´Ù.\n"
 
-#~ msgid "========== relocations\n"
-#~ msgstr "========== Àç¹èÄ¡\n"
-
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "%5d Á¦¿Ü  %s\n"
-
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index ab443a1..cf79358 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2001-06-27 12:24+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <no@li.org>\n"
@@ -74,252 +74,253 @@ msgstr "feil under lesing av header fra pakke\n"
 msgid "cannot re-open payload: %s\n"
 msgstr "kan ikke gjenåpne \"payload\": %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "skriv ut hvilken versjon av rpm som brukes"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "gi mindre detaljert info"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "gi mer detaljert info"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "definer makro <navn> med verdi <kropp>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<navn> <kropp>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "skriv ut makroutvidelsen av <uttr>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<uttr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "send stdout til <kmd>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<kmd>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "bruk <katalog> som toppnivåkatalog"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<kat>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "les <fil:...> i stedet for standard makrofil(er)"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<fil:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "les <fil:...> i stedet for standard rpmrc-fil(er)"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "vis endelig rpmrc og makrokonfigurasjon"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "slå av bruk av libio(3) API"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "feilsøking på protokoll-datastrøm"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "feilsøk rpmio I/U"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "feilsøk URL-cache håndtering"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versjon %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright © 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 "Dette progeammet kan redistribueres fritt under betingelsene gitt i GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Bruk: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Bruk -e eller --erase i stedet.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Intern feil i argumentprosesseringen (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "kun ett større modi kan spesifiseres"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "én type spørring/verifisering kan utføres om gangen"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "uventede flagg for spørring"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "ventet spørringsformat"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "uventet spørringskilde"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath oppgitt for operasjon som ikke bruker en database"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "kun installasjon, oppgradering, rmsource og rmspec kan tvinges"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "filer kan kun omplasseres under pakkeinstallasjon"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "kune en av --prefix eller --relocate kan brukes"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate og --excludepath kan kun brukes ved installasjon av nye pakker"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan kun brukes ved installasjon av nye pakker"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenter til --prefix må begynne med en /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -327,7 +328,7 @@ msgstr ""
 "skript som slår av alternativer kan kun spesifiseres under pakkeinstallasjon "
 "og sletting"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -335,100 +336,100 @@ msgstr ""
 "alternativer som slår av utløsing  kan kun spesifiseres under "
 "pakkeinstallasjon, og sletting"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "ingen filer å signere\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan ikke aksessere fil %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp ikke funnet: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Skriv inn passord: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Passordsjekk feilet\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Passord er ok.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "kjøring feilet\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "ingen pakkefiler oppgitt for ombygging"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "ingen spec-fil oppgitt for bygging"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "ingen tar-fil oppgitt for bygging"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ingen pakker oppgitt for installering"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "ingen pakker oppgitt for installering"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "ingen argumenter oppgitt for spørring"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "ingen argumenter oppgitt for verifisering"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "uventede argumenter til --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "ingen argumenter oppgitt for spørring"
@@ -1587,45 +1588,59 @@ msgstr "%s opprettet som %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "feil under oppretting av midlertidig fil %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature feilet\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tilgjengelig\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead feilet\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "les <fil:...> i stedet for standard makrofil(er)"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "eksluderingssti må begynne med en /"
@@ -2011,7 +2026,7 @@ msgstr "ikke verifiser modus for filer"
 msgid "don't verify files in package"
 msgstr "ikke verifiser filer i pakke"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
@@ -2173,8 +2188,8 @@ msgstr "pakken har verken fileier eller id-lister\n"
 msgid "can't query %s: %s\n"
 msgstr "kan ikke spørre på %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "feil under åpning av %s: %s\n"
@@ -2188,7 +2203,7 @@ msgstr "sp
 msgid "old format source packages cannot be queried\n"
 msgstr "kildepakker i gammelt format kan ikke spørres\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakke utløser %s\n"
@@ -2257,7 +2272,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
@@ -2380,6 +2395,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "eksluderer %s %s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d omplasser %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "ekskluderer multilib-sti %s%s\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "eksluderer %s %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "relokerer %s til %s\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "relokerer katalog %s til %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "Forbereder..."
@@ -2388,82 +2437,83 @@ msgstr "Forbereder..."
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker for installasjon..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Henter %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hopper over %s - overføring feilet - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "fil %s trenger en nyere versjon av RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2473,6 +2523,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "lesing feilet: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3004,8 +3086,8 @@ msgstr "kan ikke 
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -3015,134 +3097,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "feil(%d) under fjerning av post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "feil(%d) under fjerning av post %s fra %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "feil(%d) under lagring av post %s til %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3354,6 +3436,71 @@ msgstr "url-port m
 msgid "failed to create %s: %s\n"
 msgstr "kunne ikke opprette %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "verifiser pakkesignatur"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "ikke verifiser pakkeavhengigheter"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "verifiser pakkesignatur"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: lesing av manifest feilet: %s\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "definer makro <navn> med verdi <kropp>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<navn> <kropp>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<uttr>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
 
@@ -3906,27 +4053,9 @@ msgstr "kunne ikke opprette %s: %s\n"
 #~ msgid "package %s conflicts: %s\n"
 #~ msgstr "pakke %s er i konflikt: %s\n"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: lesing av manifest feilet: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "kan ikke åpne %s/packages.rpm\n"
 
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d omplasser %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "ekskluderer multilib-sti %s%s\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "eksluderer %s %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "relokerer %s til %s\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "relokerer katalog %s til %s\n"
-
 #~ msgid "cannot get %s lock on database\n"
 #~ msgstr "kan ikke åpne pakkedatabase i %s\n"
 
index 8ac31b2..b5fe5d5 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 1999-05-25 17:00+0100\n"
 "Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
 "Language-Team: Polish <pl@li.org>\n"
@@ -81,270 +81,270 @@ msgstr "b
 msgid "cannot re-open payload: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "przeka¿ standartowe wyj¶cie do <komenda>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "u¿yj <katalogu> jako katalogu najwy¿szego poziomu"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 #, fuzzy
 msgid "Signature options:"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM wersja %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Program mo¿e byæ swobodnie rozpowszechniany na warunkach licencji GNU"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "U¿ycie: rpm {--help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "U¿yj -e lub --erase\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "tylko jeden typ odpytywania/sprawdzania mo¿na wykonaæ na raz"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate i --excludepath mo¿na u¿yæ tylko w trakcie instalacji nowych "
 "pakietów"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¿na u¿yæ tylko w trakcie instalacji nowych pakietów"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¿na u¿yæ tylko w trakcie instalacji lub usuwania pakietów"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -353,14 +353,14 @@ msgstr ""
 "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub "
 "sprawdzania pakietów"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub budowania pakietów"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -368,82 +368,82 @@ msgstr ""
 "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania "
 "pakietów lub przebudowywania bazy"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "brak dostêpu do pliku %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "nie znaleziono pgp: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Podaj has³o: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Weryfikacja has³a nieudana\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Has³o jest prawid³owe.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "nie podano nazw pakietów do przebudowania"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "nie podano nazw plików spec do budowania"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "nie podano nazw plików tar do budowania"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "nie podano argumentów dla sprawdzania"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "nieoczekiwane argumenty dla --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "nie podano argumentów dla trybu zapytañ"
@@ -1632,49 +1632,62 @@ msgstr "ostrze
 msgid "error creating temporary file %s\n"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Sygnatura nie jest dostêpna\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "¶cie¿ki wy³±czeñ musz± siê zaczynaæ od /"
@@ -2087,7 +2100,7 @@ msgstr "nie sprawdzaj plik
 msgid "don't verify files in package"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
@@ -2255,8 +2268,8 @@ msgstr "pakiet nie ma ani w
 msgid "can't query %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
@@ -2270,7 +2283,7 @@ msgstr "odpytywanie %s nie powiod
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
@@ -2340,7 +2353,7 @@ msgstr "numer rekordu pakietu: %d\n"
 msgid "record %u could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
@@ -2466,6 +2479,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "Ten OS nie jest wspierany: %s"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "przesuwanie %s do %s\n"
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "wy³±czanie %s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "wy³±czanie %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "przesuwanie %s do %s\n"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "przesuwanie %s do %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2475,82 +2522,83 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "¦ci±ganie %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2560,6 +2608,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "odczyt nie powiód³ siê: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3104,8 +3184,8 @@ msgstr "nie mo
 msgid "no dbpath has been set\n"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "b³±d pobierania rekordu %s z %s"
@@ -3115,135 +3195,135 @@ msgstr "b
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "usuwanie indeksu grupy\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "usuwanie indeksu nazw\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "b³±d usuwania rekordu %s z %s"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "b³±d szukania pakietu %s\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "odbudowywujê bazê danych w rootdir %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "tymczasowa baza danych %s ju¿ istnieje"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otwieranie starej bazy danych\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otwieranie nowej bazy danych\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
@@ -3459,6 +3539,63 @@ msgstr "port musi by
 msgid "failed to create %s: %s\n"
 msgstr "utworzenie %s nie powiod³o siê\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "sprawd¼ sygnaturê pakietu"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "nie sprawdzaj zale¿no¶ci pakietu"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "sprawd¼ sygnaturê pakietu"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "tworzenie katalogu: %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: readLead nie powiod³o siê\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
 
@@ -4073,10 +4210,6 @@ msgstr "utworzenie %s nie powiod
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "tryb odpytywania"
 
-#, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: readLead nie powiod³o siê\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
@@ -4089,29 +4222,6 @@ msgstr "utworzenie %s nie powiod
 #~ msgstr "Generowanie sygnatury: %d\n"
 
 #, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "Ten OS nie jest wspierany: %s"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "przesuwanie %s do %s\n"
-
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "wy³±czanie %s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "wy³±czanie %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "przesuwanie %s do %s\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "przesuwanie %s do %s\n"
-
-#, fuzzy
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 6f31426..6d0628c 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2002-02-14 10:51+0000\n"
 "Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
 "Language-Team: pt <morais@kde.org\n"
@@ -74,255 +74,256 @@ msgstr "erro ao ler o cabe
 msgid "cannot re-open payload: %s\n"
 msgstr "não consigo aceder de novo ao conteúdo: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "imprime a versão do RPM que está a usar"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "devolver um resultado menos detalhado"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "devolver um resultado mais detalhado"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "define a macro <nome> com o valor <conteúdo>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<nome> <cabeç>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "imprimir a expansão da macro <expr>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "manda o stdout para <cmd>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<com>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "usa <dir> como a directoria de topo"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<dir>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "ler o <fich:...> em vez do(s) ficheiro(s) de macros por omissão"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<fich:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "ler o <fich:...> em vez do(s) ficheiro(s) rpmrc por omissão"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "mostra a configuração final do rpmrc e das macros"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "desactivar o uso da API da libio(3)"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "depurar a sequência de dados do protocolo"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "depurar a E/S da rpmio"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "depurar a gestão da 'cache' de URLs"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "Opções de pesquisa (com o -q ou o --query):"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "Opções de verificação (com o -V ou o --verify):"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "Opções de assinatura:"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "Opções da base de dados:"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr "Opções de criação com [ <fich spec> | <fich tar> | <pacote fonte> ]:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr "Opções de Instalação/Actualização/Remoção:"
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "Opções comuns para todos os modos do rpm:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versão %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 "Este programa pode ser distribuído livremente sob os termos da GPL da GNU"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Utilização: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "A opção --rcfile foi eliminada.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Usar o \"--macros <fich:...>\" em alternativa.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Erro interno no processamento de argumentos (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "só pode ser especificado um 'major mode'"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "só pode ser realizado um tipo de pesquisa/verificação de cada vez"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "opções de pesquisa inesperadas"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "formato de pesquisa inesperado"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "origem de pesquisa inesperada"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "o --dbpath foi usado numa operação que não precisa duma base de dados"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "só a instalação, a actualização, o rmsource e o rmpspec podem ser forçados"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 "os ficheiros só podem ser mudados de sítio durante a instalação do pacote"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "só uma das opções --prefix ou --relocate pode ser usada"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "o --relocate e o --excludepath só podem ser usados ao instalar pacotes novos"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "o --prefix só pode ser usado ao instalar pacotes novos"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "os argumentos do --prefix têm de começar por /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "o --hash (-h) só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "o --percent só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "o --replacefiles só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "o --replacepkgs só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "o --excludedocs  só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "o --includedocs  só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "só uma das opções --excludedocs e --includedocs pode ser usada"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "o --ignorearch só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "o --ignoreos só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "o --ignoresize só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "o --allmatches só pode ser indicado ao apagar o pacote"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "o --allfiles só pode ser indicado durante a instalação do pacote"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "o --justdb só pode ser indicado durante a instalação ou a remoção do pacote"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -330,7 +331,7 @@ msgstr ""
 "a desactivação de 'scripts' só pode ser indicado durante a instalação ou a "
 "remoção de pacotes"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -338,7 +339,7 @@ msgstr ""
 "a desactivação dos 'triggers' só pode ser usado durante a instalação ou "
 "remoção de pacotes"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -346,7 +347,7 @@ msgstr ""
 "o --nodeps só pode ser indicado durante a criação, reconstrução, "
 "recompilação, instalação, remoção ou verificação do pacote"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -354,7 +355,7 @@ msgstr ""
 "o --test só pode ser indicado durante a instalação, remoção ou criação do "
 "pacote"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -362,81 +363,81 @@ msgstr ""
 "o --root (-r) só pode ser indicado durante a instalação, remoção ou pesquisa "
 "do pacote ou na reconstrução da base de dados"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "os argumentos do --root (-r) têm de começar por /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "não existem ficheiros a assinar\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "não consigo aceder ao ficheiro %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp não encontrado: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Indique a palavra-chave: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "A verificação da palavra-chave falhou\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "A palavra-chave está correcta.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Spec %%_signature inválido no ficheiro de macros.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "o --sign só pode ser usado na criação do pacote"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "o exec falhou\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "não foram indicados pacotes para a reconstrução"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "não foram indicados ficheiros spec para a criação"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "não foram indicados ficheiros tar para a criação"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr "não foram indicados pacotes para apagar"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "não foram indicados pacotes para instalar"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "não foram indicados argumentos para a pesquisa"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "não foram indicados argumentos para a verificação"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos inesperados no --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "não foram indicados argumentos para a pesquisa"
@@ -1605,45 +1606,59 @@ msgstr "%s criado como %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "erro ao criar o ficheiro temporário %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "a versão 1 dos pacotes não é suportada por esta versão do RPM\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "só os pacotes com versão <= 4 são suportados por esta versão do RPM\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: o rpmReadSignature falhou\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Nenhuma assinatura disponível\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr ":%s: o readLead falhou\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: O fread falhou: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "ler o <fich:...> em vez do(s) ficheiro(s) de macros por omissão"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "as directorias de exclusão têm de começar por /"
@@ -2029,7 +2044,7 @@ msgstr "n
 msgid "don't verify files in package"
 msgstr "não verificar os ficheiros no pacote"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "não verificar as dependências do pacote"
 
@@ -2194,8 +2209,8 @@ msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
 msgid "can't query %s: %s\n"
 msgstr "não consigo pesquisar o %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "o acesso ao %s falhou: %s\n"
@@ -2210,7 +2225,7 @@ msgid "old format source packages cannot be queried\n"
 msgstr ""
 "os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nenhum pacote coincide com %s: %s\n"
@@ -2279,7 +2294,7 @@ msgstr "n
 msgid "record %u could not be read\n"
 msgstr "o registo %u não pôde ser lido\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "o pacote %s não está instalado\n"
@@ -2406,6 +2421,40 @@ msgstr "  %s     A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "o pacote %s tem requisitos não satisfeitos: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr "========== mudanças de local\n"
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d excluir o %s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d mudar de local %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "a exclur a directoria 'multilib' %s%s\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "a excluir o %s %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "a mudar o %s para %s\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "a mudar a directoria %s para %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "A preparar..."
@@ -2414,82 +2463,83 @@ msgstr "A preparar..."
 msgid "Preparing packages for installation..."
 msgstr "A preparar os pacotes para a instalação..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "A obter o %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... como %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "a ignorar o %s - a transferência falhou - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "o pacote %s não pode ser mudado de sítio\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "erro ao ler do ficheiros %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "o %s precisa duma versão mais recente do RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "o %s não pode ser instalado\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "encontrados %d pacotes com código-fonte e %d binários\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "dependências falhadas:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "a instalar os pacotes binários\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "não consigo aceder ao ficheiro %s: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "o \"%s\" especifica vários pacotes\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "não consigo aceder ao %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "A instalar o %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s"
@@ -2499,6 +2549,38 @@ msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s"
 msgid "read failed: %s (%d)\n"
 msgstr "a leitura falhou: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3038,8 +3120,8 @@ msgstr "n
 msgid "no dbpath has been set\n"
 msgstr "não foi definido o dbpath\n"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
@@ -3049,135 +3131,135 @@ msgstr "erro(%d) ao obter os registos \"%s\" do 
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: recebida instância do cabeçalho #%u estragada, a ignorar.\n"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: não consigo ler o cabeçalho em 0x%x\n"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "a remover o \"%s\" do índice %s.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "a remover %d registos do índice %s.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "erro(%d) ao obter os registos \"%s\" do índice %s\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "erro(%d) ao remover o registo %s do %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "erro(%d) ao criar uma nova instância do pacote\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "a adicionar o \"%s\" ao índice %s.\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "a adicionar %d registos ao índice %s.\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "erro(%d) ao guardar o registo %s em %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "a remover o %s depois duma reconstrução bem sucedida do db3.\n"
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "não foi definido o dbpath"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "a reconstruir a base de dados %s em %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "A base de dados temporária %s já existe\n"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr "a criar a directoria %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "a criar a directoria %s: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "a abrir a base de dados antiga com a dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "a abrir a base de dados nova com a dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "o número do registo %u na base de dados está errado -- a ignorar.\n"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "não consigo adicionar o registo originalmente em %u\n"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "falhou a reconstrução da base de dados: a base de dados original mantém-se\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "falhou a substituição da base de dados antiga pela nova!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "substituir os ficheiros em %s por ficheiros de %s a recuperar"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr "a remover a directoria %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "falhou a remoção da directoria %s: %s\n"
@@ -3389,6 +3471,73 @@ msgstr "o porto do URL tem de ser um n
 msgid "failed to create %s: %s\n"
 msgstr "não consegui criar o %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "verificar a assinatura do pacote"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "não verificar as dependências do pacote"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "verificar a assinatura do pacote"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "a criar a directoria %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: a leitura do manifesto falhou: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "Opções comuns para todos os modos do rpm:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "define a macro <nome> com o valor <conteúdo>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<nome> <cabeç>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<expr>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "a remoção destes pacotes irá quebrar dependências:\n"
 
@@ -3992,9 +4141,6 @@ msgstr "n
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "modo de verificação do rpm (antigo)"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: a leitura do manifesto falhou: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "não consigo abrir %s/packages.rpm\n"
 
@@ -4004,27 +4150,6 @@ msgstr "n
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "A gerar a assinatura usando o PGP.\n"
 
-#~ msgid "========== relocations\n"
-#~ msgstr "========== mudanças de local\n"
-
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "%5d excluir o %s\n"
-
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d mudar de local %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "a exclur a directoria 'multilib' %s%s\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "a excluir o %s %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "a mudar o %s para %s\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "a mudar a directoria %s para %s\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index f018046..c7ec33e 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 
 #: build.c:40
 #, fuzzy
@@ -77,114 +77,114 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "mostra a verso do programa rpm sendo usado"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "mostra a verso do programa rpm sendo usado"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "envia a saida padro para <cmd>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "use <diretrio> como diretrio raiz"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 # , c-format
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
@@ -197,160 +197,160 @@ msgstr "No consegui ler o arquivo spec de %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verso %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 "Este Software pode ser livremente redistribuido sob os termos da Licensa "
 "Pblica GNU (GPL)"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "uso: rpm {--help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Use -e ou --erase no lugar.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "somente um modo principal pode ser especificado"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "um tipo de pesquisa/verificao pode ser feita por vez"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath passado para uma operao que no usa um banco de dados"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "somente instalao e atualizao podem ser foradas"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix somente pode ser usada quando se est instalando novos pacotes"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumentos para --prefix devem comear com uma /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) somente podem ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--excludedocs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--includedocs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--ignorearch somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--allmatches somente pode ser especificado durante desinstalaes de pacotes"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -359,7 +359,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -368,7 +368,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -377,7 +377,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalaes e verificaes "
 "de pacotes"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -385,7 +385,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -393,84 +393,84 @@ msgstr ""
 "--root (-r) somente pode ser especificado durante [des]instalaes, pesquisas "
 "e reconstruo de bancos de dados"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumentos para --root (-r) devem comear com uma /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 #, fuzzy
 msgid "pgp not found: "
 msgstr "no foi passado pacote para desinstalao"
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Checagem de pass phrase falhou\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Pass phrase ok.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign somente pode ser usado durante a construo de pacotes"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Construo falhou.\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "no foram passados pacotes para reconstruo"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "no foi passado arquivo spec para construo"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "no foram passados arquivos tar para construo"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "no foi passado argumento para pesquisa"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "no foi passado argumento para verificao"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos no esperados em --querytags"
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "no foi passado argumento para pesquisa"
@@ -1750,47 +1750,60 @@ msgstr "No consegui abrir: %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
 # , c-format
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
 # , c-format
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 #, fuzzy
 msgid "exclude paths must begin with a /"
@@ -2212,7 +2225,7 @@ msgstr "instale pacote"
 msgid "don't verify files in package"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "no verifique as dependncias do pacote"
@@ -2384,8 +2397,8 @@ msgstr "no foi passado pacote para instalao"
 msgid "can't query %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "Construo falhou.\n"
@@ -2399,7 +2412,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "no foram passados pacotes para assinatura"
@@ -2470,7 +2483,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
@@ -2602,6 +2615,67 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+# "Project-Id-Version: rpm-2.5.3\n"
+# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
+# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
+# "Language-Team: Portuguese <pt@li.org>\n"
+# "MIME-Version: 1.0\n"
+# "Content-Type: text/plain; charset=ISO-8859-1\n"
+# "Content-Transfer-Encoding: 8-bit\n"
+# , c-format
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "RPM verso %s\n"
+
+# , c-format
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "No consegui abrir: %s\n"
+
+# "Project-Id-Version: rpm-2.5.3\n"
+# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
+# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
+# "Language-Team: Portuguese <pt@li.org>\n"
+# "MIME-Version: 1.0\n"
+# "Content-Type: text/plain; charset=ISO-8859-1\n"
+# "Content-Transfer-Encoding: 8-bit\n"
+# , c-format
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "RPM verso %s\n"
+
+# "Project-Id-Version: rpm-2.5.3\n"
+# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
+# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
+# "Language-Team: Portuguese <pt@li.org>\n"
+# "MIME-Version: 1.0\n"
+# "Content-Type: text/plain; charset=ISO-8859-1\n"
+# "Content-Transfer-Encoding: 8-bit\n"
+# , c-format
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "RPM verso %s\n"
+
+# , c-format
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "No consegui abrir: %s\n"
+
+# , c-format
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "No consegui abrir: %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2619,85 +2693,86 @@ msgstr "no foi passado pacote para instalao"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM verso %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lista dependncias do pacote"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
 # , c-format
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "no foi passado pacote para desinstalao"
@@ -2708,6 +2783,38 @@ msgstr "no foi passado pacote para desinstalao"
 msgid "read failed: %s (%d)\n"
 msgstr "No consegui abrir: %s\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3268,8 +3375,8 @@ msgid "no dbpath has been set\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "No consegui abrir: %s\n"
@@ -3280,133 +3387,133 @@ msgstr "No consegui abrir: %s\n"
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
 # , c-format
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
@@ -3419,13 +3526,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -3640,6 +3747,65 @@ msgstr ""
 msgid "failed to create %s: %s\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "verifique a assinatura do pacote"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "no verifique as dependncias do pacote"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "verifique a assinatura do pacote"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+# , c-format
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "No consegui abrir: %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+# , c-format
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "No consegui abrir: %s\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #, fuzzy
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "lista dependncias do pacote"
@@ -4206,11 +4372,6 @@ msgstr "No consegui abrir o pipe tar: %s\n"
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "modo pesquisa"
 
-# , c-format
-#, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "No consegui abrir: %s\n"
-
 #, fuzzy
 #~ msgid "Generating signature using PGP.\n"
 #~ msgstr "gere assinatura PGP"
@@ -4219,52 +4380,6 @@ msgstr "No consegui abrir o pipe tar: %s\n"
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "gere assinatura PGP"
 
-# "Project-Id-Version: rpm-2.5.3\n"
-# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
-# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
-# "Language-Team: Portuguese <pt@li.org>\n"
-# "MIME-Version: 1.0\n"
-# "Content-Type: text/plain; charset=ISO-8859-1\n"
-# "Content-Transfer-Encoding: 8-bit\n"
-# , c-format
-#, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "RPM verso %s\n"
-
-# , c-format
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "No consegui abrir: %s\n"
-
-# "Project-Id-Version: rpm-2.5.3\n"
-# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
-# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
-# "Language-Team: Portuguese <pt@li.org>\n"
-# "MIME-Version: 1.0\n"
-# "Content-Type: text/plain; charset=ISO-8859-1\n"
-# "Content-Transfer-Encoding: 8-bit\n"
-# , c-format
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "RPM verso %s\n"
-
-# "Project-Id-Version: rpm-2.5.3\n"
-# "PO-Revision-Date: 1997-09-11 14:00 MET DST\n"
-# "Last-Translator: Arnaldo Carvalho de Melo <acme@conectiva.com.br>\n"
-# "Language-Team: Portuguese <pt@li.org>\n"
-# "MIME-Version: 1.0\n"
-# "Content-Type: text/plain; charset=ISO-8859-1\n"
-# "Content-Transfer-Encoding: 8-bit\n"
-# , c-format
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "RPM verso %s\n"
-
-# , c-format
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "No consegui abrir: %s\n"
-
 #, fuzzy
 #~ msgid "opening db file        %s mode 0x%x\n"
 #~ msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
index 1667f3a..461dd63 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 1999-04-10 12:00+EST\n"
 "Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
 "Language-Team: Romanian <ro@li.org>\n"
@@ -73,353 +73,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1564,45 +1564,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1974,7 +1987,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2131,8 +2144,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2146,7 +2159,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2215,7 +2228,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2338,6 +2351,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2346,81 +2393,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2430,6 +2478,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2957,8 +3037,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2968,134 +3048,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3306,3 +3386,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 909d550..e0ef4ed 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -79,353 +79,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1570,45 +1570,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1980,7 +1993,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2137,8 +2150,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2152,7 +2165,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2221,7 +2234,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2344,6 +2357,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2352,81 +2399,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2436,6 +2484,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2963,8 +3043,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2974,134 +3054,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3312,3 +3392,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index b32007e..c1cda1c 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2002-04-09 16:44-0400\n"
 "Last-Translator: Eugene Kanter, <eugene@bcl.bz>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -76,258 +76,259 @@ msgstr "
 msgid "cannot re-open payload: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏ×ÔÏÒÎÏ ÏÔËÒÙÔØ payload: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "×Ù×ÅÓÔÉ ÎÏÍÅÒ ×ÅÒÓÉÉ ÜÔÏÊ ÐÒÇÒÁÍÍÙ"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "×Ù×ÏÄÉÔØ ÍÉÎÉÍÕÍ ÓÏÏÂÝÅÎÉÊ"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "×Ù×ÏÄÉÔØ ÂÏÌÅÅ ÄÅÔÁÌØÎÙÅ ÓÏÏÂÝÅÎÉÑ"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "ÏÐÒÅÄÅÌÉÔØ ÍÁËÒÏÓ <ÉÍÑ> ÓÏ ÚÎÁÞÅÎÉÅÍ <ÐÏÄÓÔÁÎÏ×ËÁ>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<ÉÍÑ> <ÐÏÄÓÔÁÎÏ×ËÁ>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "×Ù×ÅÓÔÉ ÚÎÁÞÅÎÉÅ ÍÁËÒÏÓÁ <ÉÍÑ>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<ÉÍÑ>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × <cmd>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<ËÏÍÁÎÄÁ>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<ËÁÔÁÌÏÇ>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÍÁËÒÏÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<ÆÁÊÌ:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÏ ÕÍÏÌÞÁÎÉÀ"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "ÐÏËÁÚÁÔØ ÔÅËÕÝÅÅ ÚÎÁÞÅÎÉÅ rpmrc É ÍÁËÒÏÓÏ×"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "ÚÁÐÒÅÔÉÔØ ÉÓÐÏÌØÚÏ×ÁÎÉÅ libio(3) API"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "ÏÔÌÁÄËÁ ÐÒÏÔÏËÏÌÁ ÐÏÔÏËÁ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "ÏÔÌÁÄËÁ ÐÒÏÃÅÓÓÁ ××ÏÄÁ/×Ù×ÏÄÁ rpmio"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ URL ËÜÛ"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "ðÁÒÁÍÅÔÒÙ ÚÁÐÒÏÓÁ (Ó -q ÉÌÉ --query):"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "ðÁÒÁÍÅÔÒÙ ÐÒÏ×ÅÒËÉ (Ó -V ÉÌÉ --verify):"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "ðÁÒÁÍÅÔÒÙ ÐÏÄÐÉÓÉ:"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "ðÁÒÁÍÅÔÒÙ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "ðÁÒÁÍÅÔÒÙ ÓÂÏÒËÉ Ó [ <ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ> | <ÔÁÒ ÁÒÈÉ×> | <ÉÓÈÏÄÎÙÊ ÐÁËÅÔ> ]:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr "ðÁÒÁÍÅÔÒÙ õÓÔÁÎÏ×ËÉ/ïÂÎÏ×ÌÅÎÉÑ/õÄÁÌÅÎÉÑ:"
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "ïÂÝÉÅ ÐÁÒÁÍÅÔÒÙ ÄÌÑ ×ÓÅÈ ÒÅÖÉÍÏ×:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ×ÅÒÓÉÑ %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "üÔÕ ÐÒÏÇÒÁÍÍÕ ÍÏÖÎÏ Ó×ÏÂÏÄÎÏ ÒÁÓÐÒÏÓÔÒÁÎÑÔØ ÎÁ ÕÓÌÏ×ÉÑÈ GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "×ÁÒÉÁÎÔ --rcfile ÂÏÌØÛÅ ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "÷ÍÅÓÔÏ ÜÔÏÇÏ ÉÓÐÏÌØÚÕÊÔÅ \"--macros <ÆÁÊÌ:...>\".\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÚÁ ÏÄÉΠÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅΠÔÏÌØËÏ ÏÄÉΠÔÉРÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÆÌÁÇÉ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "ÐÁÒÁÍÅÔÒ --dbpath ÚÁÄÁΠÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× "
 "É ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ×ÁÒÉÁÎÔÏ× --prefix ÉÌÉ --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "×ÁÒÉÁÎÔÙ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ "
 "ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "×ÁÒÉÁÎÔ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÐÁÒÁÍÅÔÒÏ× --excludedocs ÉÌÉ --"
 "includedocs"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -335,7 +336,7 @@ msgstr ""
 "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÓÃÅÎÁÒÉÅ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ "
 "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -343,7 +344,7 @@ msgstr ""
 "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÔÒÉÇÇÅÒÏ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ "
 "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ(Ï×)"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -351,14 +352,14 @@ msgstr ""
 "--nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÐÒÏ×ÅÒËÉ "
 "ÐÁËÅÔÏ×"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -366,81 +367,81 @@ msgstr ""
 "--root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, ÚÁÐÒÏÓÁÈ "
 "ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "ÎÅÔ ÆÁÊÌÏ× ÄÌÑ ÐÏÄÐÉÓÉ\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp ÎÅ ÎÁÊÄÅÎ: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "÷×ÅÄÉÔÅ ËÌÀÞÅ×ÕÀ ÆÒÁÚÕ: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "îÅ×ÅÒÎÁÑ ËÌÀÞÅ×ÁÑ ÆÒÁÚÁ\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "ëÌÀÞÅ×ÁÑ ÆÒÁÚÁ ÐÒÉÎÑÔÁ.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "ÎÅ ÚÁÄÁΠÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
@@ -1610,45 +1611,59 @@ msgstr "%s 
 msgid "error creating temporary file %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ÐÁËÅÔÙ ×ÅÒÓÉÉ 1 ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÜÔÏÊ ×ÅÒÓÉÅÊ RPM\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 4\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: ðÏÄÐÉÓØ ÎÅÄÏÓÔÕÐÎÁ\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÍÁËÒÏÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "ÉÓËÌÀÞÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
@@ -2033,7 +2048,7 @@ msgstr "
 msgid "don't verify files in package"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
@@ -2196,8 +2211,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@@ -2211,7 +2226,7 @@ msgstr "
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ÎÉ ÏÄÉΠÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
@@ -2280,7 +2295,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
@@ -2407,6 +2422,40 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "ÐÁËÅÔ %s ÓÏÄÅÒÖÉÔ ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÔÒÅÂÏ×ÁÎÉÑ: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ..."
@@ -2415,82 +2464,83 @@ msgstr "
 msgid "Preparing packages for installation..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ ÐÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "ÏÔËÁÔÉÔØ (+%d,-%d) ÐÁËÅÔÙ Ë %s"
@@ -2500,6 +2550,38 @@ msgstr "
 msgid "read failed: %s (%d)\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3037,8 +3119,8 @@ msgstr "
 msgid "no dbpath has been set\n"
 msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
@@ -3048,135 +3130,135 @@ msgstr "
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: ÐÏÌÕÞÅΠÐÏ×ÒÅÖÄÅÎÎÙÊ ÚÁÇÏÌÏ×ÏË #%u, ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÅÓÔØ ÚÁÇÏÌÏ×ÏË × 0x%x\n"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ ÉÚ ÉÎÄÅËÓÁ %s.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "ÏÛÉÂËÁ(%d) ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÅÊ \"%s\" ÉÚ ÉÎÄÅËÓÁ %s\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "ÏÛÉÂËÁ(%d) ÒÅÚÅÒ×ÉÒÏ×ÁÎÉÑ ÐÁÍÑÔÉ ÄÌÑ ÏÂÒÁÚÁ ÎÏ×ÏÇÏ ÐÁËÅÔÁ\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ \"%s\" × ÉÎÄÅËÓ %s.\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "ÄÏÂÁ×ÌÑÅÔÓÑ %d ÚÁÐÉÓÅÊ × ÉÎÄÅËÓ %s\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "ÏÛÉÂËÁ(%d) ÚÁÐÉÓÉ ÚÁÐÉÓÉ %s × %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ %s ÐÏÓÌÅ ÕÓÐÅÛÎÏÇÏ ÚÁ×ÅÒÛÅÎÉÑ ÐÅÒÅÉÎÄÅËÁÃÉÉ ÂÁÚÙ × db3.\n"
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "ÐÁÒÁÍÅÔÅÒ dbpath ÎÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÅÔÓÑ ÂÁÚÁ ÄÁÎÎÙÈ %s × %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ\n"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÎÏ×ÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÞÅÒÅÚ dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %u × ÂÁÚÅ ÄÁÎÎÙÈ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %u)\n"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÄÁÎÎÙÈ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÍÅÎÉÔØ ÓÔÁÒÕÀ ÂÁÚÕ ÄÁÎÎÙÈ ÎÁ ÎÏ×ÕÀ!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "ÆÁÊÌÙ × %s ÚÁÍÅÎÑÀÔÓÑ ÆÁÊÌÁÍÉ ÉÚ %s ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr "ÕÄÁÌÑÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s\n"
@@ -3388,6 +3470,73 @@ msgstr "url 
 msgid "failed to create %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ÓÐÉÓËÁ ÆÁÊÌÏ×: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "ïÂÝÉÅ ÐÁÒÁÍÅÔÒÙ ÄÌÑ ×ÓÅÈ ÒÅÖÉÍÏ×:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "ÏÐÒÅÄÅÌÉÔØ ÍÁËÒÏÓ <ÉÍÑ> ÓÏ ÚÎÁÞÅÎÉÅÍ <ÐÏÄÓÔÁÎÏ×ËÁ>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<ÉÍÑ> <ÐÏÄÓÔÁÎÏ×ËÁ>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<ÉÍÑ>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
@@ -3986,9 +4135,6 @@ msgstr "
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "ÒÅÖÉÍ ÐÒÏ×ÅÒËÉ rpm (ÓÔÁÒÙÊ)"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ÓÐÉÓËÁ ÆÁÊÌÏ×: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ %s/packages.rpm\n"
 
@@ -3998,27 +4144,6 @@ msgstr "
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "çÅÎÅÒÉÒÕÅÔÓÑ ÐÏÄÐÉÓØ GPG.\n"
 
-#~ msgid "========== relocations\n"
-#~ msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
-
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
-
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 09721c5..a7bd1c0 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 1999-04-08 21:37+02:00\n"
 "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
 "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -74,273 +74,273 @@ msgstr "chyba pri 
 msgid "cannot re-open payload: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "vypísa» verziu pou¾ívaného rpm"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "vypísa» verziu pou¾ívaného rpm"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "posla» ¹tandardný výstup do <príkazu>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 #, fuzzy
 msgid "Signature options:"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzia %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Program mô¾e by» voµne redistribuovaný v súlade s podmienkami GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "pou¾itie: rpm {--help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "naraz mô¾e by» vykonaný jeden typ otázky alebo overenia"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "iba in¹talácia, aktualizácia a odstránenie zdrojov mô¾u by» vynútené"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "súbory mô¾u by» presunuté iba poèas inètalácie balíka"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "mo¾e by» pou¾itá iba jedna z volieb --prefix a --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate a --excludepath mô¾u by» pou¾ité iba poèas in¹talácie nových "
 "balíkov"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mô¾e by» pou¾itý iba poèas in¹talácie nových balíkov"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pre --prefix musia zaèína» znakom /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mô¾e by» pou¾itý iba poèas in¹talácie balíka"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "mô¾e by» pou¾itá iba jedna voµba z --excludedocs a --includedocs"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mô¾e by» pou¾ité iba poèas odstránenia balíkov"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -349,7 +349,7 @@ msgstr ""
 "--nodeps mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo overenia "
 "balíka"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +357,7 @@ msgstr ""
 "--test mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo zostavenia "
 "balíka"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,82 +365,82 @@ msgstr ""
 "--root (-r) mô¾e by» pou¾ité iba poèas in¹talácie a odstránenia balíka, "
 "otázky alebo znovuzostavenia databázy"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pre --root (-r) musia zaèína» znakom /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "nie je mo¾né pracova» so súborom %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp nebolo nájdené: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Kontrola hesla zlyhala\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Heslo je v poriadku.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "neboli zadané ¾iadne argumenty pre overenie"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neoèakávané argumenty pre --querytags"
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
@@ -1630,47 +1630,60 @@ msgstr "varovanie: %s vytvoren
 msgid "error creating temporary file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis nie je k dispozícii\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musia zaèína» znakom /"
@@ -2085,7 +2098,7 @@ msgstr "zobrazi
 msgid "don't verify files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "neoverova» závislosti balíka"
@@ -2253,8 +2266,8 @@ msgstr "bal
 msgid "can't query %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
@@ -2268,7 +2281,7 @@ msgstr "ot
 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:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
@@ -2338,7 +2351,7 @@ msgstr "po
 msgid "record %u could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
@@ -2464,6 +2477,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "OS je vynechaný: %s"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "presúva sa %s do %s\n"
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "vynecháva sa %s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "vynecháva sa %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "presúva sa %s do %s\n"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "presúva sa %s do %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2473,82 +2520,83 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prená¹a sa %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2558,6 +2606,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "èítanie zlyhalo: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3100,8 +3180,8 @@ msgstr "nie je mo
 msgid "no dbpath has been set\n"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
@@ -3111,135 +3191,135 @@ msgstr "chyba pri na
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "chyba pri hµadaní balíka %s\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu sa vytvára databáza v adresári %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "doèasná databáza %s u¾ existuje"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otvára sa stará databáza\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otvára sa nová databáza\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "nie je mo¾né prida» záznam pôvodne na %d"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
@@ -3455,6 +3535,63 @@ msgstr "url port mus
 msgid "failed to create %s: %s\n"
 msgstr "nepodarilo sa vytvori» %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "overi» podpis balíka"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "neoverova» závislosti balíka"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "overi» podpis balíka"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "vytvára sa adresár %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: readLead zlyhalo\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
 
@@ -4083,10 +4220,6 @@ msgstr "nepodarilo sa vytvori
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "re¾im otázok"
 
-#, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: readLead zlyhalo\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
@@ -4099,29 +4232,6 @@ msgstr "nepodarilo sa vytvori
 #~ msgstr "Vytvára sa PGP podpis: %d\n"
 
 #, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "OS je vynechaný: %s"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "presúva sa %s do %s\n"
-
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "vynecháva sa %s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "vynecháva sa %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "presúva sa %s do %s\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "presúva sa %s do %s\n"
-
-#, fuzzy
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 788b7c7..1024de7 100644 (file)
--- 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 <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.268 2002/06/29 03:17:48 jbj Exp $
+# $Id: sl.po,v 1.269 2002/07/02 13:17:01 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2000-10-08 19:05+0200\n"
 "Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -79,269 +79,269 @@ msgstr "napaka pri branju glave paketa\n"
 msgid "cannot re-open payload: %s\n"
 msgstr "ni mo¾no vnoviè odpreti (payload): %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "razlièica rpm, ki jo uporabljate"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "definirajte makro <ime> z vrednostjo <telo>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "uporabljana razlièica rpm"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "standardni izhod preusmerjen na <ukaz>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "uporabi <imenik> za korenski imenik"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "prika¾i konèni rpmrc in nastavitev makra"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 #, fuzzy
 msgid "Signature options:"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "datoteka %s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM razlièica %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Ta program je dovoljeno razpeèevati pod pogoji navedenimi v GNU GPL."
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Uporaba: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Namesto njiju uporabite -e ali --erase.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "izbran sme biti le en glavni naèin"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo en tip poizvedbe/preverjanja je mo¾en naenkrat"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "neprièakovane zastavice pri poizvedbi"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "neprièakovana oblika poizvedbe"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "neprièakovan izvor poizvedbe"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podan, vendar, èeprav nepotreben"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "--force smemo podati samo pri --install --upgrade, --rmsource in --rmspec"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "datoteke smemo premakniti samo med namestitvijo paketa"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "izbiri --prefix in --relocate se medsebojno izkljuèujeta"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "izbiri --relocate in --excludepath se lahko uporabi le pri namestitvi"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix se sme uporabiti le pri namestitvi"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti izbire --prefix se morajo zaèeti z /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sme biti podatn le ob namestitvi paketa"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "izbiri --excludedocs in --includedocs se medsebojno izkljuèujeta"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sme podan le ob namestitvi paketa"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sme biti podan le ob odstranitvi paketa"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sme biti podati le ob namestitvi paketa"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb sme biti podan le ob namestitvi ali odstranitvi paketa"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -349,14 +349,14 @@ msgstr ""
 "--nodeps sme biti podan le ob izgradnji, vnovièni izgradnji, prevajanju, "
 "namestitvi, odstranitvi ali preverjanju paketa"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test sme biti podan le ob namestitvi, odstranitvi ali izgradnji paketa"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -364,82 +364,82 @@ msgstr ""
 "--root (-r) sme biti podan le ob namestitvi, odstranitvi poizvedbi ali "
 "vnovièni izgradnji paketa"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti izbire --root (-r) se morajo zaèeti z /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "ni datotek, ki bi jih lahko podpisal\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "dostop do datoteke %s ni mo¾en\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp manjka: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Vnesite pristopno geslo: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Preverjanje pristopnega gesla neuspe¹no\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Pristopno geslo je pravo.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Neveljaven %%_signature v makro-datoteki.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign sme biti podan le ob izgradnji paketa"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "izvajanje je bilo neuspe¹no\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "paketi za vnovièno izgradnjo niso navedeni"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "datoteka spec za izgradnjo manjka"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "arhiv tar za izgradnjo manjka"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "paketi katere bi bilo potrebno namestiti niso navedeni"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "paketi katere bi bilo potrebno namestiti niso navedeni"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "argumenti za poizvedbo niso podani"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "argumenti za preverjanje niso podani"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neprièakovani argumenti za --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "argumenti za poizvedbo niso podani"
@@ -1633,47 +1633,60 @@ msgstr "opozorilo: %s ustvarjen kot %s"
 msgid "error creating temporary file %s\n"
 msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <=4"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature je bil neuspe¹en\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis ni na voljo\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "poti, ki niso obdelane, se morajo zaèeti z /"
@@ -2085,7 +2098,7 @@ msgstr "brez preverjanja datotek v paketu"
 msgid "don't verify files in package"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
@@ -2253,8 +2266,8 @@ msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 msgid "can't query %s: %s\n"
 msgstr "ni mo¾no poizvedeti o %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
@@ -2268,7 +2281,7 @@ msgstr "poizvedba po %s je bila neuspe
 msgid "old format source packages cannot be queried\n"
 msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "noben paket ne pro¾i %s\n"
@@ -2338,7 +2351,7 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
@@ -2466,6 +2479,40 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Za paket %s-%s-%s: zahteva %s ni zadovoljena\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "OS je izkljuèen: %s"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "premikanje %s v %s\n"
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "izkljuèevanje datoteke %s%s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "izkljuèevanje datoteke %s%s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "premikanje %s v %s\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "premiokanje imenika %s v %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2475,82 +2522,83 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "paketi za namestitev niso navedeni"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prena¹anje %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketa %s ni mo¾no premakniti\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "name¹èanje binarnih paketov\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veè paketov\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èanje %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2560,6 +2608,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "branje je bilo neuspe¹no: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3105,8 +3185,8 @@ msgstr "ni mo
 msgid "no dbpath has been set\n"
 msgstr "dbpath ni nastavljena"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
@@ -3116,137 +3196,137 @@ msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: ni mo¾no prebrati glave pri 0x%x"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstranjevanje \"%s\" iz kazala %s.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstranjevanje %d vnosov iz kazala %s\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "napaka(%d) pri branju zapisov \"%s\" iz kazala %s"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "napaka(%d) pri brisanju zapisa %s iz %s"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "napaka(%d) pri iskanju paketa %s\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "dodajanje \"%s\" v kazalo %s.\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "dodajanje %d vnosov v kazalo %s.\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "napaka(%d) pri pisanju zapisa %s v %s"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "dbpath ni nastavljena"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "odpiranje stare podatkovne zbirke\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "odpiramo nove podatkovne zbirke z dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "zapis ¹t. %d v zbirki je po¹kodovan -- preskoèeno."
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "zapisa ni mo¾no dodati na %d"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ponovna izgradnja podatkovne zbirke je bila neuspe¹na; stara ostaja na\n"
 "istem mestu\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "zamenjava stare podatkovne zbirke z novo je bila neuspe¹na!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "poskus povrnitve z nadomestitvijo datotek v %s z datotekami v %s"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "odstranjevanje imenika: %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspe¹na odstranitev imenika %s: %s\n"
@@ -3462,6 +3542,66 @@ msgstr "vrata URL morajo biti 
 msgid "failed to create %s: %s\n"
 msgstr "neuspe¹no ustvarjanje %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "preveri podpis paketa(-ov)"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "brez preverjanja soodvisnosti paketa"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "preveri podpis paketa(-ov)"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "ustvarjanje imenika: %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "definirajte makro <ime> z vrednostjo <telo>"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
 
@@ -4087,10 +4227,6 @@ msgstr "neuspe
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "poizvedbeni naèin (opu¹èen)"
 
-#, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "datoteke %s/packages.rpm ni mo¾no odpreti\n"
 
@@ -4101,28 +4237,6 @@ msgstr "neuspe
 #~ msgstr "Ustvarjanje podpisa z GnuPG.\n"
 
 #, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "OS je izkljuèen: %s"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "premikanje %s v %s\n"
-
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "izkljuèevanje datoteke %s%s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "izkljuèevanje datoteke %s%s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "premikanje %s v %s\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "premiokanje imenika %s v %s\n"
-
-#, fuzzy
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 716f763..e1d10a2 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -71,271 +71,271 @@ msgstr "gre
 msgid "cannot re-open payload: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "napi¹i verziju rpm-a koja se koristi"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
+#: rpmqv.c:123 lib/poptALL.c:141
 #, fuzzy
-msgid "print macro expansion of <expr>+"
+msgid "print macro expansion of EXPR"
 msgstr "napi¹i verziju rpm-a koja se koristi"
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "po¹alji standardni izlaz u <komandu>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzija %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 #, fuzzy
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Mo¾ete slobodno distribuirati dalje pod odredbama GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, fuzzy, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "kori¹æenje: {rpm --help}"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 #, fuzzy
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Koristite -e ili --erase.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "samo jedan glavni re¾im mo¾e biti naveden"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo jedan tip upita/provere mo¾e biti uraðen odjednom"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "samo instalacija i a¾uriranje mogu biti forsirane"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate mo¾ete koristiti samo kad instalirate novi paket"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti za --prefix moraju poèeti znakom /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -343,14 +343,14 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¾ete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -358,84 +358,84 @@ msgstr ""
 "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili "
 "rekreiranja baze podataka"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti za --root (-r) moraju poèeti znakom /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Neuspela provera lozinke\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Lozinka je dobra.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "nedosataje paket za rekreiranje"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "nedostaje specifikacije za kreiranje"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "nedostaju 'tar' datoteke za kreiranje"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "nedostaju argumenti za upit"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "nedostaju argumenti za proveru"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekivani argumenti za --querytags"
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "nedostaju argumenti za upit"
@@ -1618,47 +1618,60 @@ msgstr "Ne mogu da otvorim datoteku %s: "
 msgid "error creating temporary file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
 
-#: lib/package.c:195
+#: lib/package.c:232
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 #, fuzzy
 msgid "exclude paths must begin with a /"
@@ -2078,7 +2091,7 @@ msgstr "instaliraj paket"
 msgid "don't verify files in package"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
@@ -2246,8 +2259,8 @@ msgstr "paket nema imena"
 msgid "can't query %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
@@ -2261,7 +2274,7 @@ msgstr "upit nad %s neuspeo\n"
 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:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
@@ -2331,7 +2344,7 @@ msgstr "pogre
 msgid "record %u could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
@@ -2457,6 +2470,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, fuzzy, c-format
+msgid "%5d exclude  %s\n"
+msgstr "Pribavljam %s\n"
+
+#: lib/rpmfi.c:568
+#, fuzzy, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "Ne mogu da otvorim datoteku %s: "
+
+#: lib/rpmfi.c:638
+#, fuzzy, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "Pribavljam %s\n"
+
+#: lib/rpmfi.c:704
+#, fuzzy, c-format
+msgid "excluding %s %s\n"
+msgstr "Pribavljam %s\n"
+
+#: lib/rpmfi.c:714
+#, fuzzy, c-format
+msgid "relocating %s to %s\n"
+msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
+
+#: lib/rpmfi.c:793
+#, fuzzy, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2466,83 +2513,84 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "nedostaje paket za instalaciju"
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "neodstaje paket za deinstalaciju"
@@ -2552,6 +2600,38 @@ msgstr "neodstaje paket za deinstalaciju"
 msgid "read failed: %s (%d)\n"
 msgstr "neuspelo èitanje: %s (%d)"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3096,8 +3176,8 @@ msgstr "gre
 msgid "no dbpath has been set\n"
 msgstr "dbpath nije odreðen"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
@@ -3107,134 +3187,134 @@ msgstr "gre
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, fuzzy, c-format
 msgid "temporary database %s already exists\n"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, fuzzy, c-format
 msgid "creating directory %s: %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, fuzzy, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, fuzzy, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "ne mogu da dodam slog originalno na %d"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -3457,6 +3537,63 @@ msgstr "gre
 msgid "failed to create %s: %s\n"
 msgstr "neuspelo kreiranje %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "proveri potpis u paketu"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "nemoj proveravati zavisnosti paketa"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "proveri potpis u paketu"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: Neuspeo 'readLead'\n"
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
 
@@ -3931,10 +4068,6 @@ msgstr "neuspelo kreiranje %s\n"
 #~ msgstr "re¾im upita"
 
 #, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: Neuspeo 'readLead'\n"
-
-#, fuzzy
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
@@ -3947,26 +4080,6 @@ msgstr "neuspelo kreiranje %s\n"
 #~ msgstr "napravi PGP potpis"
 
 #, fuzzy
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "Pribavljam %s\n"
-
-#, fuzzy
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "Ne mogu da otvorim datoteku %s: "
-
-#, fuzzy
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "Pribavljam %s\n"
-
-#, fuzzy
-#~ msgid "excluding %s %s\n"
-#~ msgstr "Pribavljam %s\n"
-
-#, fuzzy
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
-
-#, fuzzy
 #~ msgid "opening db file        %s mode 0x%x\n"
 #~ msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
index bad8089..165f664 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2002-02-18 21:13+0100\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -74,252 +74,253 @@ msgstr "fel vid l
 msgid "cannot re-open payload: %s\n"
 msgstr "kan inte återöppna lasten: %s\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "visa vilken version av rpm som används"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "visa mindre detaljerad utdata"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "visa mer detaljerad utdata"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "definiera makrot <namn> som <kropp>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<namn> <kropp>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "skriv ut makroexpansion av <uttr>+"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<uttr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "skicka standard ut till <kommando>"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<kommando>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "använd <kat> som toppkatalog"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<kat>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "läs <fil:...> istället för standardmakrofil(er)"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<fil:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "läs <fil:...> istället för standard rpmrc-fil(er)"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "visa slutliga rpmrc- och makrokonfigurationer"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "deaktivera användningen av libio(3)-API:et"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "felsök protokolldataström"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "felsök rpmio I/O"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "felsök cache-hanteringen av URL:ar"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "Frågeflaggor (med -q eller --query):"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "Verifieringsflaggor (med -V eller --verify):"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "Signaturflaggor:"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "Databasflaggor:"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr "Byggflaggor med [ <specfil> | <tar-arkiv> | <källpaket> ]:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr "Installera-/Uppdatera-/Raderaflaggor"
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "Gemensamma flaggor för alla rpm-lägen:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright © 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Det här programmet kan distribueras fritt enligt villkoren i GNU GPL"
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Användning: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "Flaggan --rcfile har tagits bort.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Använd \"--macros <fil:...>\" istället.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Internt fel i argumenthantering (%d) :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "enbart ett huvudläge kan anges"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "endast en typ av fråga/verifiering kan utföras åt gången"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "oväntade frågeflaggor"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "oväntat frågeformat"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "oväntad frågekälla"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath angivet för en operation som inte använder någon databas"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "enbart installation, uppgradering, rmsource och rmspec kan tvingas fram"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr "filer kan relokeras endast under paketinstallation"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "enbart en av --prefix eller --relocate kan användas"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate och --excludepath kan endast användas när nya paket installeras"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix kan endast användas när nya paket installeras"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "argument till --prefix måste börja med /"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "enbart en av --excludedocs och --includedocs kan användas"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan enbart användas när paket raderas"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb kan enbart användas när paket installeras eller raderas"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -327,7 +328,7 @@ msgstr ""
 "skriptdeaktiveringsflaggor kan enbart användas när paket installeras eller "
 "raderas"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -335,7 +336,7 @@ msgstr ""
 "utlösardeaktiveringsflaggor kan enbart användas när paket installeras eller "
 "raderas"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -343,13 +344,13 @@ msgstr ""
 "--nodeps kan enbart användas när paket byggs, byggs om, kompileras om, "
 "installeras, raderas eller verifieras"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test kan enbart användas när paket installeras, raderas eller byggs"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -357,81 +358,81 @@ msgstr ""
 "--root (-r) kan enbart användas när paket installeras, raderas, frågas eller "
 "databasen byggs om"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "inga filer att signera\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan inte komma åt filen %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp hittades inte: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Ange lösenfras: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Kontrollen av lösenfrasen misslyckades\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Lösenfrasen är ok.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Felaktig %%_signature-spec i makrofil.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign kan enbart användas vid pakettillverkning"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "exec misslyckades\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "inga paketfiler angivna för omtillverkning"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "inga specfiler angivna för tillverkning"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "inga tar-filer angivna för tillverkning"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr "inga paket angivna att radera"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "inga paket angivna för installation"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "inga parametrar angivna för fråga"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "inga parametrar angivna för verifiering"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "oväntade argument till --querytags "
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "inga parametrar angivna för fråga"
@@ -1595,45 +1596,59 @@ msgstr "%s skapades som %s\n"
 msgid "error creating temporary file %s\n"
 msgstr "fel när tämporärfil %s skapades\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "paket med versionsnummer 1 stöds inte av denna version av RPM\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature misslyckades\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tillgänglig\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "läs <fil:...> istället för standardmakrofil(er)"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "uteslutna sökvägar måste börja med /"
@@ -2016,7 +2031,7 @@ msgstr "verifiera inte r
 msgid "don't verify files in package"
 msgstr "verifiera inte filerna i paketet"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
@@ -2180,8 +2195,8 @@ msgstr "paketet har varken fil
 msgid "can't query %s: %s\n"
 msgstr "kan inte fråga %s: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "misslyckades med att öppna %s: %s\n"
@@ -2195,7 +2210,7 @@ msgstr "fr
 msgid "old format source packages cannot be queried\n"
 msgstr "källpaket i gammalt format går inte att fråga om\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "inga paket matchar %s: %s\n"
@@ -2264,7 +2279,7 @@ msgstr "paketpost nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %u kunde inte läsas\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
@@ -2391,6 +2406,40 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s har ouppfyllda Requires: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr "========== omflyttningar\n"
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d utesluter  %s\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d flyttar om %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "hoppar över multilib-sökväg %s%s\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "hoppar över %s %s\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "flyttar %s till %s\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "flyttar katalogen %s till %s\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "Förbereder..."
@@ -2399,82 +2448,83 @@ msgstr "F
 msgid "Preparing packages for installation..."
 msgstr "Förbereder paket för installation ..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Hämtar %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "filen %s behöver en nyare version av RPM\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "återställer (+%d,-%d) paket till %s"
@@ -2484,6 +2534,38 @@ msgstr "
 msgid "read failed: %s (%d)\n"
 msgstr "läsning misslyckades: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3018,8 +3100,8 @@ msgstr "kan inte 
 msgid "no dbpath has been set\n"
 msgstr "ingen dbpath har satts\n"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n"
@@ -3029,134 +3111,134 @@ msgstr "fel(%d) n
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "fel(%d) när post %s sparades i %s\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: skadad huvudinstans #%u hämtad, hoppar över.\n"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: kan inte läsa huvud vid 0x%x\n"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "tar bort \"%s\" från %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "tar bort %d poster från %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "fel(%d) när post %s sparades i %s\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "fel(%d) när post %s togs bort ur %s\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "fel(%d) vid allokering av ny paketinstans\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "lägger till \"%s\" till %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "lägger till %d poster till %s-indexet.\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "fel(%d) när post %s sparades i %s\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "tar bort %s efter lyckad db3-ombyggnad.\n"
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "ingen dbpath har satts"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "bygger om databas %s till %s\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "tillfällig databas %s existerar redan\n"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr "skapar katalog %s\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "skapar katalog %s: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "öppnar gammal databas med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "öppnar ny databas med dbapi %d\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "post nummer %u i databasen är felaktig -- hoppar över.\n"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kan inte lägga till post ursprungligen vid %u\n"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "kunde inte ersätta gammal databas med ny databas!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "byt ut filer i %s med filer från %s för att återställa"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr "tar bort katalog %s\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunde inte ta bort katalogen %s: %s\n"
@@ -3368,6 +3450,73 @@ msgstr "url-port m
 msgid "failed to create %s: %s\n"
 msgstr "kunde inte skapa %s: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "verifiera paketsignatur"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "verifiera inte paketberoenden"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "verifiera paketsignatur"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "skapar katalog %s\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: läsning av paketlista misslyckades: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "Gemensamma flaggor för alla rpm-lägen:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "definiera makrot <namn> som <kropp>"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<namn> <kropp>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<uttr>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
 
@@ -3959,9 +4108,6 @@ msgstr "kunde inte skapa %s: %s\n"
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "rpm verifieringsläge (ärvt)"
 
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: läsning av paketlista misslyckades: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "kan inte öppna %s/packages.rpm\n"
 
@@ -3971,27 +4117,6 @@ msgstr "kunde inte skapa %s: %s\n"
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "Genererar signatur med GPG.\n"
 
-#~ msgid "========== relocations\n"
-#~ msgstr "========== omflyttningar\n"
-
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "%5d utesluter  %s\n"
-
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d flyttar om %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "hoppar över multilib-sökväg %s%s\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "hoppar över %s %s\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "flyttar %s till %s\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "flyttar katalogen %s till %s\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 1e41851..dbde918 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: 2001-07-05 08:02+300\n"
 "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
 "Language-Team: Turkish <tr@li.org>\n"
@@ -75,256 +75,257 @@ msgstr "paketten ba
 msgid "cannot re-open payload: %s\n"
 msgstr "payload %s tekrar açýlamýyor\n"
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr "Kullanýlan RPM sürümünü verir"
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr "daha az ayrýntýlý çýktý saðlar"
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr "daha ayrýntýlý çýktý saðlar"
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
-msgstr "<isim> makrosunu <gövde> deðeriyle tanýmlar"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
+msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
-msgstr "'<isim> <gövde>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
+msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+#, fuzzy
+msgid "print macro expansion of EXPR"
 msgstr "<ifade>+ için makro açýlýmýný gösterir"
 
-#: rpmqv.c:123
-msgid "<expr>+"
-msgstr "<ifade>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
+msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr "standart çýktýyý <KOMUT>'a gönderir"
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr "<kmt>"
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr "Üst düzey dizin olarak <dizin> kullanýlýr"
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr "<dizin>"
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr "öntanýmlý makro dosyasý yerine <dosya:...> okunur"
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr "<dosya:...>"
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr "öntanýmlý rpmrc dosyasý yerine <dosya:...> okunur"
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr "son rpmrc ve makro yapýlandýrmasýný gösterir"
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr "libio(3) API kullanýmýný iptal eder"
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr "protokol veri akýþýnda hata kontrolu"
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr "rpmio G/Ç hata kontrolu"
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr "URL arabellek kullanýmý hata kontrolu"
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr "Sorgulama seçenekleri (-q ya da --query ile)"
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr "Denetleme seçenekleri (-V ya da --verify ile)"
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr "Ýmza seçenekleri:"
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr "Veritabaný seçenekleri:"
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "[ <specDosyasý> | <tarPaketi> | <kaynakPaketi> ] ile paketleme seçenekleri:"
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr "Kurma/Güncelleme/Kaldýrma seçenekleri:"
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr "Tüm rpm kipleri için ortak seçenekler:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr "dosya %s: %s\n"
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Sürüm %s\n"
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 #, fuzzy
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr "Copyright (C) 1998 - 2000 - Red Hat, Inc."
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr "Bu program GNU GPL koþullarýna uygun olarak serbestçe daðýtýlabilir."
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr "Kullanýmý: %s {--help}\n"
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr "--rcfile seçeneði kaldýrýlmýþtý.\n"
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr "Yerine \"--macros <dosya:...>\" kullanýn.\n"
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "(%d) argümaný iþlenirken iç hata oluþtu :-(\n"
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr "sadece bir ana kip belirtilebilir"
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr "bir anda sadece bir tarz sorgulama/denetleme yapýlabilir"
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr "beklenmeyen sorgulama bayraklarý"
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr "beklenmeyen sorgulama biçemi"
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr "beklenmeyen sorgulama kaynaðý"
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath bir veritabaný kullanmayan iþlemler için verilmiþ"
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "sadece  kaynak ve spec silme iþlemleri, kurma, güncelleme iþlemleri için "
 "zorlanabilir"
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 "dosyalar sadece paket kurulumu sýrasýnda yeni yerlerine yerleþtirilebilir"
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir"
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate ve --excludepath sadece yeni paket kurulumunda kullanýlabilir"
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix sadece yeni paketlerin kurulmasý sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ile belirtilenler '/' ile baþlamalý"
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ve --includedocs bir arada kullanýlamaz"
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb sadece paket kurulumu ve kaldýrýlmasý sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -332,7 +333,7 @@ msgstr ""
 "betik iptal etme seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda "
 "kullanýlabilir"
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -340,7 +341,7 @@ msgstr ""
 "tetikleme iptal seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda "
 "kullanýlabilir"
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -348,7 +349,7 @@ msgstr ""
 "--nodeps sadece paket oluþturma, yeniden oluþturma, yeniden derleme, "
 "kurulum, kaldýrma ve denetleme iþlemlerinde kullanýlabilir"
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -356,7 +357,7 @@ msgstr ""
 "--test sadece paket kurulumu, kaldýrýlmasý ve oluþturulmasý iþlemlerinde "
 "kullanýlabilir"
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -364,82 +365,82 @@ msgstr ""
 "--root (-r) sadece kurulum, kaldýrma, sorgulama ve yeniden veritabaný "
 "oluþturma iþlemlerinde kullanýlabilir"
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ile verilenler '/' ile baþlamalý"
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr "imzalanacak dosya yok\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "%s dosyasý bulunamýyor\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr "pgp bulunamadý: "
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr "Anahtar parolasýný girin: "
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr "Anahtar parolasý kontrolü baþarýsýz\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr "Anahtar parolasý doðru.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Makro dosyasýndaki %%_signature spec geçersiz.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr "--sign sadece paket oluþturulurken kullanýlabilir"
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr "icra baþarýsýz\n"
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr "yeniden oluþturmak için paket dosyalarý belirtilmemiþ"
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr "oluþturma için gerekli spec dosyasý belirtilmemiþ"
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr "oluþturma için gereken tar dosyalarý belirtilmemiþ"
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "yüklenecek paket(ler) belirtilmedi"
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr "yüklenecek paket(ler) belirtilmedi"
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr "denetleme için hiç argüman belirtilmedi"
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ile beklenmeyen girdiler"
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 #, fuzzy
 msgid "no arguments given"
 msgstr "sorgulama için hiç argüman belirtilmedi"
@@ -1618,47 +1619,61 @@ msgstr "%s %s olarak olu
 msgid "error creating temporary file %s\n"
 msgstr "%s geçici dosyasý oluþturulurken hata\n"
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr "RPM'nin bu sürümünde paket sürümü 1 desteklenmiyor\n"
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 "RPM'nin bu sürümünde sadece ilk sürüm rakamý <= 4 olan paketler "
 "destekleniyor\n"
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature baþarýsýz\n"
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ýmza bulundurmuyor\n"
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, fuzzy, c-format
 msgid "%s: headerRead failed\n"
 msgstr "%s: readLead baþarýsýz\n"
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+#, fuzzy
+msgid "read <FILE:...> instead of default file(s)"
+msgstr "öntanýmlý makro dosyasý yerine <dosya:...> okunur"
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr "dýþlanan dosya yolu / ile baþlamalý"
@@ -2050,7 +2065,7 @@ msgstr "dosyalar
 msgid "don't verify files in package"
 msgstr "paketteki dosyalar doðrulanamaz"
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "paket baðýmlýlýklarý doðrulanmaz"
 
@@ -2213,8 +2228,8 @@ msgstr "paket ne dosya sahibi ne de kimlik listesi i
 msgid "can't query %s: %s\n"
 msgstr "%s sorgulanamýyor: %s\n"
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s açýlamadý: %s\n"
@@ -2228,7 +2243,7 @@ msgstr "%s 'nin sorgulamas
 msgid "old format source packages cannot be queried\n"
 msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s tetikleyen paket yok\n"
@@ -2297,7 +2312,7 @@ msgstr "paket kay
 msgid "record %u could not be read\n"
 msgstr "%u. kayýt okunamadý\n"
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
@@ -2424,6 +2439,40 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s-%s-%s gereksinimi tatmin edici deðil: %s\n"
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr "========== yeniden konumlama\n"
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr "%5d %s'i dýþlýyor\n"
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr "%s %s dýþlanýyor\n"
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr "%s %s'e konumlanýyor\n"
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr "%s dizini %s de yeniden konumlanýyor\n"
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr "Hazýrlanýyor..."
@@ -2432,82 +2481,83 @@ msgstr "Haz
 msgid "Preparing packages for installation..."
 msgstr "Kurulacak paketler hazýrlanýyor..."
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s alýnýyor\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr "... %s olarak\n"
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s paketi yeniden konumlandýrýlamaz\n"
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dosyasýndan okuma hatalý\n"
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n"
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s yüklenemedi\n"
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr "icra edilebilir paketleri kuruluyor\n"
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamadý: %s\n"
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s kuruluyor\n"
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2517,6 +2567,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr "okuma baþarýsýz: %s (%d)\n"
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -3049,8 +3131,8 @@ msgstr "%s indeksi a
 msgid "no dbpath has been set\n"
 msgstr "belirtilmiþ bir dbpath deðeri yok\n"
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
@@ -3060,136 +3142,136 @@ msgstr "hata(%d): \"%s\" kay
 msgid "error(%d) storing record #%d into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr "rpmdb: bozuk baþlýk örneði #%u alýndý, atlanýyor.\n"
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr "%s: 0x%x de baþlýk okunamadý\n"
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, fuzzy, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "\"%s\" %s indeksinden siliniyor.\n"
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%d girdi %s indeksinden siliniyor.\n"
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, fuzzy, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr "hata(%d): \"%s\" kayýt %s indeksinden alýnýyor\n"
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, fuzzy, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, fuzzy, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr "hata(%d) %s kaydýn %s dosyasýndan silinmesi\n"
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr "yeni paket örneðini tutma hatasý(%d)\n"
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "\"%s\" %s indeksine ekleniyor.\n"
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%d girdi %s indeksine ekleniyor.\n"
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr "hata(%d): %s kayýt %s içine yazýlýyor\n"
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr "baþarýlý db3 yeniden oluþturma ertesinde %s kaldýrýlýyor\n"
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr "belirtilmiþ bir dbpath yok"
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "%s veritabaný %s içinde yeniden oluþturuluyor\n"
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr "geçici veritabaný %s zaten mevcut\n"
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr "%s dizini oluþturuluyor\n"
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr "%s dizini oluþturuluyor: %s\n"
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "eski veritabaný dbapi %d ile açýlýyor\n"
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "yeni veritabaný dbapi %d ile açýlýyor\n"
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr "veritabanýndaki %u. kayýt hatalý -- atlanýyor\n"
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr "kayýt özgün olarak %u e eklenemedi\n"
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "veritabaný yeniden oluþturulamadý: mevcut veritabaný deðiþmeden\n"
 "yerinde býrakýldý\n"
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr "eski veritabanýnýn yenisiyle deðiþtirilirmesi baþarýsýz!\n"
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "kurtarmak için %s içindeki dosyalar %s deki dosyalarla deðiþtiriliyor"
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr "%s dizini siliniyor\n"
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s dizininin silinmesi baþarýsýz: %s\n"
@@ -3401,6 +3483,73 @@ msgstr "url portu bir say
 msgid "failed to create %s: %s\n"
 msgstr "%s oluþturulamadý: %s\n"
 
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+#, fuzzy
+msgid "don't verify header+payload signature"
+msgstr "paket imzasýný denetler"
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+#, fuzzy
+msgid "don't verify package digest"
+msgstr "paket baðýmlýlýklarý doðrulanmaz"
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+#, fuzzy
+msgid "don't verify package signature"
+msgstr "paket imzasýný denetler"
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+#, fuzzy
+msgid "don't change directories"
+msgstr "%s dizini oluþturuluyor\n"
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, fuzzy, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr "%s: bildirge okuma baþarýsýz: %s\n"
+
+#: tools/rpmgraph.c:286
+#, fuzzy
+msgid "Common options for all rpm modes and executables:"
+msgstr "Tüm rpm kipleri için ortak seçenekler:"
+
+#~ msgid "define macro <name> with value <body>"
+#~ msgstr "<isim> makrosunu <gövde> deðeriyle tanýmlar"
+
+#~ msgid "'<name> <body>'"
+#~ msgstr "'<isim> <gövde>'"
+
+#~ msgid "<expr>+"
+#~ msgstr "<ifade>+"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr ""
 #~ "bu paketin silinmesi aþaðýdakilerin baðýmlýlýklarýný etkileyecektir:\n"
@@ -4006,10 +4155,6 @@ msgstr "%s olu
 #~ msgid "rpm verify mode (legacy)"
 #~ msgstr "rpm denetleme kipi (eski tip)"
 
-#, fuzzy
-#~ msgid "%s: read manifest failed: %s\n"
-#~ msgstr "%s: bildirge okuma baþarýsýz: %s\n"
-
 #~ msgid "cannot open %s/packages.rpm\n"
 #~ msgstr "%s/packages.rpm açýlamýyor\n"
 
@@ -4019,27 +4164,6 @@ msgstr "%s olu
 #~ msgid "Generating signature using GPG.\n"
 #~ msgstr "GPG kullanýlarak imza üretiliyor.\n"
 
-#~ msgid "========== relocations\n"
-#~ msgstr "========== yeniden konumlama\n"
-
-#~ msgid "%5d exclude  %s\n"
-#~ msgstr "%5d %s'i dýþlýyor\n"
-
-#~ msgid "%5d relocate %s -> %s\n"
-#~ msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
-
-#~ msgid "excluding multilib path %s%s\n"
-#~ msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
-
-#~ msgid "excluding %s %s\n"
-#~ msgstr "%s %s dýþlanýyor\n"
-
-#~ msgid "relocating %s to %s\n"
-#~ msgstr "%s %s'e konumlanýyor\n"
-
-#~ msgid "relocating directory %s to %s\n"
-#~ msgstr "%s dizini %s de yeniden konumlanýyor\n"
-
 #~ msgid ""
 #~ "package lacks both user name and id lists (this should never happen)\n"
 #~ msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 9f349a5..36f6580 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-28 23:17-0400\n"
+"POT-Creation-Date: 2002-07-01 13:41-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -78,353 +78,353 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:112
+#: rpmqv.c:114 lib/poptALL.c:135
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpmqv.c:115
+#: rpmqv.c:117 lib/poptALL.c:131
 msgid "provide less detailed output"
 msgstr ""
 
-#: rpmqv.c:117
+#: rpmqv.c:119 lib/poptALL.c:133
 msgid "provide more detailed output"
 msgstr ""
 
-#: rpmqv.c:119
-msgid "define macro <name> with value <body>"
+#: rpmqv.c:121 lib/poptALL.c:138
+msgid "define MACRO with value EXPR"
 msgstr ""
 
-#: rpmqv.c:120
-msgid "'<name> <body>'"
+#: rpmqv.c:121 lib/poptALL.c:139
+msgid "'MACRO EXPR'"
 msgstr ""
 
-#: rpmqv.c:122
-msgid "print macro expansion of <expr>+"
+#: rpmqv.c:123 lib/poptALL.c:141
+msgid "print macro expansion of EXPR"
 msgstr ""
 
-#: rpmqv.c:123
-msgid "<expr>+"
+#: rpmqv.c:123 lib/poptALL.c:142
+msgid "'EXPR'"
 msgstr ""
 
-#: rpmqv.c:125
+#: rpmqv.c:125 lib/poptALL.c:144
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpmqv.c:126
+#: rpmqv.c:125 lib/poptALL.c:145
 msgid "<cmd>"
 msgstr ""
 
-#: rpmqv.c:128
+#: rpmqv.c:127 lib/poptALL.c:147
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:221
+#: rpmqv.c:127 lib/poptALL.c:148 lib/poptI.c:221
 msgid "<dir>"
 msgstr ""
 
-#: rpmqv.c:131
+#: rpmqv.c:129
 msgid "read <file:...> instead of default macro file(s)"
 msgstr ""
 
-#: rpmqv.c:132 rpmqv.c:136 rpmqv.c:140
+#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
 msgid "<file:...>"
 msgstr ""
 
-#: rpmqv.c:135 rpmqv.c:139
+#: rpmqv.c:133 rpmqv.c:137
 msgid "read <file:...> instead of default rpmrc file(s)"
 msgstr ""
 
-#: rpmqv.c:143
+#: rpmqv.c:141 lib/poptALL.c:162
 msgid "display final rpmrc and macro configuration"
 msgstr ""
 
-#: rpmqv.c:148
+#: rpmqv.c:146 lib/poptALL.c:167
 msgid "disable use of libio(3) API"
 msgstr ""
 
-#: rpmqv.c:151
+#: rpmqv.c:149 lib/poptALL.c:171
 msgid "debug protocol data stream"
 msgstr ""
 
-#: rpmqv.c:153
+#: rpmqv.c:151 lib/poptALL.c:173
 msgid "debug rpmio I/O"
 msgstr ""
 
-#: rpmqv.c:155
+#: rpmqv.c:153 lib/poptALL.c:175
 msgid "debug URL cache handling"
 msgstr ""
 
-#: rpmqv.c:175
+#: rpmqv.c:173
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:178
+#: rpmqv.c:176
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:184
+#: rpmqv.c:182
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:190
+#: rpmqv.c:188
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:196
+#: rpmqv.c:194
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:202
+#: rpmqv.c:200
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:207
+#: rpmqv.c:205
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:224 lib/poptI.c:28
+#: rpmqv.c:222 lib/poptI.c:28
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:232
+#: rpmqv.c:230 lib/poptALL.c:47
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:239
+#: rpmqv.c:237
 msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
 msgstr ""
 
-#: rpmqv.c:240
+#: rpmqv.c:238
 msgid "This program may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpmqv.c:252
+#: rpmqv.c:250
 #, c-format
 msgid "Usage: %s {--help}\n"
 msgstr ""
 
-#: rpmqv.c:610
+#: rpmqv.c:608
 msgid "The --rcfile option has been eliminated.\n"
 msgstr ""
 
-#: rpmqv.c:611
+#: rpmqv.c:609
 msgid "Use \"--macros <file:...>\" instead.\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:615
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpmqv.c:658 rpmqv.c:664 rpmqv.c:670 rpmqv.c:708
+#: rpmqv.c:656 rpmqv.c:662 rpmqv.c:668 rpmqv.c:706
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:685
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:689
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:692
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:695
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
+#: rpmqv.c:736
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpmqv.c:744
+#: rpmqv.c:742
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:744
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:747
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:750
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:753
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:756
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:759
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:763
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:768
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:772
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:776
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:780
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:784
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:788
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:792
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:797
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:801
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:805
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:810
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:815
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:820
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:824
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:829
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:834
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:846
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:870
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:875
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:894
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:899
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:901
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:905
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:910
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:917
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:934
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:969
+#: rpmqv.c:967
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1037
+#: rpmqv.c:1035
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:1037
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1061
+#: rpmqv.c:1059
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1102
+#: rpmqv.c:1100
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1118
+#: rpmqv.c:1116
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1131
+#: rpmqv.c:1129
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1139
+#: rpmqv.c:1137
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1155
+#: rpmqv.c:1153
 msgid "no arguments given"
 msgstr ""
 
@@ -1569,45 +1569,58 @@ msgstr ""
 msgid "error creating temporary file %s\n"
 msgstr ""
 
-#: lib/package.c:174 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
+#: lib/package.c:211 lib/rpmchecksig.c:180 lib/rpmchecksig.c:605
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/package.c:187
+#: lib/package.c:224
 msgid "packaging version 1 is not supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:195
+#: lib/package.c:232
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM\n"
 msgstr ""
 
-#: lib/package.c:204 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
+#: lib/package.c:241 lib/rpmchecksig.c:198 lib/rpmchecksig.c:621
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/package.c:208 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
+#: lib/package.c:245 lib/rpmchecksig.c:202 lib/rpmchecksig.c:626
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/package.c:254 lib/rpmchecksig.c:524
+#: lib/package.c:291 lib/rpmchecksig.c:524
 #, c-format
 msgid "%s: headerRead failed\n"
 msgstr ""
 
-#: lib/package.c:289 lib/package.c:314 lib/package.c:344 lib/rpmchecksig.c:697
+#: lib/package.c:326 lib/package.c:351 lib/package.c:381 lib/rpmchecksig.c:697
 #, c-format
 msgid "only V3 signatures can be verified, skipping V%u signature"
 msgstr ""
 
-#: lib/package.c:356 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
+#: lib/package.c:393 lib/rpmchecksig.c:122 lib/rpmchecksig.c:553
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
+#: lib/poptALL.c:150 lib/poptALL.c:154 lib/poptALL.c:158
+msgid "read <FILE:...> instead of default file(s)"
+msgstr ""
+
+#: lib/poptALL.c:151 lib/poptALL.c:155 lib/poptALL.c:159
+msgid "<FILE:...>"
+msgstr ""
+
+#: lib/poptALL.c:236
+#, c-format
+msgid "%s: option table misconfigured (%d)\n"
+msgstr ""
+
 #: lib/poptI.c:51
 msgid "exclude paths must begin with a /"
 msgstr ""
@@ -1979,7 +1992,7 @@ msgstr ""
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:264
+#: lib/poptQV.c:264 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
@@ -2136,8 +2149,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:366 lib/rpminstall.c:497
-#: lib/rpminstall.c:885
+#: lib/query.c:635 lib/query.c:669 lib/rpminstall.c:362 lib/rpminstall.c:493
+#: lib/rpminstall.c:875 tools/rpmgraph.c:127 tools/rpmgraph.c:164
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2164,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:679 lib/rpminstall.c:510
+#: lib/query.c:679 lib/rpminstall.c:506
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,7 +2233,7 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:977 lib/rpminstall.c:670
+#: lib/query.c:977 lib/rpminstall.c:660
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
@@ -2343,6 +2356,40 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
+#: lib/rpmfi.c:561
+msgid "========== relocations\n"
+msgstr ""
+
+#: lib/rpmfi.c:565
+#, c-format
+msgid "%5d exclude  %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:568
+#, c-format
+msgid "%5d relocate %s -> %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:638
+#, c-format
+msgid "excluding multilib path %s%s\n"
+msgstr ""
+
+#: lib/rpmfi.c:704
+#, c-format
+msgid "excluding %s %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:714
+#, c-format
+msgid "relocating %s to %s\n"
+msgstr ""
+
+#: lib/rpmfi.c:793
+#, c-format
+msgid "relocating directory %s to %s\n"
+msgstr ""
+
 #: lib/rpminstall.c:167
 msgid "Preparing..."
 msgstr ""
@@ -2351,81 +2398,82 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:313
+#: lib/rpminstall.c:309
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:322
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:330
+#: lib/rpminstall.c:326
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:421
+#: lib/rpminstall.c:417
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:471
+#: lib/rpminstall.c:467
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:477
+#: lib/rpminstall.c:473
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:489 lib/rpminstall.c:741
+#: lib/rpminstall.c:485 lib/rpminstall.c:731 tools/rpmgraph.c:156
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:525
+#: lib/rpminstall.c:521
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:539 lib/rpminstall.c:698 lib/rpminstall.c:1072
+#: lib/rpminstall.c:535 lib/rpminstall.c:688 lib/rpminstall.c:1062
+#: tools/rpmgraph.c:202
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:546
+#: lib/rpminstall.c:542 tools/rpmgraph.c:208
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:576
+#: lib/rpminstall.c:572
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:597
+#: lib/rpminstall.c:593
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:673
+#: lib/rpminstall.c:663
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:728
+#: lib/rpminstall.c:718
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:734
+#: lib/rpminstall.c:724
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1066
+#: lib/rpminstall.c:1056
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2435,6 +2483,38 @@ msgstr ""
 msgid "read failed: %s (%d)\n"
 msgstr ""
 
+#: lib/rpmlibprov.c:30
+msgid "PreReq:, Provides:, and Obsoletes: dependencies support versions."
+msgstr ""
+
+#: lib/rpmlibprov.c:33
+msgid "file name(s) stored as (dirName,baseName,dirIndex) tuple, not as path."
+msgstr ""
+
+#: lib/rpmlibprov.c:36
+msgid "package payload is compressed using bzip2."
+msgstr ""
+
+#: lib/rpmlibprov.c:39
+msgid "package payload file(s) have \"./\" prefix."
+msgstr ""
+
+#: lib/rpmlibprov.c:42
+msgid "package name-version-release is not implicitly provided."
+msgstr ""
+
+#: lib/rpmlibprov.c:45
+msgid "header tags are always sorted after being loaded."
+msgstr ""
+
+#: lib/rpmlibprov.c:48
+msgid "the scriptlet interpreter can use arguments from header."
+msgstr ""
+
+#: lib/rpmlibprov.c:51
+msgid "a hardlink file set may be installed without being complete."
+msgstr ""
+
 #. @observer@
 #: lib/rpmps.c:200
 msgid "different"
@@ -2962,8 +3042,8 @@ msgstr ""
 msgid "no dbpath has been set\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2048
-#: rpmdb/rpmdb.c:2153 rpmdb/rpmdb.c:2840
+#: rpmdb/rpmdb.c:995 rpmdb/rpmdb.c:1124 rpmdb/rpmdb.c:1173 rpmdb/rpmdb.c:2049
+#: rpmdb/rpmdb.c:2154 rpmdb/rpmdb.c:2841
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index\n"
 msgstr ""
@@ -2973,134 +3053,134 @@ msgstr ""
 msgid "error(%d) storing record #%d into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:1971
+#: rpmdb/rpmdb.c:1972
 #, c-format
 msgid "rpmdb: damaged header instance #%u retrieved, skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2236
+#: rpmdb/rpmdb.c:2237
 #, c-format
 msgid "%s: cannot read header at 0x%x\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2297
+#: rpmdb/rpmdb.c:2298
 #, c-format
 msgid "error(%d) setting header #%d record for %s removal\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2408
+#: rpmdb/rpmdb.c:2409
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2412
+#: rpmdb/rpmdb.c:2413
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2439
+#: rpmdb/rpmdb.c:2440
 #, c-format
 msgid "error(%d) setting \"%s\" records from %s index\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2460
+#: rpmdb/rpmdb.c:2461
 #, c-format
 msgid "error(%d) storing record \"%s\" into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2470
+#: rpmdb/rpmdb.c:2471
 #, c-format
 msgid "error(%d) removing record \"%s\" from %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2612
+#: rpmdb/rpmdb.c:2613
 #, c-format
 msgid "error(%d) allocating new package instance\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2816
+#: rpmdb/rpmdb.c:2817
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2820
+#: rpmdb/rpmdb.c:2821
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:2856
+#: rpmdb/rpmdb.c:2857
 #, c-format
 msgid "error(%d) storing record %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3195
+#: rpmdb/rpmdb.c:3196
 #, c-format
 msgid "removing %s after successful db3 rebuild.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3230
+#: rpmdb/rpmdb.c:3231
 msgid "no dbpath has been set"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3257
+#: rpmdb/rpmdb.c:3258
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3261
+#: rpmdb/rpmdb.c:3262
 #, c-format
 msgid "temporary database %s already exists\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3267
+#: rpmdb/rpmdb.c:3268
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3269
+#: rpmdb/rpmdb.c:3270
 #, c-format
 msgid "creating directory %s: %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3276
+#: rpmdb/rpmdb.c:3277
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3287
+#: rpmdb/rpmdb.c:3288
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3311
+#: rpmdb/rpmdb.c:3312
 #, c-format
 msgid "record number %u in database is bad -- skipping.\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3351
+#: rpmdb/rpmdb.c:3352
 #, c-format
 msgid "cannot add record originally at %u\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3369
+#: rpmdb/rpmdb.c:3370
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3377
+#: rpmdb/rpmdb.c:3378
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3379
+#: rpmdb/rpmdb.c:3380
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3389
+#: rpmdb/rpmdb.c:3390
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: rpmdb/rpmdb.c:3391
+#: rpmdb/rpmdb.c:3392
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
@@ -3311,3 +3391,56 @@ msgstr ""
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
+
+#: tools/rpmcache.c:398 tools/rpmgraph.c:276
+msgid "don't verify header+payload signature"
+msgstr ""
+
+#: tools/rpmcache.c:400 tools/rpmgraph.c:278
+msgid "don't verify package digest"
+msgstr ""
+
+#: tools/rpmcache.c:402 tools/rpmgraph.c:280
+msgid "don't verify package signature"
+msgstr ""
+
+#: tools/rpmcache.c:405
+msgid "follow command line symlinks"
+msgstr ""
+
+#: tools/rpmcache.c:407
+msgid "logical walk"
+msgstr ""
+
+#: tools/rpmcache.c:409
+msgid "don't change directories"
+msgstr ""
+
+#: tools/rpmcache.c:411
+msgid "don't get stat info"
+msgstr ""
+
+#: tools/rpmcache.c:413
+msgid "physical walk"
+msgstr ""
+
+#: tools/rpmcache.c:415
+msgid "return dot and dot-dot"
+msgstr ""
+
+#: tools/rpmcache.c:417
+msgid "don't cross devices"
+msgstr ""
+
+#: tools/rpmcache.c:419
+msgid "return whiteout information"
+msgstr ""
+
+#: tools/rpmgraph.c:177
+#, c-format
+msgid "%s: read manifest failed: %s\n"
+msgstr ""
+
+#: tools/rpmgraph.c:286
+msgid "Common options for all rpm modes and executables:"
+msgstr ""
index 94d501f..9a17245 100644 (file)
@@ -77,7 +77,7 @@ will manipulate RPM packages and databases.
 %package build
 Summary: Scripts and executable programs used to build packages.
 Group: Development/Tools
-Requires: rpm = %{rpm_version}, patch >= 2.5
+Requires: rpm = %{rpm_version}, patch >= 2.5, file
 Provides: rpmbuild(VendorConfig) = %{version}
 
 %description build
@@ -434,8 +434,8 @@ fi
 #%attr(0644, @RPMUSER@, @RPMGROUP@) %{__prefix}/lib/rpm/perl.req
 
 %rpmattr       %{__prefix}/lib/rpm/rpm[bt]
-%rpmattr       %{__prefix}/lib/rpm/rpmdiff
-%rpmattr       %{__prefix}/lib/rpm/rpmdiff.cgi
+#%rpmattr      %{__prefix}/lib/rpm/rpmdiff
+#%rpmattr      %{__prefix}/lib/rpm/rpmdiff.cgi
 %rpmattr       %{__prefix}/lib/rpm/trpm
 %rpmattr       %{__prefix}/lib/rpm/u_pkg.sh
 %rpmattr       %{__prefix}/lib/rpm/vpkg-provides.sh
index b859e69..213b7d4 100644 (file)
  * @return             -1 on error, otherwise, an open file descriptor
  */ 
 static int open_dso(const char * path, /*@null@*/ pid_t * pidp, /*@null@*/ size_t *fsizep)
-       /*@globals rpmGlobalMacroContext,
-               fileSystem, internalState @*/
-       /*@modifies *pidp, *fsizep, rpmGlobalMacroContext,
-               fileSystem, internalState @*/
+       /*@globals rpmGlobalMacroContext, internalState @*/
+       /*@modifies *pidp, *fsizep, rpmGlobalMacroContext, internalState @*/
 {
 /*@only@*/
     static const char * cmd = NULL;
     static int initted = 0;
-    pid_t pid;
     int fdno;
 
     if (!initted) {
@@ -112,6 +109,7 @@ static int open_dso(const char * path, /*@null@*/ pid_t * pidp, /*@null@*/ size_
 /*@-boundswrite@*/
     if (pidp != NULL && bingo) {
        int pipes[2];
+       pid_t pid;
        int xx;
 
        xx = close(fdno);
diff --git a/rpmqv.c b/rpmqv.c
index a9a1e3d..920ae0b 100755 (executable)
--- a/rpmqv.c
+++ b/rpmqv.c
@@ -461,6 +461,7 @@ int main(int argc, const char ** argv)
 #endif
 
 #ifdef IAM_RPMEIU
+    if (ia->relocations != NULL)
     for (i = 0; i < ia->numRelocations; i++)
        ia->relocations[i].oldPath = _free(ia->relocations[i].oldPath);
     ia->relocations = _free(ia->relocations);
@@ -1220,6 +1221,7 @@ exit:
 #endif
 
 #ifdef IAM_RPMEIU
+    if (ia->relocations != NULL)
     for (i = 0; i < ia->numRelocations; i++)
        ia->relocations[i].oldPath = _free(ia->relocations[i].oldPath);
     ia->relocations = _free(ia->relocations);
index a313e0d..03655c7 100644 (file)
--- a/system.h
+++ b/system.h
@@ -351,6 +351,7 @@ extern void muntrace (void)
     else __progname = pn;              \
   }
 #endif
+/*@unchecked@*/
 const char *__progname;
 
 #if HAVE_NETDB_H
index 954d0c6..a5b973f 100644 (file)
@@ -6,14 +6,15 @@
 #include "rpmps.h"
 
 #include "rpmte.h"
+
+#define _RPMTS_INTERNAL         /* ts->goal, ts->dbmode, ts->suggests */
 #include "rpmts.h"
 
 #include "manifest.h"
-#ifdef DYING
-#include "misc.h"
-#endif
+#include "misc.h"              /* rpmGlob */
 #include "debug.h"
 
+static int noDeps = 1;
 static int noChainsaw = 0;
 
 static int vsflags = _RPMTS_VSF_VERIFY_LEGACY;
@@ -43,6 +44,7 @@ static int
 rpmGraph(rpmts ts, struct rpmInstallArguments_s * ia, const char ** fileArgv)
        /*@*/
 {
+    rpmps ps;
     const char ** pkgURL = NULL;
     char * pkgState = NULL;
     const char ** fnp;
@@ -187,7 +189,41 @@ restart:
        break;
     }
 
-    if (numFailed) goto exit;
+    if (numFailed > 0) goto exit;
+
+    if (!noDeps) {
+       rc = rpmtsCheck(ts);
+       if (rc) {
+           numFailed += numPkgs;
+           goto exit;
+       }
+       ps = rpmtsProblems(ts);
+       if (rpmpsNumProblems(ps) > 0) {
+           rpmMessage(RPMMESS_ERROR, _("Failed dependencies:\n"));
+           rpmpsPrint(NULL, ps);
+           numFailed += numPkgs;
+
+            /*@-branchstate@*/
+           if (ts->suggests != NULL && ts->nsuggests > 0) {
+               rpmMessage(RPMMESS_NORMAL, _("    Suggested resolutions:\n"));
+               for (i = 0; i < ts->nsuggests; i++) {
+                   const char * str = ts->suggests[i];
+
+                   if (str == NULL)
+                       break;
+
+                   rpmMessage(RPMMESS_NORMAL, "\t%s\n", str);
+                   ts->suggests[i] = NULL;
+                   str = _free(str);
+               }
+               ts->suggests = _free(ts->suggests);
+           }
+           /*@=branchstate@*/
+       }
+       ps = rpmpsFree(ps);
+    }
+
+    if (numFailed > 0) goto exit;
 
     rc = rpmtsOrder(ts);
     if (rc)
@@ -234,6 +270,8 @@ exit:
 }
 
 static struct poptOption optionsTable[] = {
+ { "check", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &noDeps, 0,
+       N_("don't verify package dependencies"), NULL },
  { "nolegacy", '\0', POPT_BIT_CLR,     &vsflags, _RPMTS_VSF_VERIFY_LEGACY,
         N_("don't verify header+payload signature"), NULL },
  { "nodigest", '\0', POPT_BIT_SET,     &vsflags, _RPMTS_VSF_NODIGESTS,
index d82285b..9eed901 100644 (file)
@@ -20,6 +20,7 @@ doxygen
 example
 install-sh
 libtool
+ltmain.sh
 minigzip
 missing
 mkinstalldirs