- popt: display sub-table options only once on --usage.
authorjbj <devnull@localhost>
Sun, 28 Jul 2002 00:41:15 +0000 (00:41 +0000)
committerjbj <devnull@localhost>
Sun, 28 Jul 2002 00:41:15 +0000 (00:41 +0000)
- wire --nosignatures et al as common options, rework CLI options.

CVS patchset: 5575
CVS date: 2002/07/28 00:41:15

78 files changed:
CHANGES
build/poptBT.c
db3/configure
lib/package.c
lib/poptALL.c
lib/poptI.c
lib/poptQV.c
lib/rpmcli.h
lib/rpmfi.c
lib/rpmte.c
lib/rpmte.h
lib/transaction.c
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
popt/po/cs.po
popt/po/da.po
popt/po/de.po
popt/po/es.po
popt/po/eu_ES.po
popt/po/fi.po
popt/po/fr.po
popt/po/gl.po
popt/po/hu.po
popt/po/id.po
popt/po/is.po
popt/po/it.po
popt/po/ja.po
popt/po/ko.po
popt/po/no.po
popt/po/pl.po
popt/po/popt.pot
popt/po/pt.po
popt/po/pt_BR.po
popt/po/ro.po
popt/po/ru.po
popt/po/sk.po
popt/po/sl.po
popt/po/sr.po
popt/po/sv.po
popt/po/tr.po
popt/po/uk.po
popt/po/wa.po
popt/po/zh.po
popt/po/zh_CN.GB2312.po
popt/popthelp.c
rpm.spec.in
rpmqv.c
tools/rpmcache.c
tools/rpmgraph.c

diff --git a/CHANGES b/CHANGES
index 225e193..bffcf8a 100644 (file)
--- a/CHANGES
+++ b/CHANGES
        - popt: fix --usage (#62234).
        - fix: --repackage repaired (#67217).
        - fix: rpm2cpio disables signature checks (i.e. same behavior).
+       - popt: display sub-table options only once on --usage.
+       - wire --nosignatures et al as common options, rework CLI options.
 
 4.0.3 -> 4.0.4:
        - solaris: translate i86pc to i386 (#57182).
index 972f25f..179a40d 100644 (file)
@@ -24,9 +24,7 @@ struct rpmBuildArguments_s         rpmBTArgs;
 #define        POPT_NOBUILD            -1008
 #define        POPT_SHORTCIRCUIT       -1009
 #define        POPT_RMSPEC             -1010
-#define        POPT_NODEPS             -1011
 #define        POPT_SIGN               -1012
-#define        POPT_FORCE              -1013
 
 #define        POPT_REBUILD            0x4220
 #define        POPT_RECOMPILE          0x4320
@@ -50,9 +48,6 @@ struct rpmBuildArguments_s         rpmBTArgs;
 extern int _fsm_debug;
 /*@=redecl@*/
 
-/*@unchecked@*/
-static int force = 0;
-
 /*@-exportlocal@*/
 /*@unchecked@*/
 int noLang = 0;
@@ -62,9 +57,6 @@ int noLang = 0;
 static int noBuild = 0;
 
 /*@unchecked@*/
-static int noDeps = 0;
-
-/*@unchecked@*/
 static int signIt = 0;
 
 /*@unchecked@*/
@@ -102,9 +94,8 @@ static void buildArgCallback( /*@unused@*/ poptContext con,
            rba->buildChar = (opt->val     ) & 0xff;
        }
        break;
-    case POPT_FORCE: rba->force = 1; break;
+
     case POPT_NOBUILD: rba->noBuild = 1; break;
-    case POPT_NODEPS: rba->noDeps = 1; break;
     case POPT_NOLANG: rba->noLang = 1; break;
     case POPT_SHORTCIRCUIT: rba->shortCircuit = 1; break;
     case POPT_SIGN: rba->sign = 1; break;
@@ -130,6 +121,15 @@ static void buildArgCallback( /*@unused@*/ poptContext con,
        }
        strcat(rba->targets, arg);
        break;
+
+    case RPMCLI_POPT_NODEPS:
+       rba->noDeps = 1;
+       break;
+
+    case RPMCLI_POPT_FORCE:
+       rba->force = 1;
+       break;
+
     }
 }
 /*@=boundswrite@*/
@@ -140,7 +140,7 @@ static void buildArgCallback( /*@unused@*/ poptContext con,
 /*@unchecked@*/
 struct poptOption rpmBuildPoptTable[] = {
 /*@-type@*/ /* FIX: cast? */
- { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA,
+ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA | POPT_CBFLAG_CONTINUE,
        buildArgCallback, 0, NULL, NULL },
 /*@=type@*/
 
@@ -201,13 +201,13 @@ struct poptOption rpmBuildPoptTable[] = {
        N_("remove build tree when done"), NULL},
  { "dirtokens", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_noDirTokens, 0,
        N_("generate headers compatible with rpm4 packaging"), NULL},
- { "force", '\0', POPT_ARGFLAG_DOC_HIDDEN, &force, POPT_FORCE,
+ { "force", '\0', POPT_ARGFLAG_DOC_HIDDEN, &rpmBTArgs.force, RPMCLI_POPT_FORCE,
         N_("ignore ExcludeArch: directives from spec file"), NULL},
  { "fsmdebug", '\0', (POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN), &_fsm_debug, -1,
        N_("debug file state machine"), NULL},
  { "nobuild", '\0', 0, &noBuild,  POPT_NOBUILD,
        N_("do not execute any stages of the build"), NULL },
- { "nodeps", '\0', 0, &noDeps, POPT_NODEPS,
+ { "nodeps", '\0', 0, NULL, RPMCLI_POPT_NODEPS,
        N_("do not verify build dependencies"), NULL },
  { "nodirtokens", '\0', POPT_ARG_VAL, &_noDirTokens, 1,
        N_("generate package header(s) compatible with (legacy) rpm[23] packaging"),
index a96fb90..eea649b 100755 (executable)
@@ -26,7 +26,7 @@ listobjs:\
 \
 distdir install check:\
 \
-db3_install: all install_setip \\' > Makefile
+db3_install: all install_setip' > Makefile
 
 mv db.h db.h.orig
 cat db.h.orig | sed \
index d0ea23a..0ff90c9 100644 (file)
@@ -26,7 +26,7 @@
 /*@access rpmts @*/
 /*@access Header @*/           /* XXX compared with NULL */
 /*@access entryInfo @*/                /* XXX headerCheck */
-/*@access indexEntry @*/               /* XXX headerCheck */
+/*@access indexEntry @*/       /* XXX headerCheck */
 /*@access FD_t @*/             /* XXX stealing digests */
 
 /*@unchecked@*/
index 221409d..65c97dd 100644 (file)
 /*@unchecked@*/
 static int _debug = 0;
 
+/*@-exportheadervar@*/
+/*@unchecked@*/
+extern int noLibio;
+/*@=exportheadervar@*/
+
+/*@unchecked@*/
+const char * rpmcliPipeOutput = NULL;
+
+/*@unchecked@*/
+const char * rpmcliRcfile = NULL;
+
 /*@unchecked@*/
-/*@observer@*/ /*@null@*/
-static const char * pipeOutput = NULL;
+const char * rpmcliRootDir = "/";
+
 /*@unchecked@*/
-/*@observer@*/ /*@null@*/
-static const char * rcfile = NULL;
-/*@unchecked@*/ /*@observer@*/
-static const char * rootdir = "/";
+rpmQueryFlags rpmcliQueryFlags;
 
 /*@-exportheadervar@*/
 /*@unchecked@*/
@@ -39,11 +47,11 @@ extern int _rpmio_debug;
 /**
  * Display rpm version.
  */
-static void printVersion(void)
+static void printVersion(FILE * fp)
        /*@globals rpmEVR, fileSystem @*/
        /*@modifies fileSystem @*/
 {
-    fprintf(stdout, _("RPM version %s\n"), rpmEVR);
+    fprintf(fp, _("RPM version %s\n"), rpmEVR);
 }
 
 /**
@@ -51,7 +59,7 @@ static void printVersion(void)
  * @warning Options like --rcfile and --verbose must precede callers option.
  */
 /*@mayexit@*/
-static void rpmcliConfigured(void)
+void rpmcliConfigured(void)
        /*@globals rpmCLIMacroContext, rpmGlobalMacroContext,
                fileSystem, internalState @*/
        /*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
@@ -60,7 +68,7 @@ static void rpmcliConfigured(void)
     static int initted = -1;
 
     if (initted < 0)
-       initted = rpmReadConfigFiles(rcfile, NULL);
+       initted = rpmReadConfigFiles(rpmcliRcfile, NULL);
     if (initted)
        exit(EXIT_FAILURE);
 }
@@ -77,11 +85,6 @@ static void rpmcliAllArgCallback( /*@unused@*/ poptContext con,
        /*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
                fileSystem, internalState @*/
 {
-#if 0
-/*@observer@*/
-static const char *cbreasonstr[] = { "PRE", "POST", "OPTION", "?WTFO?" };
-fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->shortName, opt->longName, arg, cbreasonstr[reason&0x3], opt, opt->arg, opt->val);
-#endif
 
     /* XXX avoid accidental collisions with POPT_BIT_SET for flags */
     /*@-branchstate@*/
@@ -108,7 +111,7 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
        }
        break;
     case POPT_SHOWVERSION:
-       printVersion();
+       printVersion(stdout);
        exit(EXIT_SUCCESS);
        /*@notreached@*/ break;
     case POPT_SHOWRC:
@@ -120,6 +123,17 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
     case POPT_RCFILE:          /* XXX FIXME: noop for now */
        break;
 #endif
+    case RPMCLI_POPT_NODIGEST:
+       rpmcliQueryFlags |= VERIFY_DIGEST;
+       break;
+
+    case RPMCLI_POPT_NOSIGNATURE:
+       rpmcliQueryFlags |= VERIFY_SIGNATURE;
+       break;
+
+    case RPMCLI_POPT_NOHDRCHK:
+       rpmcliQueryFlags |= VERIFY_HDRCHK;
+       break;
     }
     /*@=branchstate@*/
 }
@@ -128,18 +142,12 @@ fprintf(stderr, "*** rpmcliALL: -%c,--%s %s %s opt %p arg %p val %d\n", opt->sho
 /*@unchecked@*/
 struct poptOption rpmcliAllPoptTable[] = {
 /*@-type@*/ /* FIX: cast? */
- { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA,
+ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA | POPT_CBFLAG_CONTINUE,
         rpmcliAllArgCallback, 0, NULL, NULL },
 /*@=type@*/
 
  { "debug", 'd', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_debug, -1,
         NULL, NULL },
- { "quiet", '\0', POPT_ARGFLAG_DOC_HIDDEN, NULL, 'q',
-       N_("provide less detailed output"), NULL},
- { "verbose", 'v', 0, 0, 'v',
-       N_("provide more detailed output"), NULL},
- { "version", '\0', 0, 0, POPT_SHOWVERSION,
-       N_("print the version of rpm being used"), NULL },
 
  { "define", 'D', POPT_ARG_STRING, 0, 'D',
        N_("define MACRO with value EXPR"),
@@ -147,35 +155,58 @@ struct poptOption rpmcliAllPoptTable[] = {
  { "eval", 'E', POPT_ARG_STRING, 0, 'E',
        N_("print macro expansion of EXPR"),
        N_("'EXPR'") },
- { "pipe", '\0', POPT_ARG_STRING|POPT_ARGFLAG_DOC_HIDDEN, &pipeOutput, 0,
-       N_("send stdout to <cmd>"),
-       N_("<cmd>") },
- { "root", 'r', POPT_ARG_STRING|POPT_ARGFLAG_SHOW_DEFAULT | POPT_ARGFLAG_DOC_HIDDEN, &rootdir, 0,
-       N_("use <dir> as the top level directory"),
-       N_("<dir>") },
- { "macros", '\0', POPT_ARG_STRING|POPT_ARGFLAG_DOC_HIDDEN, &macrofiles, 0,
+ { "macros", '\0', POPT_ARG_STRING, &macrofiles, 0,
        N_("read <FILE:...> instead of default file(s)"),
        N_("<FILE:...>") },
+
+ { "nodigest", '\0', 0, 0, RPMCLI_POPT_NODIGEST,
+        N_("don't verify package digest(s)"), NULL },
+ { "nohdrchk", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NOHDRCHK,
+        N_("don't verify database header(s) when retrieved"), NULL },
+#if HAVE_LIBIO_H && defined(_G_IO_IO_FILE_VERSION)
+ { "nolibio", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &noLibio, 1,
+       N_("disable use of libio(3) API"), NULL},
+#endif
+ { "nosignature", '\0', 0, 0, RPMCLI_POPT_NOSIGNATURE,
+        N_("don't verify package signature(s)"), NULL },
+
+ { "pipe", '\0', POPT_ARG_STRING|POPT_ARGFLAG_DOC_HIDDEN, &rpmcliPipeOutput, 0,
+       N_("send stdout to CMD"),
+       N_("CMD") },
 #if !defined(POPT_RCFILE)
- { "rcfile", '\0', POPT_ARG_STRING|POPT_ARGFLAG_DOC_HIDDEN, &rcfile, 0,
+ { "rcfile", '\0', POPT_ARG_STRING, &rpmcliRcfile, 0,
        N_("read <FILE:...> instead of default file(s)"),
        N_("<FILE:...>") },
 #else
- { "rcfile", '\0', 0, 0, POPT_RCFILE|POPT_ARGFLAG_DOC_HIDDEN,  
+ { "rcfile", '\0', 0, NULL, POPT_RCFILE,       
        N_("read <FILE:...> instead of default file(s)"),
        N_("<FILE:...>") },
 #endif
- { "showrc", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_SHOWRC,
+ { "root", 'r', POPT_ARG_STRING|POPT_ARGFLAG_SHOW_DEFAULT, &rpmcliRootDir, 0,
+       N_("use ROOT as top level directory"),
+       N_("ROOT") },
+
+ { "showrc", '\0', 0, NULL, POPT_SHOWRC,
        N_("display final rpmrc and macro configuration"),
        NULL },
+ { "quiet", '\0', 0, NULL, 'q',
+       N_("provide less detailed output"), NULL},
+ { "verbose", 'v', 0, NULL, 'v',
+       N_("provide more detailed output"), NULL},
+ { "version", '\0', 0, NULL, POPT_SHOWVERSION,
+       N_("print the version of rpm being used"), NULL },
 
 #if HAVE_LIBIO_H && defined(_G_IO_IO_FILE_VERSION)
  { "nolibio", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &noLibio, 1,
-       N_("disable use of libio(3) API"), NULL},
+       N_("disable use of libio(3) API"), NULL},
 #endif
 
  { "ftpdebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_ftp_debug, -1,
        N_("debug protocol data stream"), NULL},
+#ifdef DYING
+ { "poptdebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_popt_debug, -1,
+       N_("debug option/argument processing"), NULL},
+#endif
  { "rpmiodebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_rpmio_debug, -1,
        N_("debug rpmio I/O"), NULL},
  { "urldebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_url_debug, -1,
index 50c4da0..a0c1e6e 100644 (file)
@@ -78,6 +78,7 @@ static void installArgCallback( /*@unused@*/ poptContext con,
 /*@=kepttrans =usereleased @*/
        ia->numRelocations++;
       }        break;
+
     case POPT_ROLLBACK:
       {        time_t tid;
        if (arg == NULL)
@@ -91,6 +92,39 @@ static void installArgCallback( /*@unused@*/ poptContext con,
            argerror(_("malformed rollback time/date stamp argument"));
        ia->rbtid = tid;
       }        break;
+
+    case RPMCLI_POPT_NODIGEST:
+       ia->qva_flags |= VERIFY_DIGEST;
+       break;
+
+    case RPMCLI_POPT_NOSIGNATURE:
+       ia->qva_flags |= VERIFY_SIGNATURE;
+       break;
+
+    case RPMCLI_POPT_NOHDRCHK:
+       ia->qva_flags |= VERIFY_HDRCHK;
+       break;
+
+    case RPMCLI_POPT_NODEPS:
+       ia->noDeps = 1;
+       break;
+
+    case RPMCLI_POPT_NOMD5:
+       ia->transFlags |= RPMTRANS_FLAG_NOMD5;
+       break;
+
+    case RPMCLI_POPT_FORCE:
+       ia->probFilter |=
+               ( RPMPROB_FILTER_REPLACEPKG
+               | RPMPROB_FILTER_REPLACEOLDFILES
+               | RPMPROB_FILTER_REPLACENEWFILES
+               | RPMPROB_FILTER_OLDPACKAGE );
+       break;
+
+    case RPMCLI_POPT_NOSCRIPTS:
+       ia->transFlags |= (_noTransScripts | _noTransTriggers);
+       break;
+
     }
     /*@=branchstate@*/
 }
@@ -102,7 +136,7 @@ static void installArgCallback( /*@unused@*/ poptContext con,
 /*@unchecked@*/
 struct poptOption rpmInstallPoptTable[] = {
 /*@-type@*/ /* FIX: cast? */
- { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA,
+ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA | POPT_CBFLAG_CONTINUE,
        installArgCallback, 0, NULL, NULL },
 /*@=type@*/
 
@@ -135,9 +169,16 @@ struct poptOption rpmInstallPoptTable[] = {
  { "excludepath", '\0', POPT_ARG_STRING, 0, POPT_EXCLUDEPATH,
        N_("skip files with leading component <path> "),
        N_("<path>") },
+
+#ifdef DYING
  { "force", '\0', POPT_BIT_SET, &rpmIArgs.probFilter,
        (RPMPROB_FILTER_REPLACEPKG | RPMPROB_FILTER_REPLACEOLDFILES | RPMPROB_FILTER_REPLACENEWFILES | RPMPROB_FILTER_OLDPACKAGE),
        N_("short hand for --replacepkgs --replacefiles"), NULL},
+#else
+ { "force", '\0', 0, NULL, RPMCLI_POPT_FORCE,
+       N_("short hand for --replacepkgs --replacefiles"), NULL},
+#endif
+
  { "freshen", 'F', POPT_BIT_SET, &rpmIArgs.installInterfaceFlags,
        (INSTALL_UPGRADE|INSTALL_FRESHEN|INSTALL_INSTALL),
        N_("upgrade package(s) if already installed"),
@@ -160,8 +201,15 @@ struct poptOption rpmInstallPoptTable[] = {
        N_("install package(s)"), N_("<packagefile>+") },
  { "justdb", '\0', POPT_BIT_SET, &rpmIArgs.transFlags, RPMTRANS_FLAG_JUSTDB,
        N_("update the database, but do not modify the filesystem"), NULL},
+#ifdef DYING
  { "nodeps", '\0', 0, &rpmIArgs.noDeps, 0,
        N_("do not verify package dependencies"), NULL },
+#else
+ { "nodeps", '\0', 0, NULL, RPMCLI_POPT_NODEPS,
+       N_("do not verify package dependencies"), NULL },
+#endif
+ { "nomd5", '\0', 0, NULL, RPMCLI_POPT_NOMD5,
+       N_("don't verify MD5 digest of files"), NULL },
  { "noorder", '\0', POPT_BIT_SET,
        &rpmIArgs.installInterfaceFlags, INSTALL_NOORDER,
        N_("do not reorder package installation to satisfy dependencies"),
@@ -171,9 +219,14 @@ struct poptOption rpmInstallPoptTable[] = {
        RPMTRANS_FLAG_NOSUGGEST,
        N_("do not suggest missing dependency resolution(s)"), NULL},
 
+#ifdef DYING
  { "noscripts", '\0', POPT_BIT_SET, &rpmIArgs.transFlags,
        (_noTransScripts|_noTransTriggers),
        N_("do not execute package scriptlet(s)"), NULL },
+#else
+ { "noscripts", '\0', 0, NULL, RPMCLI_POPT_NOSCRIPTS,
+       N_("do not execute package scriptlet(s)"), NULL },
+#endif
  { "nopre", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN, &rpmIArgs.transFlags,
        RPMTRANS_FLAG_NOPRE,
        N_("do not execute %%pre scriptlet (if any)"), NULL },
@@ -187,15 +240,23 @@ struct poptOption rpmInstallPoptTable[] = {
        RPMTRANS_FLAG_NOPOSTUN,
        N_("do not execute %%postun scriptlet (if any)"), NULL },
 
+#ifdef DYING
  { "nodigest", '\0', POPT_BIT_SET, &rpmIArgs.qva_flags, VERIFY_DIGEST,
         N_("don't verify package digest(s)"), NULL },
  { "nohdrchk", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN, &rpmIArgs.qva_flags, VERIFY_HDRCHK,
         N_("don't verify database header(s) when retrieved"), NULL },
  { "nosignature", '\0', POPT_BIT_SET, &rpmIArgs.qva_flags, VERIFY_SIGNATURE,
         N_("don't verify package signature(s)"), NULL },
+#else
+ { "nodigest", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NODIGEST,
+        N_("don't verify package digest(s)"), NULL },
+ { "nohdrchk", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NOHDRCHK,
+        N_("don't verify database header(s) when retrieved"), NULL },
+ { "nosignature", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NOSIGNATURE,
+        N_("don't verify package signature(s)"), NULL },
+#endif
 
- { "notriggers", '\0', POPT_BIT_SET, &rpmIArgs.transFlags,
-       _noTransTriggers,
+ { "notriggers", '\0', POPT_BIT_SET, &rpmIArgs.transFlags, _noTransTriggers,
        N_("do not execute any scriptlet(s) triggered by this package"), NULL},
  { "notriggerprein", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
        &rpmIArgs.transFlags, RPMTRANS_FLAG_NOTRIGGERPREIN,
index 48ed031..6b519b7 100644 (file)
@@ -104,7 +104,7 @@ struct poptOption rpmQVSourcePoptTable[] = {
  { "hdrid", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_QUERYBYHDRID,
        N_("query/verify package(s) with header identifier"), "SHA1" },
  { "package", 'p', 0, 0, 'p',
-       N_("query/verify a package file (i.e. a binary *.rpm file)"), NULL },
+       N_("query/verify a package file"), NULL },
  { "pkgid", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_QUERYBYPKGID,
        N_("query/verify package(s) with package identifier"), "MD5" },
  { "query", 'q', POPT_ARGFLAG_DOC_HIDDEN, NULL, 'q',
@@ -147,11 +147,6 @@ static void queryArgCallback(/*@unused@*/poptContext con,
        break;
     case POPT_DUMP: qva->qva_flags |= QUERY_FOR_DUMPFILES | QUERY_FOR_LIST;
        break;
-    case 'v':
-       /*@-internalglobs@*/ /* FIX: shrug */
-       rpmIncreaseVerbosity();
-       /*@=internalglobs@*/
-       break;
 
     case POPT_QUERYFORMAT:
        if (arg) {
@@ -171,6 +166,41 @@ static void queryArgCallback(/*@unused@*/poptContext con,
            qva->qva_queryFormat = qf;
        }
        break;
+
+    case RPMCLI_POPT_NODIGEST:
+       qva->qva_flags |= VERIFY_DIGEST;
+       break;
+
+    case RPMCLI_POPT_NOSIGNATURE:
+       qva->qva_flags |= VERIFY_SIGNATURE;
+       break;
+
+    case RPMCLI_POPT_NOHDRCHK:
+       qva->qva_flags |= VERIFY_HDRCHK;
+       break;
+
+    case RPMCLI_POPT_NODEPS:
+       qva->qva_flags |= VERIFY_DEPS;
+       break;
+
+    case RPMCLI_POPT_NOMD5:
+       qva->qva_flags |= VERIFY_MD5;
+       break;
+
+#ifdef NOTYET
+    case RPMCLI_POPT_FORCE:
+       ia->probFilter |=
+               ( RPMPROB_FILTER_REPLACEPKG
+               | RPMPROB_FILTER_REPLACEOLDFILES
+               | RPMPROB_FILTER_REPLACENEWFILES
+               | RPMPROB_FILTER_OLDPACKAGE );
+       break;
+#endif
+
+    case RPMCLI_POPT_NOSCRIPTS:
+       qva->qva_flags |= VERIFY_SCRIPT;
+       break;
+
     }
 }
 
@@ -180,7 +210,7 @@ static void queryArgCallback(/*@unused@*/poptContext con,
 /*@unchecked@*/
 struct poptOption rpmQueryPoptTable[] = {
 /*@-type@*/ /* FIX: cast? */
- { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA, 
+ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA | POPT_CBFLAG_CONTINUE
        queryArgCallback, 0, NULL, NULL },
 /*@=type@*/
  { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmQVSourcePoptTable, 0,
@@ -215,8 +245,6 @@ struct poptOption rpmQueryPoptTable[] = {
        N_("substitute i18n sections into spec file"), NULL },
  { "state", 's', 0, 0, 's',
        N_("display the states of the listed files"), NULL },
- { "verbose", 'v', 0, 0, 'v',
-       N_("display a verbose file listing"), NULL },
    POPT_TABLEEND
 };
 
@@ -224,13 +252,22 @@ struct poptOption rpmQueryPoptTable[] = {
  * Verify mode options.
  */
 struct poptOption rpmVerifyPoptTable[] = {
+/*@-type@*/ /* FIX: cast? */
+ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA | POPT_CBFLAG_CONTINUE, 
+       queryArgCallback, 0, NULL, NULL },
+/*@=type@*/
  { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmQVSourcePoptTable, 0,
        NULL, NULL },
 
  /* Duplicate file verify flags from packages into command line options. */
 /** @todo Add --nomd5 alias to rpmpopt, eliminate. */
+#ifdef DYING
  { "nomd5", '\0', POPT_BIT_SET, &rpmQVKArgs.qva_flags, VERIFY_MD5,
        N_("don't verify MD5 digest of files"), NULL },
+#else
+ { "nomd5", '\0', 0, NULL, RPMCLI_POPT_NOMD5,
+       N_("don't verify MD5 digest of files"), NULL },
+#endif
  { "nosize", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
        &rpmQVKArgs.qva_flags, VERIFY_SIZE,
         N_("don't verify size of files"), NULL },
@@ -255,16 +292,31 @@ struct poptOption rpmVerifyPoptTable[] = {
 
  { "nofiles", '\0', POPT_BIT_SET, &rpmQVKArgs.qva_flags, VERIFY_FILES,
        N_("don't verify files in package"), NULL},
+#ifdef DYING
  { "nodeps", '\0', POPT_BIT_SET, &rpmQVKArgs.qva_flags, VERIFY_DEPS,
        N_("don't verify package dependencies"), NULL },
+#else
+ { "nodeps", '\0', 0, NULL, RPMCLI_POPT_NODEPS,
+       N_("don't verify package dependencies"), NULL },
+#endif
+
+#ifdef DYING
  { "noscript", '\0', POPT_BIT_SET,&rpmQVKArgs.qva_flags, VERIFY_SCRIPT,
         N_("don't execute verify script(s)"), NULL },
  /* XXX legacy had a trailing s on --noscript */
  { "noscripts", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
        &rpmQVKArgs.qva_flags, VERIFY_SCRIPT,
         N_("don't execute verify script(s)"), NULL },
- { "nodigest", '\0', POPT_BIT_SET,
-       &rpmQVKArgs.qva_flags, VERIFY_DIGEST,
+#else
+ { "noscript", '\0', 0, NULL, RPMCLI_POPT_NOSCRIPTS,
+        N_("don't execute verify script(s)"), NULL },
+ /* XXX legacy had a trailing s on --noscript */
+ { "noscripts", '\0', POPT_ARGFLAG_DOC_HIDDEN, NULL, RPMCLI_POPT_NOSCRIPTS,
+        N_("don't execute verify script(s)"), NULL },
+#endif
+
+#ifdef DYING
+ { "nodigest", '\0', POPT_BIT_SET, &rpmQVKArgs.qva_flags, VERIFY_DIGEST,
         N_("don't verify package digest(s)"), NULL },
  { "nohdrchk", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
        &rpmQVKArgs.qva_flags, VERIFY_HDRCHK,
@@ -272,6 +324,14 @@ struct poptOption rpmVerifyPoptTable[] = {
  { "nosignature", '\0', POPT_BIT_SET,
        &rpmQVKArgs.qva_flags, VERIFY_SIGNATURE,
         N_("don't verify package signature(s)"), NULL },
+#else
+ { "nodigest", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NODIGEST,
+        N_("don't verify package digest(s)"), NULL },
+ { "nohdrchk", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NOHDRCHK,
+        N_("don't verify database header(s) when retrieved"), NULL },
+ { "nosignature", '\0', POPT_ARGFLAG_DOC_HIDDEN, 0, RPMCLI_POPT_NOSIGNATURE,
+        N_("don't verify package signature(s)"), NULL },
+#endif
 
 /** @todo Add --nogpg/--nopgp aliases to rpmpopt, eliminate. */
  { "nogpg", '\0', POPT_BIT_SET|POPT_ARGFLAG_DOC_HIDDEN,
@@ -290,7 +350,7 @@ struct poptOption rpmVerifyPoptTable[] = {
 /*@unchecked@*/
 struct poptOption rpmSignPoptTable[] = {
 /*@-type@*/ /* FIX: cast? */
- { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA,
+ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA | POPT_CBFLAG_CONTINUE,
        rpmQVSourceArgCallback, 0, NULL, NULL },
 /*@=type@*/
  { "addsign", '\0', 0, NULL, 'A',
index a54c922..f0eee64 100644 (file)
@@ -27,6 +27,15 @@ extern "C" {
 /*@unchecked@*/
 extern struct poptOption               rpmcliAllPoptTable[];
 
+/*@unchecked@*/ /*@observer@*/ /*@null@*/
+extern const char * rpmcliPipeOutput;
+
+/*@unchecked@*/ /*@observer@*/ /*@null@*/
+extern const char * rpmcliRcfile;
+
+/*@unchecked@*/ /*@observer@*/ /*@null@*/
+extern const char * rpmcliRootDir;
+
 /**
  * Initialize most everything needed by an rpm CLI executable context.
  * @param argc                 no. of args
@@ -43,6 +52,17 @@ rpmcliInit(int argc, char *const argv[], struct poptOption * optionsTable)
                fileSystem, internalState @*/;
 
 /**
+ * Make sure that rpm configuration has been read.
+ * @warning Options like --rcfile and --verbose must precede callers option.
+ */
+/*@mayexit@*/
+void rpmcliConfigured(void)
+       /*@globals rpmCLIMacroContext, rpmGlobalMacroContext,
+               fileSystem, internalState @*/
+       /*@modifies rpmCLIMacroContext, rpmGlobalMacroContext,
+               fileSystem, internalState @*/;
+
+/**
  * Destroy most everything needed by an rpm CLI executable context.
  * @param optCon               popt context
  * @return                     NULL always
@@ -51,6 +71,17 @@ poptContext
 rpmcliFini(/*@only@*/ /*@null@*/ poptContext optCon)
        /*@modifies optCon @*/;
 
+/**
+ * Common/global popt tokens used for command line option tables.
+ */
+#define        RPMCLI_POPT_NODEPS              -1025
+#define        RPMCLI_POPT_FORCE               -1026
+#define        RPMCLI_POPT_NOMD5               -1027
+#define        RPMCLI_POPT_NOSCRIPTS           -1028
+#define        RPMCLI_POPT_NOSIGNATURE         -1029
+#define        RPMCLI_POPT_NODIGEST            -1030
+#define        RPMCLI_POPT_NOHDRCHK            -1031
+
 /* ==================================================================== */
 /** \name RPMBT */
 /*@{*/
@@ -181,6 +212,12 @@ typedef enum rpmQueryFlags_e {
     QUERY_FOR_DUMPFILES)
 
 /** \ingroup rpmcli
+ * Bit(s) from common command line options.
+ */
+/*@unchecked@*/
+extern rpmQueryFlags rpmcliQueryFlags;
+
+/** \ingroup rpmcli
  * Bit(s) to control rpmVerify() operation, stored in qva_flags.
  * @todo Merge rpmQueryFlags, rpmVerifyFlags, and rpmVerifyAttrs values?.
  */
@@ -472,17 +509,17 @@ struct rpmInstallArguments_s {
     rpmprobFilterFlags probFilter;
     rpmInstallInterfaceFlags installInterfaceFlags;
     rpmEraseInterfaceFlags eraseInterfaceFlags;
-/*@owned@*/ /*@null@*/
-    rpmRelocation * relocations;
+    rpmQueryFlags qva_flags;   /*!< from --nodigest/--nosignature */
+    uint_32 rbtid;             /*!< from --rollback */
     int numRelocations;
     int noDeps;
     int incldocs;
-    rpmQueryFlags qva_flags;   /*!< from --nodigest/--nosignature */
+/*@owned@*/ /*@null@*/
+    rpmRelocation * relocations;
 /*@null@*/
     const char * prefix;
 /*@observer@*/ /*@null@*/
     const char * rootdir;
-    uint_32 rbtid;             /*!< from --rollback */
 };
 
 /** \ingroup rpmcli
index 91e638b..f9e3a1d 100644 (file)
@@ -357,10 +357,6 @@ rpmfi rpmfiInit(rpmfi fi, int fx)
            fi->i = fx - 1;
            fi->j = -1;
        }
-#ifdef DYING
-       else
-           fi = NULL;
-#endif
     }
 
     /*@-refcounttrans@*/
index 2e04aa5..a398e34 100644 (file)
@@ -444,7 +444,8 @@ rpmtsi XrpmtsiInit(rpmts ts, const char * fn, unsigned int ln)
     tsi = xcalloc(1, sizeof(*tsi));
     tsi->ts = rpmtsLink(ts, "rpmtsi");
     tsi->reverse = ((rpmtsFlags(ts) & RPMTRANS_FLAG_REVERSE) ? 1 : 0);
-    tsi->oc = (tsi->reverse ? (rpmtsNElements(ts) - 1) : 0);
+    tsi->ocmax = rpmtsNElements(ts);
+    tsi->oc = (tsi->reverse ? (tsi->ocmax - 1) : 0);
     tsi->ocsave = tsi->oc;
 /*@-modfilesys@*/
 if (_rpmte_debug)
@@ -465,13 +466,13 @@ rpmte rpmtsiNextElement(rpmtsi tsi)
     rpmte te = NULL;
     int oc = -1;
 
-    if (tsi == NULL || tsi->ts == NULL || rpmtsNElements(tsi->ts) <= 0)
+    if (tsi == NULL || tsi->ts == NULL || tsi->ocmax <= 0)
        return te;
 
     if (tsi->reverse) {
-       if (tsi->oc >= 0)                       oc = tsi->oc--;
+       if (tsi->oc >= 0)               oc = tsi->oc--;
     } else {
-       if (tsi->oc < rpmtsNElements(tsi->ts))  oc = tsi->oc++;
+       if (tsi->oc < tsi->ocmax)       oc = tsi->oc++;
     }
     tsi->ocsave = oc;
 /*@-branchstate@*/
index 5fbd235..0f512dd 100644 (file)
@@ -128,6 +128,7 @@ struct rpmtsi_s {
     rpmts ts;          /*!< transaction set. */
     int reverse;       /*!< reversed traversal? */
     int ocsave;                /*!< last returned iterator index. */
+    int ocmax;         /*!< iterator max index. */
     int oc;            /*!< iterator index. */
 };
 
index b9cf4bf..9efe99b 100644 (file)
@@ -7,6 +7,7 @@
 
 #include <rpmmacro.h>  /* XXX for rpmExpand */
 
+#include "fsm.h"
 #include "psm.h"
 
 #include "rpmdb.h"
@@ -111,9 +112,9 @@ static fileAction decideFileFate(const rpmts ts,
        }
     }
 
-    diskWhat = whatis(sb.st_mode);
-    dbWhat = whatis(ofi->fmodes[ofi->i]);
-    newWhat = whatis(nfi->fmodes[nfi->i]);
+    diskWhat = whatis((int_16)sb.st_mode);
+    dbWhat = whatis(rpmfiFMode(ofi));
+    newWhat = whatis(rpmfiFMode(nfi));
 
     /*
      * RPM >= 2.3.10 shouldn't create config directories -- we'll ignore
@@ -136,36 +137,25 @@ static fileAction decideFileFate(const rpmts ts,
      * possible in case something else (like the timestamp) has changed.
      */
     if (dbWhat == REG) {
-#ifdef DYING
-       if (ofi->md5s != NULL && nfi->md5s != NULL) {
-#endif
-           const unsigned char * omd5 = ofi->md5s + (16 * ofi->i);
-           const unsigned char * nmd5 = nfi->md5s + (16 * nfi->i);
-           if (domd5(fn, buffer, 0, NULL))
-               return FA_CREATE;       /* assume file has been removed */
-           if (!memcmp(omd5, buffer, 16))
-               return FA_CREATE;       /* unmodified config file, replace. */
-           if (!memcmp(omd5, nmd5, 16))
-               return FA_SKIP;         /* identical file, don't bother. */
-#ifdef DYING
-       } else {
-           const char * omd5 = ofi->fmd5s[ofi->i];
-           const char * nmd5 = nfi->fmd5s[nfi->i];
-           if (domd5(fn, buffer, 1, NULL))
-               return FA_CREATE;       /* assume file has been removed */
-           if (!strcmp(omd5, buffer))
-               return FA_CREATE;       /* unmodified config file, replace. */
-           if (!strcmp(omd5, nmd5))
-               return FA_SKIP;         /* identical file, don't bother. */
-       }
-#endif
+       const unsigned char * omd5, * nmd5;
+       if (domd5(fn, buffer, 0, NULL))
+           return FA_CREATE;   /* assume file has been removed */
+       omd5 = rpmfiMD5(ofi);
+       if (!memcmp(omd5, buffer, 16))
+           return FA_CREATE;   /* unmodified config file, replace. */
+       nmd5 = rpmfiMD5(nfi);
+       if (!memcmp(omd5, nmd5, 16))
+           return FA_SKIP;     /* identical file, don't bother. */
     } else /* dbWhat == LINK */ {
+       const char * oFLink, * nFLink;
        memset(buffer, 0, sizeof(buffer));
        if (readlink(fn, buffer, sizeof(buffer) - 1) == -1)
            return FA_CREATE;   /* assume file has been removed */
-       if (!strcmp(ofi->flinks[ofi->i], buffer))
+       oFLink = rpmfiFLink(ofi);
+       if (!strcmp(oFLink, buffer))
            return FA_CREATE;   /* unmodified config file, replace. */
-       if (!strcmp(ofi->flinks[ofi->i], nfi->flinks[nfi->i]))
+       nFLink = rpmfiFLink(nfi);
+       if (!strcmp(oFLink, nFLink))
            return FA_SKIP;     /* identical file, don't bother. */
      }
 
@@ -185,29 +175,19 @@ static fileAction decideFileFate(const rpmts ts,
 static int filecmp(rpmfi afi, rpmfi bfi)
        /*@*/
 {
-    fileTypes awhat = whatis(afi->fmodes[afi->i]);
-    fileTypes bwhat = whatis(bfi->fmodes[bfi->i]);
+    fileTypes awhat = whatis(rpmfiFMode(afi));
+    fileTypes bwhat = whatis(rpmfiFMode(bfi));
 
     if (awhat != bwhat) return 1;
 
     if (awhat == LINK) {
-       const char * alink = afi->flinks[afi->i];
-       const char * blink = bfi->flinks[bfi->i];
+       const char * alink = rpmfiFLink(afi);
+       const char * blink = rpmfiFLink(bfi);
        return strcmp(alink, blink);
     } else if (awhat == REG) {
-#ifdef DYING
-       if (afi->md5s != NULL && bfi->md5s != NULL) {
-#endif
-           const unsigned char * amd5 = afi->md5s + (16 * afi->i);
-           const unsigned char * bmd5 = bfi->md5s + (16 * bfi->i);
-           return memcmp(amd5, bmd5, 16);
-#ifdef DYING
-       } else {
-           const char * amd5 = afi->fmd5s[afi->i];
-           const char * bmd5 = bfi->fmd5s[bfi->i];
-           return strcmp(amd5, bmd5);
-       }
-#endif
+       const unsigned char * amd5 = rpmfiMD5(afi);
+       const unsigned char * bmd5 = rpmfiMD5(bfi);
+       return memcmp(amd5, bmd5, 16);
     }
 
     return 0;
@@ -253,6 +233,7 @@ static int handleInstInstalledFiles(const rpmts ts,
     ps = rpmtsProblems(ts);
     for (i = 0; i < sharedCount; i++, shared++) {
        int otherFileNum, fileNum;
+       int isCfgFile;
 
        otherFileNum = shared->otherFileNum;
        (void) rpmfiSetFX(otherFi, otherFileNum);
@@ -260,6 +241,8 @@ static int handleInstInstalledFiles(const rpmts ts,
        fileNum = shared->pkgFileNum;
        (void) rpmfiSetFX(fi, fileNum);
 
+       isCfgFile = ((rpmfiFFlags(otherFi) | rpmfiFFlags(fi)) & RPMFILE_CONFIG);
+
 #ifdef DYING
        /* XXX another tedious segfault, assume file state normal. */
        if (otherStates && otherStates[otherFileNum] != RPMFILE_STATE_NORMAL)
@@ -277,7 +260,7 @@ static int handleInstInstalledFiles(const rpmts ts,
                        altNEVR,
                        0);
            }
-           if (!(rpmfiFFlags(otherFi) | rpmfiFFlags(fi)) & RPMFILE_CONFIG) {
+           if (!isCfgFile) {
                /*@-assignexpose@*/ /* FIX: p->replaced, not fi */
                if (!shared->isRemoved)
                    fi->replaced[numReplaced++] = *shared;
@@ -285,13 +268,12 @@ static int handleInstInstalledFiles(const rpmts ts,
            }
        }
 
-       if ((rpmfiFFlags(otherFi) | rpmfiFFlags(fi)) & RPMFILE_CONFIG) {
+       if (isCfgFile) {
            fileAction action;
            action = decideFileFate(ts, otherFi, fi);
            fi->actions[fileNum] = action;
        }
-       fi->replacedSizes[fileNum] = otherFi->fsizes[otherFi->i];
-
+       fi->replacedSizes[fileNum] = rpmfiFSize(otherFi);
     }
     ps = rpmpsFree(ps);
 
@@ -451,7 +433,7 @@ otherFps->baseName);
 if (otherFileNum == otherFc) {
 /*@-modfilesys@*/
 if (_fps_debug)
-fprintf(stderr, "*** NULL %s/%s%s\n",
+fprintf(stderr, "*** FP_EQUAL NULL %s/%s%s\n",
 ISROOT(fiFps->entry->dirName),
 (fiFps->subDir ? fiFps->subDir : ""),
 fiFps->baseName);
@@ -469,7 +451,8 @@ fiFps->baseName);
 /*@=boundswrite@*/
     if (bingoFps == NULL) {
 /*@-modfilesys@*/
-fprintf(stderr, "*** NULL %s/%s%s\n",
+if (_fps_debug)
+fprintf(stderr, "*** bingoFps NULL %s/%s%s\n",
 ISROOT(fiFps->entry->dirName),
 (fiFps->subDir ? fiFps->subDir : ""),
 fiFps->baseName);
@@ -481,6 +464,7 @@ fiFps->baseName);
     /*@-nullpass@*/    /* LCL: looks good to me */
     if (!(fiFps == bingoFps || FP_EQUAL((*fiFps), (*bingoFps)))) {
 /*@-modfilesys@*/
+if (_fps_debug)
 fprintf(stderr, "***  BAD %s/%s%s\n",
 ISROOT(bingoFps->entry->dirName),
 (bingoFps->subDir ? bingoFps->subDir : ""),
@@ -517,6 +501,8 @@ static void handleOverlappedFiles(const rpmts ts,
        struct fingerPrint_s * fiFps;
        int otherPkgNum, otherFileNum;
        rpmfi otherFi;
+       int_32 FFlags;
+       int_16 FMode;
        const rpmfi * recs;
        int numRecs;
 
@@ -525,6 +511,8 @@ static void handleOverlappedFiles(const rpmts ts,
 
        fn = rpmfiFN(fi);
        fiFps = fi->fps + i;
+       FFlags = rpmfiFFlags(fi);
+       FMode = rpmfiFMode(fi);
 
        fixupSize = 0;
 
@@ -594,10 +582,9 @@ static void handleOverlappedFiles(const rpmts ts,
                /* XXX is this test still necessary? */
                if (fi->actions[i] != FA_UNKNOWN)
                    /*@switchbreak@*/ break;
-               if ((rpmfiFFlags(fi) & RPMFILE_CONFIG) && 
-                       !lstat(fn, &sb)) {
+               if ((FFlags & RPMFILE_CONFIG) && !lstat(fn, &sb)) {
                    /* Here is a non-overlapped pre-existing config file. */
-                   fi->actions[i] = (rpmfiFFlags(fi) & RPMFILE_NOREPLACE)
+                   fi->actions[i] = (FFlags & RPMFILE_NOREPLACE)
                        ? FA_ALTNAME : FA_BACKUP;
                } else {
                    fi->actions[i] = FA_CREATE;
@@ -618,11 +605,11 @@ assert(otherFi != NULL);
            }
 
            /* Try to get the disk accounting correct even if a conflict. */
-           fixupSize = otherFi->fsizes[otherFileNum];
+           fixupSize = rpmfiFSize(otherFi);
 
-           if ((rpmfiFFlags(fi) & RPMFILE_CONFIG) && !lstat(fn, &sb)) {
+           if ((FFlags & RPMFILE_CONFIG) && !lstat(fn, &sb)) {
                /* Here is an overlapped  pre-existing config file. */
-               fi->actions[i] = (rpmfiFFlags(fi) & RPMFILE_NOREPLACE)
+               fi->actions[i] = (FFlags & RPMFILE_NOREPLACE)
                        ? FA_ALTNAME : FA_SKIP;
            } else {
                fi->actions[i] = FA_CREATE;
@@ -643,16 +630,16 @@ assert(otherFi != NULL);
            }
            if (XFA_SKIPPING(fi->actions[i]))
                /*@switchbreak@*/ break;
-           if (fi->fstates && fi->fstates[i] != RPMFILE_STATE_NORMAL)
+           if (rpmfiFState(fi) != RPMFILE_STATE_NORMAL)
                /*@switchbreak@*/ break;
-           if (!(S_ISREG(fi->fmodes[i]) && (rpmfiFFlags(fi) & RPMFILE_CONFIG))) {
+           if (!(S_ISREG(FMode) && (FFlags & RPMFILE_CONFIG))) {
                fi->actions[i] = FA_ERASE;
                /*@switchbreak@*/ break;
            }
                
            /* Here is a pre-existing modified config file that needs saving. */
            {   char md5sum[50];
-               const unsigned char * MD5 = fi->md5s + (16 * i);
+               const unsigned char * MD5 = rpmfiMD5(fi);
                if (!domd5(fn, md5sum, 0, NULL) && memcmp(MD5, md5sum, 16)) {
                    fi->actions[i] = FA_BACKUP;
                    /*@switchbreak@*/ break;
@@ -664,8 +651,8 @@ assert(otherFi != NULL);
 /*@=boundswrite@*/
 
        /* Update disk space info for a file. */
-       rpmtsUpdateDSI(ts, fi->fps[i].entry->dev,
-                fi->fsizes[i], fi->replacedSizes[i], fixupSize, fi->actions[i]);
+       rpmtsUpdateDSI(ts, fiFps->entry->dev,
+                rpmfiFSize(fi), fi->replacedSizes[i], fixupSize, fi->actions[i]);
 
     }
     ps = rpmpsFree(ps);
@@ -892,20 +879,25 @@ static void skipFiles(const rpmts ts, rpmfi fi)
        fi = rpmfiInit(fi, 0);
        if (fi != NULL)         /* XXX lclint */
        while ((i = rpmfiNext(fi)) >= 0) {
-           const char * dir;
+           const char * fdn, * fbn;
+           int_16 fFMode;
 
            if (XFA_SKIPPING(fi->actions[i]))
                /*@innercontinue@*/ continue;
-           if (whatis(fi->fmodes[i]) != XDIR)
+
+           fFMode = rpmfiFMode(fi);
+
+           if (whatis(fFMode) != XDIR)
                /*@innercontinue@*/ continue;
-           dir = fi->dnl[fi->dil[i]];
-           if (strlen(dir) != dnlen)
+           fdn = rpmfiDN(fi);
+           if (strlen(fdn) != dnlen)
                /*@innercontinue@*/ continue;
-           if (strncmp(dir, dn, dnlen))
+           if (strncmp(fdn, dn, dnlen))
                /*@innercontinue@*/ continue;
-           if (strlen(fi->bnl[i]) != bnlen)
+           fbn = rpmfiBN(fi);
+           if (strlen(fbn) != bnlen)
                /*@innercontinue@*/ continue;
-           if (strncmp(fi->bnl[i], bn, bnlen))
+           if (strncmp(fbn, bn, bnlen))
                /*@innercontinue@*/ continue;
            rpmMessage(RPMMESS_DEBUG, _("excluding directory %s\n"), dn);
            fi->actions[i] = FA_SKIPNSTATE;
@@ -1107,11 +1099,6 @@ rpmMessage(RPMMESS_DEBUG, _("computing %d file fingerprints\n"), totalFileCount)
            continue;   /* XXX can't happen */
        fc = rpmfiFC(fi);
 
-#ifdef DYING   /* XXX W2DO? this is now done in rpmtsiFi, okay ??? */
-       fi->magic = RPMFIMAGIC;
-       fi->te = p;
-#endif
-
        /*@-branchstate@*/
        switch (rpmteType(p)) {
        case TR_ADDED:
index 790d9d7..38a9268 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,255 +74,163 @@ msgstr "chyba p
 msgid "cannot re-open payload: %s\n"
 msgstr "nemohu znovu otevøít payload: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "vypsat pou¾ívanou verzi rpm"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "poskytnout výstu s ménì detaily"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "poskytnout detailnìj¹í výstup"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "vypsat expanzi makra <výraz>+"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "odeslat stdout do <pøíkazu>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<pøík>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "pou¾ít <adr> jako adresáø nejvy¹¹í úrovnì"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<adresáø>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "èíst <soubor:...> místo implicitního makro souboru"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<soubor:...>"
-
-#: 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:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "zobrazit finální konfiguraci rpmrc a maker"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "zakázat pou¾ití libio(3) API"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "ladit protokol datového toku"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "ladit rpmio I/O"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "ladit manipulaci s URL cache"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "Volby dotazù (s -q or --query):"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "Vollby kontroly (s -V or --verify):"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "Volby signatury:"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "Volby databáze:"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "Sestavovací volby s [ <spec_soubor> | <tar_soubor> | <zdrojový_balíèek> ]:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr "Volby pro Instalaci/Aktualizaci/Mazání:"
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "Spoleèné volby pro v¹echny módy:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verze %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (c) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Tento program lze volnì ¹íøit podle podmínek GNU GPL."
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Pou¾ití: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "Volba --rcfile byla odstranìna.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Pou¾ijte volbu \"--macros <soubor:...>\".\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "specifikovat lze jen jeden hlavní re¾im"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "neoèekávaný pøíznak pro dotaz"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "neoèekávaný formát dotazu"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "neoèekávaný zdroj dotazu"
 
-#: rpmqv.c:738
-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:428
 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:430
 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:433
 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:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametry pro --prefix musejí zaèínat znakem /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 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:454
 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:458
 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:462
 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:466
 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:470
 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:474
 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:478
 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:483
 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:487
 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:491
 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:496
 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:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -330,7 +238,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:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -338,7 +246,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:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -346,13 +254,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:515
 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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -360,82 +268,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:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametry pro --root (-r) musejí zaèínat znakem /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "¾ádné soubory k podepsání\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "pøístup k souboru %s se nezdaøil\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp nenalezeno: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Vlo¾te heslovou frázi: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Chybná heslová fráze\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Heslová fráze je v poøádku.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "©patná %%_signature spec v souboru maker.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 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:620
 msgid "exec failed\n"
 msgstr "spu¹tìní selhalo\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "ke znovusestavení nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "pro sestavení nezadány ¾ádné spec soubory"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "pro sestavení nezadány ¾ádné tar soubory"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "k dotazu nezadány ¾ádné parametry"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "pro kontrolu nezadány ¾ádné balíèky"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekávané parametry pro --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "k dotazu nezadány ¾ádné parametry"
@@ -1227,7 +1135,7 @@ msgstr "Nenalezeny 
 msgid "Package has no %%description: %s\n"
 msgstr "Balíèek nemá ¾ádné %%description: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot byl ji¾ nastaven, ignoruji %s\n"
@@ -1661,17 +1569,107 @@ msgstr "%s: readLead selhalo\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "vypsat expanzi makra <výraz>+"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "èíst <soubor:...> místo implicitního makro souboru"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "nekontrolovat závislosti balíèkù"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "nekontrolovat architekturu balíèku"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "zakázat pou¾ití libio(3) API"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "ovìøit podpis v balíèku"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "odeslat stdout do <pøíkazu>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "pou¾ít <adr> jako adresáø nejvy¹¹í úrovnì"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "zobrazit finální konfiguraci rpmrc a maker"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "poskytnout výstu s ménì detaily"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "poskytnout detailnìj¹í výstup"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "vypsat pou¾ívanou verzi rpm"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "ladit protokol datového toku"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Interní chyba pøi zpracování parametrù (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "ladit rpmio I/O"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "ladit manipulaci s URL cache"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1692,21 +1690,21 @@ msgstr "p
 msgid "relocations must have a / following the ="
 msgstr "pøemístìní musejí mít za znakem = znak /"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 #, fuzzy
 msgid "malformed rollback time/date stamp argument"
 msgstr "poru¹ený rollback èas"
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "nainstalovat v¹echny soubory i konfigurace, které by se jinak mohly vynechat"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1714,151 +1712,140 @@ msgstr ""
 "odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
 "specifikuje-li <balíèek> více balíèkù)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "pøemístìní souborù v nepøemístitelném balíèku"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr "uchovat smazané soubory pøesunem do podadresáøe"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "smazat (deinstalovat) balíèek"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<balíèek>"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "neinstalovat dokumentaci"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "pøeskoèit soubory s úvodní cestou <cesta> "
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<cesta>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "zkratka pro --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "aktualizace balíèku jestli¾e je ji¾ nainstalován"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<soubor_balíèku>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "nekontrolovat architekturu balíèku"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "nekontrolovat operaèní systém balíèku"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "nekontrolovat volné místo na disku pøed instalací"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "nainstalovat dokumentaci"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "nainstalovat balíèek"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "upravit databázi, ale neupravovat systém souborovù"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "nekontrolovat MD5 souborù v balíèku"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "nekontrolovat závislosti balíèkù"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "nekontrolovat architekturu balíèku"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "ovìøit podpis v balíèku"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1866,48 +1853,52 @@ msgstr ""
 "aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
 "automaticky)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "bìhem instalace balíèku zobrazit procenta"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<adresáø>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "pøemístit soubory ze <staré_cesty> do <nové_cesty>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<stará_cesta>=<nová_cesta>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "uchovat smazané soubory pomocí pøebalení"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 #, fuzzy
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "odinstalovat nové balíèky, reinstalovat staré balíèky zpìt do data"
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr "<datum>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "aktualizace balíèku"
 
@@ -1939,8 +1930,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "dotaz/ovìøení balíèkù vlastnícího soubor"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "dotaz/ovìøení souboru s balíèkem (tj. binárního RPM souboru)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "dotázat/ovìøit v¹echny balíèky"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -1989,124 +1981,116 @@ msgstr "dotaz/ov
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "dotaz/ovìøení balíèkù poskytujících závislost"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "vypsat v¹echny konfiguraèní soubory"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "vypsat v¹echny soubory s dokumentací"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "zobrazit základní informace o souborech"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "vypsat soubory v balíèku"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr "vynechat %%ghost soubory"
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr "vynechat %%license soubory"
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr "vynechat %%readme soubory"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "pou¾ij následující formát dotazù"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "nahradit i18n sekce do spec souboru"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "zobrazit stav vypsaných souborù"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "zobrazit roz¹íøený výpis souborù"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "nekontrolovat MD5 souborù v balíèku"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "nekontrolovat velikost souborù"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "nekontrolovat cesty symbolických linek"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "nekontrolovat vlastníka souborù"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "nekontrolovat skupinu souborù"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "nekontrolovat èas zmìny souboru"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "nekontrolovat mód souborù"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "nekontrolovat soubory v balíèku"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nespou¹tìt %verifyscript (pokud existuje)"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "nekontrolovat SHA1 digest v hlavièce"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "nekontrolovat MD5 souborù v balíèku"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "ovìøit podpis v balíèku"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "generovat PGP/GPG podpis"
 
@@ -2450,37 +2434,37 @@ 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:607
+#: lib/rpmfi.c:603
 #, fuzzy
 msgid "========== relocations\n"
 msgstr "========== ukládání tsort relací\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vyøazen: %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s vytvoøen jako %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Provádìní(%s): %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
@@ -2946,13 +2930,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2965,7 +2949,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2978,7 +2962,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2986,21 +2970,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3584,64 +3568,54 @@ msgstr "nemohu zjistit stav %s: %s\n"
 msgid "don't verify header+payload signature"
 msgstr "ovìøit podpis v balíèku"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "nekontrolovat závislosti balíèkù"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "ovìøit podpis v balíèku"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 #, fuzzy
 msgid "Common options for all rpm modes and executables:"
 msgstr "Spoleèné volby pro v¹echny módy:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: otevøení selhalo: %s\n"
@@ -3651,6 +3625,44 @@ msgstr "%s: otev
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<pøík>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "èíst <soubor:...> místo implicitního makro souboru"
+
+#~ msgid "<file:...>"
+#~ msgstr "<soubor:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "èíst <soubor:...> místo implicitního rpmrc souboru"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Pou¾ití: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "Volba --rcfile byla odstranìna.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Pou¾ijte volbu \"--macros <soubor:...>\".\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "dotaz/ovìøení souboru s balíèkem (tj. binárního RPM souboru)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "zobrazit roz¹íøený výpis souborù"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "nekontrolovat závislosti balíèkù"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "ovìøit podpis v balíèku"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "definování makra <jméno> s obsahem <tìlo>"
 
index 088e438..b9cd7ef 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,265 +75,173 @@ msgstr "fejl ved l
 msgid "cannot re-open payload: %s\n"
 msgstr "kan ikke genåbne pakkeindhold: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "vis versionen af rpm som benyttes"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "medtag mindre detaljerede oplysninger"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "medtag mere detaljerede oplysninger"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "udlæs makroudvidelse af <udtryk>+"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "send standard-ud til <kmd>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<kmd>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "brug <katalog> som topniveau-katalog"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<katalog>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "læs <fil:...> i stedet for standard makrofil(er)"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<fil:...>"
-
-#: 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:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "vis den endelige rpmrc og makrokonfiguration"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "undlad at benytte libio(3)-API"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "aflus protokol-datastrøm"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "aflus rpmio I/O"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "aflus URL-bufferhåndtering"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "Forespørgselstilvalg (med -q eller --query):"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "Verifikationstilvalg (med -V eller --verify):"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "Signaturtilvalg"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "Databasetilvalg:"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr "Opbygningstilvalg med [ <spec-fil> | <tararkiv> | <kildepakke> ]:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "Fælles tilvalg for alle rpm-tilstande:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Dette program kan frit distribueres under betingelserne i GNU GPL"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Brug: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "Tilvalget --rcfile er fjernet.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Brug \"--macros <fil:...>\" i stedet..\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "kun ét hovedtilvalg kan angives"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "uventet forespørgselsflag"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "uventet forespørgselsformat"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "uventet forespørgselskilde"
 
-#: rpmqv.c:738
-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:428
 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:430
 msgid "files may only be relocated during package installation"
 msgstr "filer kan kun omrokeres under installation"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "kun én af --prefix eller --relocate kan bruges"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "parametre til --prefix skal starte med et /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan kun angives ved installation"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan kun angives ved installation"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan kun angives ved installation"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan kun angives ved installation"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan kun angives ved installation"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan kun angives ved installation"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "kun én af --excludedocs og --includedocs kan angives"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan kun angives ved installation"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan kun angives ved installation"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan kun angives ved installation"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan kun angives ved installation"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan kun angives ved installation"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 #, 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:506
 #, 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:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -341,13 +249,13 @@ msgstr ""
 "--nodeps kan kun angives ved opbygning, genopbygning, genoversættelse, "
 "installation, sletning og verifikation"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -355,82 +263,82 @@ msgstr ""
 "--root (-r) kan kun angives ved installation, sletning, forespørgsel og "
 "genopbygning af databasen"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parameteren til --root (-r) skal starte med et /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "ingen filer at underskrive\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan ikke tilgå filen %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp ikke fundet: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Indtast adgangskode: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Adgangskode ikke godkendt\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Adgangskode godkendt.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Ugyldig angivelse af %%_signature i makrofil.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign kan kun bruges ved pakkeopbygning"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "eksekvering mislykkedes\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "ingen pakkefiler angivet til genopbygning"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "ingen spec-fil angivet til opbygning"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "ingen tar-arkiver angivet til opbygning"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ingen pakker angivet ved installation"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "ingen pakker angivet ved installation"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "ingen parametre angivet ved forespørgsel"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "ingen parametre angivet ved verifikation"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "uventede parametre til --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "ingen parametre angivet ved forespørgsel"
@@ -1227,7 +1135,7 @@ msgstr "Ingen arkitekturer, der kan opbygges\n"
 msgid "Package has no %%description: %s\n"
 msgstr "Pakke har ingen %%description: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1660,17 +1568,107 @@ msgstr "%s: readLead mislykkedes\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "udlæs makroudvidelse af <udtryk>+"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "læs <fil:...> i stedet for standard makrofil(er)"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "undlad at tjekke pakkers afhængighedskrav"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "tjek ikke pakkens arkitektur"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "undlad at benytte libio(3)-API"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "verificér pakkesignatur"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "send standard-ud til <kmd>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "brug <katalog> som topniveau-katalog"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "vis den endelige rpmrc og makrokonfiguration"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "medtag mindre detaljerede oplysninger"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "medtag mere detaljerede oplysninger"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "vis versionen af rpm som benyttes"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "aflus protokol-datastrøm"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Intern fejl i parameterfortolkningen (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "aflus rpmio I/O"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "aflus URL-bufferhåndtering"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1691,21 +1689,21 @@ msgstr "omrokeringer skal indeholde et ="
 msgid "relocations must have a / following the ="
 msgstr "i omrokeringer skal = efterfølges af /"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installér alle filer -- også konfigurationsfiler, der ellers skulle "
 "overspringes"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1713,156 +1711,146 @@ msgstr ""
 "fjern alle pakker, som passer med <pakke> (normalt ville det medføre en "
 "fejl, hvis <pakke> angav flere pakker)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "udfør ingen pakkespecifikke skripter"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "omdirigér filer i ikke-omdirigérbar pakke"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "slet (afinstallér) pakke"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "<pakke>"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "installér ikke dokumentation"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "overspring filer med foranstillet komponent <sti> "
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "forkortelse for --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "opgradér pakke, hvis den allerede er installeret"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<pakkefil>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "udlæs #'er efterhånden som pakken installeres (virker sammen med -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "tjek ikke pakkens arkitektur"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "tjek ikke pakkens operativsystem"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "tjek ikke om der er diskplads, før der installeres"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "installér dokumentation"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "installér pakke"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "opdatér databasen, men rør ikke filsystemet"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "verificér ikke filerne i pakke"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "ændr ikke pakkernes installationsrækkefølge for at opfylde afhængigheder"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "undlad at tjekke pakkers afhængighedskrav"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "tjek ikke pakkens arkitektur"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "verificér pakkesignatur"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "udfør ikke småskripter, der måtte udløses af denne pakke"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "udfør ingen pakkespecifikke skripter"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1870,49 +1858,53 @@ msgstr ""
 "opgradér til en ældre version af pakken (--force gør ikke dette automatisk "
 "ved opgraderinger)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "vis procenter efterhånden som pakken installeres"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "omdirigér pakken til <katalog>, hvis omdirigérbar"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<katalog>"
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "omdirigér filer fra <gammelsti> til <nysti>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "<gammelsti>=<nysti>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "intallér selvom pakken erstatter installerede filer"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "geninstallér hvis pakken allerede er installeret"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "installér ikke, men fortæl om det ville lykkes eller ej"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "opgradér pakke"
@@ -1945,8 +1937,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "forespørg/verificér pakke(r), der ejer filen"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "forespørg/verificér en pakkefil (dvs. en binær *.rpm-fil)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "forespørg/verificér alle pakker"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -1995,131 +1988,122 @@ msgstr "foresp
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "forespørg/verificér pakke(r), der tilfredsstiller et krav"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "vis alle konfigurationsfiler"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "vis alle dokumentationsfiler"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "vis grundlæggende filinformation"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "vis liste over filerne i pakken"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead mislykkedes\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "brug følgende forespørgselsformat"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "erstat i18n-sektioner i spec-fil"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "vis filernes status"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "giv en detaljeret filliste"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "verificér ikke filerne i pakke"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "udfør ikke eventuelt %verifyscript"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "verificér ikke filerne i pakke"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "underskriv en pakke (slet nuværende signatur)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verificér pakkesignatur"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "underskriv en pakke (slet nuværende signatur)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "generér PGP/GPG-signatur"
@@ -2466,36 +2450,36 @@ 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:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr "========== gemmer omrokeringer\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ekskluderer %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omrokerer %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ekskluderer %s %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "omrokerer %s til %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "omrokerer kataloget %s til %s\n"
@@ -2955,13 +2939,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signaturfyld : %d\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
@@ -2974,7 +2958,7 @@ msgstr "ekskluderer kataloget %s\n"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2987,7 +2971,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2995,21 +2979,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3590,66 +3574,56 @@ msgstr "kunne ikke oprette %s: %s\n"
 msgid "don't verify header+payload signature"
 msgstr "verificér pakkesignatur"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "undlad at tjekke pakkers afhængighedskrav"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "verificér pakkesignatur"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr ""
 "opretter kataloget %s\n"
 "\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 #, fuzzy
 msgid "Common options for all rpm modes and executables:"
 msgstr "Fælles tilvalg for alle rpm-tilstande:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: åbning mislykkedes: %s\n"
@@ -3659,6 +3633,44 @@ msgstr "%s: 
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: læs manifest mislykkedes: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<kmd>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "læs <fil:...> i stedet for standard makrofil(er)"
+
+#~ msgid "<file:...>"
+#~ msgstr "<fil:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "læs <fil:...> i stedet for standard rpmrc-fil(er)"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Brug: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "Tilvalget --rcfile er fjernet.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Brug \"--macros <fil:...>\" i stedet..\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath angivet ved en operation, der ikke benytter en database"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "forespørg/verificér en pakkefil (dvs. en binær *.rpm-fil)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "giv en detaljeret filliste"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "undlad at tjekke pakkers afhængighedskrav"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "verificér pakkesignatur"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "definér makro <navn> med værdi <vrdi>"
 
index 2502ccd..9c64e93 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,171 @@ msgstr "Fehler beim Suchen nach Paket %s\n"
 msgid "cannot re-open payload: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "Die benutzte RPM-Version anzeigen"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "Die benutzte RPM-Version anzeigen"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "Standard-Ausgabe nach <BEFEHL> umleiten"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "<VERZ> als Stammverzeichnis benutzen"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 # , c-format
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Version %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright © 1998 - Red Hat Software"
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Dies darf unter den Bedingungen der »GNU GPL« frei verteilt werden"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Benutzung: rpm {--help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Benutzen Sie stattdessen -e oder --erase\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "Es darf nur ein Hauptmodus angegeben werden"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpmqv.c:738
-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:428
 #, 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:430
 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:433
 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:436
 #, 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "Argumente zu --prefix müssen mit einem / beginnen"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 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:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 #, 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:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -383,7 +289,7 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -392,7 +298,7 @@ msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -401,7 +307,7 @@ msgstr ""
 "--nodeps darf nur während der Paketinstallation, -deinstallation und -"
 "überprüfung angegeben werden"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -409,7 +315,7 @@ msgstr ""
 "--test darf nur während der Paketinstallation, -deinstallation und -"
 "erstellung angegeben werden"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -417,84 +323,84 @@ msgstr ""
 "--root (-r) darf nur während der Paketinstallation, -deinstallation, -"
 "anfrage und Datenbankneuerstellungen angegeben werden"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Das Passwort ist richtig.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign darf nur während der Paketerstellung benutzt werden"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "Unerwartete Argumente zu --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
@@ -1342,7 +1248,7 @@ msgid "Package has no %%description: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
 # , c-format
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
@@ -1799,16 +1705,105 @@ msgstr "%s: 
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "Die benutzte RPM-Version anzeigen"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "Dateiabhängigkeiten nicht überprüfen"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "Paket-Architektur nicht überprüfen"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "Paketsignatur überprüfen"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "Standard-Ausgabe nach <BEFEHL> umleiten"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "<VERZ> als Stammverzeichnis benutzen"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "Die benutzte RPM-Version anzeigen"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1830,21 +1825,21 @@ msgstr "Verschiebungen m
 msgid "relocations must have a / following the ="
 msgstr "bei Verschiebungen muss ein »/« dem »=« folgen"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "alle Dateien installieren, auch die config-Dateien, die sonst übergangen "
 "würden"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1852,158 +1847,148 @@ msgstr ""
 "Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
 "ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "Paket löschen (deinstallieren)"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "Dokumentation nicht installieren"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "Abkürzung für --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "Dokumentation installieren"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "Paket installieren"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "Paket installieren"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "Dateiabhängigkeiten nicht überprüfen"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "Paket-Architektur nicht überprüfen"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "Paketsignatur überprüfen"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -2011,50 +1996,54 @@ msgstr ""
 "Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
 "Aktualisierungen automatisch)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "Prozentangabe bei der Paketinstallation ausgeben"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "Paket installieren"
@@ -2091,7 +2080,7 @@ msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr "Anfrage an alle Pakete"
 
 #: lib/poptQV.c:109
@@ -2147,139 +2136,129 @@ msgstr "Anfrage nach Paketen, die die F
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 #, fuzzy
 msgid "list all configuration files"
 msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr "Dokumentation installieren"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 #, fuzzy
 msgid "dump basic file information"
 msgstr "Paketinformationen anzeigen"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 #, fuzzy
 msgid "list files in package"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 #, fuzzy
 msgid "use the following query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "Dateiliste des Pakets anzeigen"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "Paket installieren"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "Paket installieren"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "Paketsignatur überprüfen"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "PGP-Signatur generieren"
@@ -2633,39 +2612,39 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Hole %s heraus\n"
 
 # , c-format
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3139,13 +3118,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -3158,7 +3137,7 @@ msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3171,7 +3150,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3179,21 +3158,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3794,63 +3773,53 @@ msgstr "anlegen von %s fehlgeschlagen\n"
 msgid "don't verify header+payload signature"
 msgstr "Paketsignatur überprüfen"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "Dateiabhängigkeiten nicht überprüfen"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "Paketsignatur überprüfen"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
@@ -3860,6 +3829,34 @@ msgstr "%s: 
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Benutzung: rpm {--help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Benutzen Sie stattdessen -e oder --erase\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr ""
+#~ "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "Anfrage an alle Pakete"
+
+#, fuzzy
+#~ msgid "display a verbose file listing"
+#~ msgstr "Dateiliste des Pakets anzeigen"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "Dateiabhängigkeiten nicht überprüfen"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "Paketsignatur überprüfen"
+
 # oder besser: "... verletzen" ?
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
index 2e70344..52cd36d 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 207c803..d324536 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,164 @@ msgstr "virhe etsitt
 msgid "cannot re-open payload: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "tulosta käytetyn rpm:n versio"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "tulosta käytetyn rpm:n versio"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "lähetä vakiotuloste <komento>:lle"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "käytä <hakem> ylimpänä hakemistona"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versio %s\n"
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Tätä ohjelmaa voi vapaasti levittää GNU GPL:n puittessa"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "käyttö: rpm {--help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Käytä sen sijaan -e tai --erase .\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "vain yksi päämoodi voidaan määritellä"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpmqv.c:738
-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:428
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vain asennus tai päivitys voidaan pakottaa"
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "vain toinen --prefix tai --relocate voidaan antaa"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 #, 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:439
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix parametrien pitää alkaa /-merkillä"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -332,7 +238,7 @@ msgid ""
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -340,7 +246,7 @@ msgid ""
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -349,7 +255,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +263,7 @@ msgstr ""
 "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
 "käännettäessä"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,84 +271,84 @@ msgstr ""
 "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
 "kyseltäessä ja tietokannan uudelleenluonnissa"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametrit --root (-r):lle alettava /-merkillä"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "uudelleenkäännolle ei määritelty paketteja"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "käännökselle ei annettu määrittelytiedostoja"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "käännökselle ei määritelty tar-tiedostoja"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "tarkistukselle ei annettu parametrejä"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags: odottamattomia parametrejä"
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "kyselylle ei annettu parametrejä"
@@ -1236,7 +1142,7 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "En voi lukea %s: %s."
@@ -1685,16 +1591,105 @@ msgstr "%s: readLead  ep
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "tulosta käytetyn rpm:n versio"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "älä tarkista paketin riippuvuuksia"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "älä tarkista paketin arkkitehtuuria"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "tarkista paketin allekirjoitus"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "lähetä vakiotuloste <komento>:lle"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "käytä <hakem> ylimpänä hakemistona"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "tulosta käytetyn rpm:n versio"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1716,20 +1711,20 @@ msgstr "siirroissa pit
 msgid "relocations must have a / following the ="
 msgstr "siirroissa pitää olla / =-merkin jälkeen"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1737,157 +1732,147 @@ msgstr ""
 "poista kaikki paketit, joiden nimeä vastaa  <paketti> (tavallisesti, jos  "
 "<paketti> määrittää useita paketteja, tulee virhe)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "poista paketti"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "kysele kaikki paketit"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "älä asenna dokumentointia"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "lyhenne parametreille --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<vaihe> <määrittely> "
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "asenna dokumentaatio"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "asenna paketti"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "asenna paketti"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "älä tarkista paketin riippuvuuksia"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "älä tarkista paketin arkkitehtuuria"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "tarkista paketin allekirjoitus"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1895,49 +1880,53 @@ msgstr ""
 "päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
 "automaattisesti)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "tulosta asennuksen eteneminen prosentteina"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "asenna uudelleen, jos paketti on jo asennettu"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "älä asenna, mutta kerro onnistuisiko se"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "asenna paketti"
@@ -1974,7 +1963,7 @@ msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr "kysele kaikki paketit"
 
 #: lib/poptQV.c:109
@@ -2030,139 +2019,129 @@ msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 #, fuzzy
 msgid "list all configuration files"
 msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr "asenna dokumentaatio"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 #, fuzzy
 msgid "dump basic file information"
 msgstr "näytä paketin tiedot"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 #, fuzzy
 msgid "list files in package"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 #, fuzzy
 msgid "use the following query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "näytä paketin tiedostolistaus"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "asenna paketti"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "asenna paketti"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "tarkista paketin allekirjoitus"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "generoi PGP-allekirjoitus"
@@ -2509,36 +2488,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Haen: %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -3004,13 +2983,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -3023,7 +3002,7 @@ msgstr "virhe luotaessa hakemistoa %s: %s"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3036,7 +3015,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3044,21 +3023,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3649,63 +3628,53 @@ msgstr "%s:n luonti ep
 msgid "don't verify header+payload signature"
 msgstr "tarkista paketin allekirjoitus"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "älä tarkista paketin riippuvuuksia"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "tarkista paketin allekirjoitus"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: avaus ei onnistunut\n"
@@ -3715,6 +3684,33 @@ msgstr "%s: avaus ei onnistunut\n"
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "käyttö: rpm {--help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Käytä sen sijaan -e tai --erase .\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "kysele kaikki paketit"
+
+#, fuzzy
+#~ msgid "display a verbose file listing"
+#~ msgstr "näytä paketin tiedostolistaus"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "älä tarkista paketin riippuvuuksia"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "tarkista paketin allekirjoitus"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
 
index f425754..08dcb7a 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,182 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-#, fuzzy
-msgid "print the version of rpm being used"
-msgstr "   --version\t\t- affiche la version de rpm utilise"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "   --version\t\t- affiche la version de rpm utilise"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-#, fuzzy
-msgid "use <dir> as the top level directory"
-msgstr "      --root <dir>\t- utilise <dir> comme rpertoire racine"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Peut tre redistribu librement selon les termes de la GNU GPL"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Utilisez de prfrence -e ou --erase.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "source de requte inattendue"
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 #, 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:430
 #, 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:433
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 #, 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:439
 #, 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:442
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 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:454
 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:458
 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:462
 #, 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:466
 #, 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:470
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "un seul mode majeur peut tre spcifi"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 #, 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:478
 #, 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:483
 #, 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:487
 #, 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:491
 #, 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:496
 #, 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:501
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -359,7 +263,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -368,7 +272,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -377,7 +281,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
@@ -386,7 +290,7 @@ msgstr ""
 "--test ne peut tre spcifi que lors de l'installation ou dsinstallation d'un "
 "package"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -395,85 +299,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:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 #, fuzzy
 msgid "pgp not found: "
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "La vrification du mot de passe a chou\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Mot de passe correct.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 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:620
 #, fuzzy
 msgid "exec failed\n"
 msgstr "La construction a chou.\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "aucun package n'a t spcifi pour la reconstruction"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "aucun package n'a t spcifi pour la construction"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "aucun package n'a t spcifi pour la construction"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "aucun argument n'a t fourni pour la requte"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "aucun argument n'a t fourni pour la vrification"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "aucun argument n'a t fourni pour la requte"
@@ -1262,7 +1166,7 @@ msgstr "%s ne peut tre construit sur cette architecture\n"
 msgid "Package has no %%description: %s\n"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1709,16 +1613,106 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "   --version\t\t- affiche la version de rpm utilise"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr ""
+"        -f <file>+        - interroge le package  qui appartient <file>"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr ""
+"        -f <file>+        - interroge le package  qui appartient <file>"
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "      --root <dir>\t- utilise <dir> comme rpertoire racine"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+#, fuzzy
+msgid "print the version of rpm being used"
+msgstr "   --version\t\t- affiche la version de rpm utilise"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1741,181 +1735,169 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - affiche des '#' pendant l'installation du package "
 "(utile avec -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non install) <packagefile>"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr ""
-"        -f <file>+        - interroge le package  qui appartient <file>"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr ""
-"        -f <file>+        - interroge le package  qui appartient <file>"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -1924,56 +1906,60 @@ msgstr ""
 "      --oldpackage      - mise  jour par une ancienne version du package (--"
 "force"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr ""
 "      --percent         - affiche des '%' pendant l'installation du package"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installe mme si le package remplace des fichiers "
 "dj prsents"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr "      --replacepkgs      - rinstalle si le package est dj prsent"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 #, fuzzy
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 "      --test            - n'installe pas, mais indique si ca fonctionnerait "
 "ou pas"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr ""
@@ -2014,7 +2000,7 @@ msgstr ""
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
@@ -2073,139 +2059,130 @@ msgstr "aucun package n'a t spcifi pour la dsinstallation"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 #, fuzzy
 msgid "list all configuration files"
 msgstr ""
 "        -c                - donne uniquement la liste des fichiers de "
 "configuration (implique -l)"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr ""
 "        -d                - donne uniquement la liste des fichiers de "
 "documentation (implique -l)"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 #, fuzzy
 msgid "dump basic file information"
 msgstr ""
 "        -i                - affiche les informations relatives  un package"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 #, fuzzy
 msgid "list files in package"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 #, fuzzy
 msgid "use the following query format"
 msgstr "source de requte inattendue"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "        -l                - affiche la liste des packages"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "      --sign            - genre une signature PGP"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "      --sign            - genre une signature PGP"
@@ -2552,36 +2529,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3042,13 +3019,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -3061,7 +3038,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3074,7 +3051,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3082,21 +3059,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3676,65 +3653,53 @@ msgid "don't verify header+payload signature"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr ""
-"        -f <file>+        - interroge le package  qui appartient <file>"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr ""
-"        -f <file>+        - interroge le package  qui appartient <file>"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3745,6 +3710,29 @@ msgid "%s: read manifest failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Utilisez de prfrence -e ou --erase.\n"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr ""
+#~ "        -f <file>+        - interroge le package  qui appartient <file>"
+
+#, fuzzy
+#~ msgid "display a verbose file listing"
+#~ msgstr "        -l                - affiche la liste des packages"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr ""
+#~ "        -f <file>+        - interroge le package  qui appartient <file>"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr ""
+#~ "        -f <file>+        - interroge le package  qui appartient <file>"
+
+#, fuzzy
 #~ msgid "package %s has unsatisfied Requires: %s\n"
 #~ msgstr "aucun package n'a t spcifi pour l'installation"
 
index 1e7d7e6..f734cb3 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1201,7 +1109,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1619,16 +1527,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1649,211 +1640,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1882,7 +1869,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1929,118 +1916,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2377,36 +2356,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2857,13 +2836,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2876,7 +2855,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2889,7 +2868,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2897,21 +2876,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3485,60 +3464,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 56273d5..5cf76b8 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,355 +74,263 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "prenta útgáfunúmer rpm sem verið er að nota"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "prenta útvíkkun fjölva <expr>+"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "senda frálag í <skipun>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "sýna endanlega rpmrc og stillingar fjölva"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM útgáfa %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Höfundarréttur (C) 1998-2000 - Red Hat Inc"
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Þessu má dreifa frjálst samkvæmt skilmálum GNU GPL"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr ""
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1208,7 +1116,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot þegar skilgreind, hunsa %s\n"
@@ -1629,16 +1537,104 @@ msgstr "%s: Fseek br
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "prenta útvíkkun fjölva <expr>+"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "ekki skoða pakkaskilyrðin"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "ekki skoða pakkaskilyrðin"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "ekki skoða pakkaskilyrðin"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "senda frálag í <skipun>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "sýna endanlega rpmrc og stillingar fjölva"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "prenta útgáfunúmer rpm sem verið er að nota"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1659,215 +1655,208 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<pakkaskrá>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<pakkaskrá>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "setja inn pakka"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "ekki yfirfara MD5 undirritun skráa"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "ekki skoða pakkaskilyrðin"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "ekki skoða pakkaskilyrðin"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "ekki skoða pakkaskilyrðin"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<gömul>=<ný>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "uppfæra pakka"
 
@@ -1898,8 +1887,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "fyrirspurn/yfirferð á pakkann sam á skrá"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr ""
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "fyrirspurn/yfirferð á pakkann sam á skrá"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -1948,121 +1938,113 @@ msgstr "fyrirspurn/yfirfer
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "fyrirspurn/yfirferð á pakkana sem uppfylla þarfir annara pakka"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "ekki yfirfara MD5 undirritun skráa"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "ekki yfirfara stærð skráa"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "ekki yfirfara symlink slóð skráa"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "ekki yfirfara eiganda skráa"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "ekki yfirfara hop skráa"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "ekki yfirfara heimildir skráa"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "ekki yfirfara skrárnar í pakkanum"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ekki yfirfara SHA1 undirritunina"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ekki yfirfara MD5 undirritun skráa"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "búa til undirskrift"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "búa til undirskrift"
 
@@ -2400,36 +2382,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "lína %d: %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "%5d færa %s -> %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%5d færa %s -> %s\n"
@@ -2882,13 +2864,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2901,7 +2883,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2914,7 +2896,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2922,21 +2904,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3511,62 +3493,52 @@ msgstr "gat ekki b
 msgid "don't verify header+payload signature"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "ekki skoða pakkaskilyrðin"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "ekki skoða pakkaskilyrðin"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: Fseek brást: %s\n"
@@ -3576,6 +3548,14 @@ msgstr "%s: Fseek br
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s rmdir %s brást: %s\n"
 
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "ekki skoða pakkaskilyrðin"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "ekki skoða pakkaskilyrðin"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "skilgreina fjölva <nafn> með gildinu <gildi>"
 
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 44360ce..7963692 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,197 +81,103 @@ msgstr "
 msgid "cannot re-open payload: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "ɸ½à½ÐÎϤò <cmd> ¤Ø¥Ñ¥¤¥×¤·¤Þ¤¹"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ <dir> ¤ò»ÈÍѤ·¤Þ¤¹"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 #, fuzzy
 msgid "Signature options:"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ¥Ð¡¼¥¸¥ç¥ó %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 "Ãøºî¸¢ (C) 1998 - Red Hat Software\n"
 "ËÝÌõ¼Ô ¿ÀÅÄ ½¼ <kanda@nn.iij4u.or.jp>\n"
 "¸íÌõÅù¤Ï¿ÀÅĤޤÇ"
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "GNU°ìÈ̸øÍ­»ÈÍѵöÂú½ñ¤Î²¼¤Ç¼«Í³¤ËÇÛÉۤǤ­¤Þ¤¹"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "»ÈÍÑË¡: rpm {--help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "°ì¤Ä¤Î¥á¥¸¥ã¡¼¥â¡¼¥É¤Î¤ß¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr "Ì䤤¹ç¤ï¤»/¸¡¾Ú¤Ï°ìÅ٤˰ì¤Ä¤·¤«¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥é¥°"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥Õ¥©¡¼¥Þ¥Ã¥È"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "ͽ´ü¤»¤ÌÌ䤤¹ç¤ï¤»¤Î¥½¡¼¥¹"
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë¡¢¥¢¥Ã¥×¥°¥ì¡¼¥É¡¢¥½¡¼¥¹ºï½ü¡¢¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ëºï½ü»þ¤Î¤ß¶¯À©¤Ç¤­"
 "¤Þ¤¹"
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr "¥Õ¥¡¥¤¥ë¤Ï¥Ñ¥Ã¥±¡¼¥¸¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ßºÆÇÛÃ֤Ǥ­¤Þ¤¹"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¤â¤·¤¯¤Ï --relocate ¤Î¤¤¤º¤ì¤«¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
@@ -279,82 +185,82 @@ msgstr ""
 "--relocate ¤È --excludepath ¤Ï¿·¤·¤¤¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍÑ"
 "¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¤Ï¿·µ¬¤Ë¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¤È¤­¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¤Ø¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¤È --includedocs ¤Ï¤É¤Á¤é¤«°ìÊý¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "-ignoreos ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "-ignoresize ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Îºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "--justdb ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -362,13 +268,13 @@ msgid ""
 msgstr ""
 "--nodeps ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤ÎºîÀ®¡¢¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢¸¡¾Ú»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Î¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢ºîÀ®»þ¤Î¤ß»ØÄê¤Ç¤­¤Þ¤¹"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -376,83 +282,83 @@ msgstr ""
 "--root (-r) ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¡¢ºï½ü¡¢Ì䤤¹ç¤ï¤»¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹ºÆ¹½ÃÛ»þ¤Î¤ß»ØÄê¤Ç"
 "¤­¤Þ¤¹"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¤Î°ú¿ô¤Ï / ¤«¤é»Ï¤Þ¤é¤Í¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "½ð̾¤¹¤ë¤¿¤á¤Î¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¥¢¥¯¥»¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 #, fuzzy
 msgid "pgp not found: "
 msgstr "pgp ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¥Á¥§¥Ã¥¯¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "¥Ñ¥¹¥Õ¥ì¡¼¥º¤ÏÀµ¾ï¤Ç¤¹¡¥\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Î̵¸ú¤Ê %%_signature ¡£\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign ¤Ï¥Ñ¥Ã¥±¡¼¥¸ºîÀ®»þ¤Î¤ß»ÈÍѤǤ­¤Þ¤¹"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "¼Â¹Ô¼ºÇÔ\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "ºÆºîÀ®¤¹¤ë¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "ºîÀ®¤Î¤¿¤á¤Î spec ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "ºîÀ®(build)¤Î¤¿¤á¤Î tar ¥Õ¥¡¥¤¥ë¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "¸¡¾Ú¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¤Î°ú¿ô¤¬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹"
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "Ì䤤¹ç¤ï¤»¤Î¤¿¤á¤Î°ú¿ô¤¬¤¢¤ê¤Þ¤»¤ó"
@@ -1257,7 +1163,7 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "¥Ó¥ë¥É¥ë¡¼¥È¤Ï¤¹¤Ç¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
@@ -1710,16 +1616,106 @@ msgstr "%s: readLead 
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "ɸ½à½ÐÎϤò <cmd> ¤Ø¥Ñ¥¤¥×¤·¤Þ¤¹"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ <dir> ¤ò»ÈÍѤ·¤Þ¤¹"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "»ÈÍѤ·¤Æ¤¤¤ë rpm ¤Î¥Ð¡¼¥¸¥ç¥ó¤òɽ¼¨¤·¤Þ¤¹"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "°ú¿ô½èÍý(%d)¤Ç¤ÎÆâÉô¥¨¥é¡¼ :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1741,19 +1737,19 @@ msgstr "
 msgid "relocations must have a / following the ="
 msgstr "ºÆÇÛÃ֤Ϡ= ¤Î¼¡¤Ë / ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "ÀßÄê¤ò¥¹¥­¥Ã¥×¤·¡¢Á´¥Õ¥¡¥¤¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1761,164 +1757,154 @@ msgstr ""
 "<package> ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Þ¤¹(°ìÈÌ\n"
 "\t\t\t      Åª¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Þ¤¹"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "¥Ñ¥¹ <path> Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '#' ¤Çɽ¼¨¤·¤Þ¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоÝOS¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Þ¤¹¤¬¡¢\n"
 "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "°Í¸À­¤òËþ¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n"
 "¥¤¥ó¥¹¥È¡¼¥ë¤òÍ׵ᤷ¤Þ¤»¤ó"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
 "¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1926,53 +1912,57 @@ msgstr ""
 "¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹\n"
 "(¥¢¥Ã¥×¥°¥ì¡¼¥É»þ¤Î --force ¤Ï¤³¤ì¤ò¼«Æ°Åª¤Ë¹Ô¤¤¤Þ¤¹)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '%' ¤Çɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n"
 "ÀÜƬ¼­¤ò <dir> ¤ËÀßÄꤷ¤Þ¤¹"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë»þ¤ËÃÖ¤­´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n"
 "¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Þ¤¹"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
@@ -2009,8 +1999,8 @@ msgstr "
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
+msgid "query/verify a package file"
+msgstr "Á´¤Æ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -2067,138 +2057,128 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "<cap> ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 #, fuzzy
 msgid "list all configuration files"
 msgstr "Á´¤Æ¤ÎÀßÄê¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr "Á´¤Æ¤Î¥É¥­¥å¥á¥ó¥È¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 #, fuzzy
 msgid "dump basic file information"
 msgstr "´ðËÜŪ¤Ê¥Õ¥¡¥¤¥ë¾ðÊó¤ò¥À¥ó¥×¤·¤Þ¤¹"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 #, fuzzy
 msgid "list files in package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤òÎóµó¤·¤Þ¤¹\n"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "°Ê²¼¤ÎÌ䤤¹ç¤ï¤»¥Õ¥©¡¼¥Þ¥Ã¥È¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "°Ê²¼¤Î¥«¥¿¥í¥°¤«¤é i18n ¥»¥¯¥·¥ç¥ó¤òÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "Îóµó¤·¤¿¥Õ¥¡¥¤¥ë¤Î¾õÂÖ¤òɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptQV.c:219
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸Ãæ¤Î¥Õ¥¡¥¤¥ë¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë½ð̾¤·¤Þ¤¹(¸½ºß¤Î½ð̾¤Ï¼Î¤Æ¤é¤ì¤Þ¤¹)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "PGP/GPG ½ð̾¤òÀ¸À®¤·¤Þ¤¹"
@@ -2549,36 +2529,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS ¤Ï½ü³°¤µ¤ì¤Æ¤¤¤Þ¤¹: %s"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
@@ -3052,13 +3032,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
@@ -3071,7 +3051,7 @@ msgstr "
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3084,7 +3064,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3092,14 +3072,14 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 #, fuzzy
 msgid "repackage about-to-be-erased packages\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï°ì¤Ä¤Î¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸!\n"
@@ -3107,7 +3087,7 @@ msgstr "
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3700,63 +3680,53 @@ msgstr "%s 
 msgid "don't verify header+payload signature"
 msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
@@ -3766,6 +3736,33 @@ msgstr "%s: fdOpen 
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "»ÈÍÑË¡: rpm {--help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "-e ¤« --erase ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò»ÈÍѤ·¤Ê¤¤¤Î¤Ë --dbpath ¤¬Í¿¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
+
+#, fuzzy
+#~ msgid "display a verbose file listing"
+#~ msgstr "¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤ò¾éŤËɽ¼¨¤·¤Þ¤¹"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
 
index d94b9f6..bfbdb43 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,266 +74,174 @@ msgstr "
 msgid "cannot re-open payload: %s\n"
 msgstr "payload¸¦ ´Ù½Ã ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "ÇöÀç »ç¿ëµÇ°í Àִ rpm ¹öÀüÀ» Ç¥½ÃÇÕ´Ï´Ù"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "ÀÚ¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "¾ÆÁÖ »ó¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "<Ç¥Çö½Ä>+ ÀÇ ¸ÅÅ©·Î È®ÀåÀ» Ãâ·ÂÇÕ´Ï´Ù"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "Ç¥ÁØÃâ·ÂÀ» <¸í·É>À¸·Î º¸³À´Ï´Ù"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<¸í·É>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<µð·ºÅ丮>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<ÆÄÀÏ:..>"
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr "±âº» rpmrc ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "ÇöÀç ¼³Á¤µÇ¾î Àִ rpmrcÀÇ ³»¿ë°ú ¸ÅÅ©·Î¸¦ º¸¿©ÁÝ´Ï´Ù"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "libio(3) APIÀÇ »ç¿ëÀ» ÇØÁ¦ÇÕ´Ï´Ù"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "µ¥ÀÌÅÍ ½ºÆ®¸² ÇÁ·ÎÅäÄÝÀ» µð¹ö±× ÇÕ´Ï´Ù"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "rpmio ÀÔ/Ãâ·ÂÀ» µð¹ö±× ÇÕ´Ï´Ù"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "URL Ä³½Ã Çڵ鸵À» µð¹ö±× ÇÕ´Ï´Ù"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "ÁúÀÇ ¿É¼Ç (-q ¶Ç´Â --query ¿É¼Ç°ú ÇÔ²² »ç¿ë):"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "°ËÁõ ¿É¼Ç (-V ¶Ç´Â --verify ¿É¼Ç°ú ÇÔ²² »ç¿ë):"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "¼­¸í ¿É¼Ç:"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "µ¥ÀÌÅͺ£À̽º ¿É¼Ç:"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "´ÙÀ½°ú ÇÔ²² »ç¿ëÇϴ Á¦ÀÛ ¿É¼Ç [ <specÆÄÀÏ> | <tarÆÄÀÏ> | <¼Ò½º ÆÐÅ°Áö> ]:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr "¼³Ä¡/¾÷±×·¹À̵å/»èÁ¦ ¿É¼Ç:"
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "¸ðµç rpm ¸ðµå¿¡¼­ÀÇ ÀϹÝÀûÀΠ¿É¼Ç:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ¹öÀü - %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "ÀÌ ÇÁ·Î±×·¥Àº GNU Public License ³»¿¡¼­ ÀÚÀ¯·Ó°Ô Àç¹èÆ÷ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "* »ç¿ë¹ý: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "--rcfile ¿É¼ÇÀÌ Á¦°ÅµÇ¾ú½À´Ï´Ù.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "´ë½Å \"--macros <ÆÄÀÏ:..>\" À» »ç¿ëÇÕ´Ï´Ù.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "ÇϳªÀÇ ÁÖ(major) ¸ðµå¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÁúÀÇ/°ËÁõ À¯ÇüÀº °¢°¢ ´Ù¸¥ À¯Çü°ú µ¿½Ã¿¡ ¼öÇàÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Ç÷¡±× ÀÔ´Ï´Ù"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ Çü½Ä ÀÔ´Ï´Ù"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "ºÎÀûÀýÇÑ ÁúÀÇ ¼Ò½º ÀÔ´Ï´Ù"
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr "--dbpath´Â µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÏÁö ¾Ê±â À§ÇÑ ¿É¼ÇÀÔ´Ï´Ù"
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "¼³Ä¡, ¾÷±×·¹À̵å, ¼Ò½º »èÁ¦, spec ÆÄÀÏ »èÁ¦½Ã¿¡¸¸ ¼öÇàµË´Ï´Ù"
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÆÄÀÏÀ» Àç¹èÄ¡ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ¶Ç´Â --relocate ¿É¼Ç Áß Çϳª¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "--relocate ¿Í --excludepath ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ"
 "½À´Ï´Ù"
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix ¿É¼ÇÀº ÃÖ½ÅÀÇ ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÒ ¶§¿¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ¿Í --includedocs ¿É¼Ç¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ¿É¼ÇÀº ÆÐÅ°Áö »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr "½ºÅ©¸³Æ® ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr "Æ®¸®°Å ÇØÁ¦ ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡¿Í »èÁ¦½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -341,13 +249,13 @@ msgstr ""
 "--nodeps ¿É¼ÇÀº ÆÐÅ°Áö Á¦ÀÛ, ÀçÁ¦ÀÛ(rebuild), ÀçÄÄÆÄÀÏ(recompile), ¼³Ä¡, »è"
 "Á¦, °ËÁõ½Ã¿¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, Á¦À۽ÿ¡¸¸ ÁöÁ¤ÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -355,81 +263,81 @@ msgstr ""
 "--root (-r) ¿É¼ÇÀº ÆÐÅ°Áö ¼³Ä¡, »èÁ¦, ÁúÀÇ, µ¥ÀÌÅͺ£À̽º À籸Ãà½Ã¿¡¸¸ ÁöÁ¤ÇÒ "
 "¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ¿É¼ÇÀÇ Àμö´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "¼­¸íÇÒ ÆÄÀÏÀÌ ¾ø½À´Ï´Ù\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "%s ÆÄÀÏ¿¡ Á¢±ÙÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp¸¦ Ã£À» ¼ö ¾øÀ½: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Æнº ±¸¹®(pass phrase) ÀÔ·Â: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Æнº ±¸¹®(pass phrase)ÀÌ ÀÏÄ¡ÇÕ´Ï´Ù.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "¸ÅÅ©·Î ÆÄÀÏ¿¡ ºÎÀûÇÕÇÑ %%_signatureÀÇ ³»¿ëÀÌ ÀÖ½À´Ï´Ù.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign ¿É¼ÇÀº ÆÐÅ°Áö Á¦À۽ÿ¡¸¸ »ç¿ëÇÒ ¼ö ÀÖ½À´Ï´Ù"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "ÀçÁ¦ÀÛ(rebuild)ÇÒ ÆÐÅ°Áö ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ spec ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ÇÊ¿äÇÑ tar ÆÄÀÏÀÌ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr "»èÁ¦ÇÒ ÆÐÅ°Áö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "°ËÁõ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ¿É¼Ç¿¡ ºÎÀûÀýÇÑ Àμö°¡ ÁöÁ¤µÇ¾ú½À´Ï´Ù "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "ÁúÀÇ¿¡ ÇÊ¿äÇÑ Àμö°¡ ÁöÁ¤µÇÁö ¾Ê¾Ò½À´Ï´Ù"
@@ -1217,7 +1125,7 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "ÆÐÅ°Áö¿¡ %%descriptionÀÌ ¾øÀ½: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot´Â À̹̠ÁöÁ¤µÇ¾î ÀÖ½À´Ï´Ù, %s(À»)¸¦ ¹«½ÃÇÕ´Ï´Ù\n"
@@ -1645,17 +1553,107 @@ msgstr "%s: readLead
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "<Ç¥Çö½Ä>+ ÀÇ ¸ÅÅ©·Î È®ÀåÀ» Ãâ·ÂÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "libio(3) APIÀÇ »ç¿ëÀ» ÇØÁ¦ÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "Ç¥ÁØÃâ·ÂÀ» <¸í·É>À¸·Î º¸³À´Ï´Ù"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "ÇöÀç ¼³Á¤µÇ¾î Àִ rpmrcÀÇ ³»¿ë°ú ¸ÅÅ©·Î¸¦ º¸¿©ÁÝ´Ï´Ù"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "ÀÚ¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "¾ÆÁÖ »ó¼¼ÇÑ Ãâ·ÂÀ» Á¦°øÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "ÇöÀç »ç¿ëµÇ°í Àִ rpm ¹öÀüÀ» Ç¥½ÃÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "µ¥ÀÌÅÍ ½ºÆ®¸² ÇÁ·ÎÅäÄÝÀ» µð¹ö±× ÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Àμö Ã³¸®°úÁ¤ (%d) µµÁß ³»ºÎ ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "rpmio ÀÔ/Ãâ·ÂÀ» µð¹ö±× ÇÕ´Ï´Ù"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "URL Ä³½Ã Çڵ鸵À» µð¹ö±× ÇÕ´Ï´Ù"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1676,21 +1674,21 @@ msgstr "
 msgid "relocations must have a / following the ="
 msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '=' µÚ¿¡ '/' °¡ ¿Í¾ß ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr "·Ñ¹é(rollback)ÀÇ Àμö´Â ½Ã°£/³¯Â¥ ½ºÅÆÇÁ ÀÔ´Ï´Ù"
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr "·Ñ¹é(rollback)ÀÇ ÀμöÀΠ½Ã°£/³¯Â¥ ½ºÅÆÇÁ°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ƯÁ¤ ÆÄÀÏÀ» »ý·«Çϱâ À§ÇÑ ¼³Á¤ÀÌ Àû¿ëµÈ °æ¿ì¿¡µµ, ÆÐÅ°Áö ¾ÈÀÇ ¸ðµç ÆÄÀÏÀ» ¼³"
 "Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1698,155 +1696,144 @@ msgstr ""
 "<ÆÐÅ°Áö> À̸§°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö´Â ¸ðµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆÐÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆÐÅ°Áö"
 "¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ýÇÕ´Ï´Ù)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "ÆÐÅ°Áö ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "Àç¹èÄ¡ ±â´ÉÀÌ ¾ø´Â ÆÐÅ°ÁöÀÇ ÆÄÀÏÀ» Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr "ÇϺÎ-µð·ºÅ丮·Î À̸§ º¯°æ½Ã »èÁ¦µÈ ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "ÆÐÅ°Áö¸¦ (Á¦°Å) »èÁ¦ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<ÆÐÅ°Áö>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇԵȠ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "<°æ·Î>·Î ½ÃÀ۵Ǵ ÆÄÀÏÀº ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù "
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<°æ·Î>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¿Í --replacefiles ¿É¼ÇÀ» µ¿½Ã¿¡ »ç¿ëÇÕ´Ï´Ù"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "±âÁ¸¿¡ ¼³Ä¡µÈ ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<ÆÐÅ°ÁöÆÄÀÏ>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "ÆÐÅ°Áö ¼³Ä¡¸¦ Çؽø¶Å©(#)·Î Ç¥½ÃÇÕ´Ï´Ù (-v ¿É¼Ç°ú ÇÔ²² »ç¿ëÇϴ °ÍÀÌ ÁÁ½À´Ï"
 "´Ù)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "ÆÐÅ°ÁöÀÇ ¿î¿µÃ¼Á¦¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡Çϱâ Àü¿¡ µð½ºÅ© °ø°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇԵȠ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÆÄÀϽýºÅÛÀ» º¯°æÇÏÁö ¾Ê°í, µ¥ÀÌÅͺ£À̽º¸¦ °»½ÅÇÕ´Ï´Ù"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÀÇÁ¸¼ºÀÌ Àִ ÆÐÅ°Áö¸¦ ¼³Ä¡Çϵµ·Ï Àç¿ä±¸ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "%%pre ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "%%post ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "%%preun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "%%postun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "ÀÌ ÆÐÅ°Áö¿¡ ÀÇÇØ »ý¼ºµÇ´Â(triggered) ¾î¶°ÇÑ ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö "
 "¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerprein ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerin ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerpostun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1854,48 +1841,52 @@ msgstr ""
 "ÀÌÀü ¹öÀüÀÇ ÆÐÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--force ¿É¼ÇÀ» »ç¿ë½Ã¿¡´Â ÀÌ ¿É¼Ç"
 "ÀÌ ÀÚµ¿À¸·Î Àû¿ëµË´Ï´Ù)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "ÆÐÅ°Áö ¼³Ä¡¸¦ ÆÛ¼¾Æ®(%)·Î Ç¥½ÃÇÕ´Ï´Ù"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Àç¹èÄ¡ ±â´ÉÀÌ Àִ ÆÐÅ°ÁöÀÇ °æ¿ì, ÁöÁ¤ÇÑ <µð·ºÅ丮>·Î Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<µð·ºÅ丮>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "<ÀÌÀü°æ·Î>¿¡¼­ <»õ·Î¿î°æ·Î>·Î ÆÄÀÏÀ» Àç¹èÄ¡ ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<ÀÌÀü°æ·Î>=<»õ·Î¿î°æ·Î>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "ÀçÆÐŰ¡(repackaging)À¸·Î ÀÎÇØ »èÁ¦µÇ´Â ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã ±âÁ¸¿¡ ¼³Ä¡µÇ¾î Àִ ÆÄÀÏÀ» µ¤¾î¾¹´Ï´Ù"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "ÆÐÅ°Áö°¡ À̹̠¼³Ä¡µÇ¾î Àִ °æ¿ì¿¡µµ ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "»õ·Î ¼³Ä¡ »èÁ¦, ÀÌÀü ¼³Ä¡ À缳ġ, ÆÐÅ°Áö, <³¯Â¥> º¹±¸(back to date)"
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr "<³¯Â¥>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÏÁö ¾Ê°í, Á¦´ë·Î ¼³Ä¡µÇ´ÂÁö¸¸ È®ÀÎÇÕ´Ï´Ù"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
@@ -1925,8 +1916,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "Çì´õ ½Äº°ÀÚ(identifier)¸¦ »ç¿ëÇÏ¿© ÆÐÅ°Áö¸¦ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "ÆÐÅ°Áö ÆÄÀÏÀ» ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù (¿¹: ¹ÙÀ̳ʸ® *.rpm ÆÄÀÏ)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "¸ðµç ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõÇÕ´Ï´Ù"
 
 #: lib/poptQV.c:109
 msgid "query/verify package(s) with package identifier"
@@ -1973,124 +1965,116 @@ msgstr "
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "ÀÇÁ¸¼ºÀ» Á¦°øÇϴ ÆÐÅ°Áö¿¡ ´ëÇØ ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "¸ðµç ¼³Á¤ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "¸ðµç ¹®¼­ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "±âº» ÆÄÀÏ Á¤º¸¸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» ³ª¿­ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr "%%ghost ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr "%%license ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr "%%readme ÆÄÀÏÀ» »ý·«ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "´ÙÀ½ÀÇ ÁúÀÇ Çü½ÄÀ» »ç¿ëÇϽʽÿä"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "spec ÆÄÀÏ ¾ÈÀÇ i18n Ç׸ñ(section)À» ´ëü(substitute)ÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "³ª¿­µÈ ÆÄÀÏÀÇ »óÅÂ(state)¸¦ º¸¿©ÁÝ´Ï´Ù"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "ÆÄÀÏ ¸ñ·ÏÀ» ÀÚ¼¼È÷ º¸¿©ÁÝ´Ï´Ù"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "ÆÄÀÏÀÇ ¿ë·®À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "ÆÄÀÏÀÇ ½Éº¼¸¯ ¸µÅ© °æ·Î¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "ÆÄÀÏÀÇ ¼ÒÀ¯ÀÚ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "ÆÄÀÏÀÇ ±×·ìÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "ÆÄÀÏÀÇ ÃÖÁ¾ º¯°æ ½Ã°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "ÆÄÀÏÀÇ ¸ðµå¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "ÆÐÅ°Áö ¾ÈÀÇ ÆÄÀÏÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "%verifyscript¸¦ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "SHA1 Ãà¾à(digest) Çì´õ¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ÆÄÀÏÀÇ MD5 Ãà¾à(digest)À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "ÆÐÅ°Áö¿¡ ¼­¸íÇÕ´Ï´Ù (±âÁ¸ÀÇ ¼­¸íÀº »èÁ¦µË´Ï´Ù)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "ÆÐÅ°Áö¿¡ ¼­¸íÇÕ´Ï´Ù (±âÁ¸ÀÇ ¼­¸íÀº »èÁ¦µË´Ï´Ù)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "¼­¸íÀ» ÀÛ¼ºÇÕ´Ï´Ù"
 
@@ -2439,36 +2423,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "%s ÆÐÅ°ÁöÀÇ ÇÊ¿ä»çÇ×(³»¿ª)ÀÌ ¸¸Á·ÇÏÁö ¾ÊÀ½: %s\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr "========== Àç¹èÄ¡\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d Á¦¿Ü  %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d Àç¹èÄ¡ %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "%s%s multilib °æ·Î¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s(À»)¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s(À»)¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s µð·ºÅ丮¸¦ %s(À¸)·Î Àç¹èÄ¡ ÇÕ´Ï´Ù\n"
@@ -2931,13 +2915,13 @@ msgstr "
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "¼­¸í: size(%d)+pad(%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
@@ -2950,7 +2934,7 @@ msgstr "%s 
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2963,7 +2947,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2971,21 +2955,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3569,64 +3553,54 @@ msgstr "%s(
 msgid "don't verify header+payload signature"
 msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "%s µð·ºÅ丮¸¦ »ý¼ºÇÕ´Ï´Ù\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 #, fuzzy
 msgid "Common options for all rpm modes and executables:"
 msgstr "¸ðµç rpm ¸ðµå¿¡¼­ÀÇ ÀϹÝÀûÀΠ¿É¼Ç:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: ¿©´Âµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
@@ -3636,6 +3610,44 @@ msgstr "%s: 
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Àдµ¥ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<¸í·É>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "±âº» ¸ÅÅ©·Î ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
+
+#~ msgid "<file:...>"
+#~ msgstr "<ÆÄÀÏ:..>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "±âº» rpmrc ÆÄÀÏ ´ë½Å <ÆÄÀÏ:..>À» ÀоîµéÀÔ´Ï´Ù"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "* »ç¿ë¹ý: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "--rcfile ¿É¼ÇÀÌ Á¦°ÅµÇ¾ú½À´Ï´Ù.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "´ë½Å \"--macros <ÆÄÀÏ:..>\" À» »ç¿ëÇÕ´Ï´Ù.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath´Â µ¥ÀÌÅͺ£À̽º¸¦ »ç¿ëÇÏÁö ¾Ê±â À§ÇÑ ¿É¼ÇÀÔ´Ï´Ù"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "ÆÐÅ°Áö ÆÄÀÏÀ» ÁúÀÇ/°ËÁõ ÇÕ´Ï´Ù (¿¹: ¹ÙÀ̳ʸ® *.rpm ÆÄÀÏ)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "ÆÄÀÏ ¸ñ·ÏÀ» ÀÚ¼¼È÷ º¸¿©ÁÝ´Ï´Ù"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "<º»¹®>ÀÇ ³»¿ë(value)À¸·Î <À̸§> ¸ÅÅ©·Î¸¦ Á¤ÀÇÇÕ´Ï´Ù"
 
index 51c7c4d..bb4ad1f 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,253 +74,161 @@ 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:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "skriv ut hvilken versjon av rpm som brukes"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "gi mindre detaljert info"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "gi mer detaljert info"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "skriv ut makroutvidelsen av <uttr>+"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "send stdout til <kmd>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<kmd>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "bruk <katalog> som toppnivåkatalog"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<kat>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "les <fil:...> i stedet for standard makrofil(er)"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<fil:...>"
-
-#: 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:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "vis endelig rpmrc og makrokonfigurasjon"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "slå av bruk av libio(3) API"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "feilsøking på protokoll-datastrøm"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "feilsøk rpmio I/U"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "feilsøk URL-cache håndtering"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versjon %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright © 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 "Dette progeammet kan redistribueres fritt under betingelsene gitt i GNU GPL"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Bruk: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Bruk -e eller --erase i stedet.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "kun ett større modi kan spesifiseres"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "uventede flagg for spørring"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "ventet spørringsformat"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "uventet spørringskilde"
 
-#: rpmqv.c:738
-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:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "kun installasjon, oppgradering, rmsource og rmspec kan tvinges"
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr "filer kan kun omplasseres under pakkeinstallasjon"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "kune en av --prefix eller --relocate kan brukes"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenter til --prefix må begynne med en /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan kun spesifiseres under pakkeinstallasjon"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -328,7 +236,7 @@ msgstr ""
 "skript som slår av alternativer kan kun spesifiseres under pakkeinstallasjon "
 "og sletting"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -336,100 +244,100 @@ msgstr ""
 "alternativer som slår av utløsing  kan kun spesifiseres under "
 "pakkeinstallasjon, og sletting"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "ingen filer å signere\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan ikke aksessere fil %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp ikke funnet: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Skriv inn passord: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Passordsjekk feilet\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Passord er ok.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "kjøring feilet\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "ingen pakkefiler oppgitt for ombygging"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "ingen spec-fil oppgitt for bygging"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "ingen tar-fil oppgitt for bygging"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "ingen pakker oppgitt for installering"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "ingen pakker oppgitt for installering"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "ingen argumenter oppgitt for spørring"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "ingen argumenter oppgitt for verifisering"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "uventede argumenter til --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "ingen argumenter oppgitt for spørring"
@@ -1221,7 +1129,7 @@ msgstr "Ingen kompatible arkitekturer funnet for bygging\n"
 msgid "Package has no %%description: %s\n"
 msgstr "Pakken har ingen %%description: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "Feil under lesing av spec fil fra %s\n"
@@ -1644,17 +1552,107 @@ msgstr "%s: readLead feilet\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "skriv ut makroutvidelsen av <uttr>+"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "les <fil:...> i stedet for standard makrofil(er)"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "ikke verifiser pakkeavhengigheter"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "ikke verifiser pakkearkitektur"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "slå av bruk av libio(3) API"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "verifiser pakkesignatur"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "send stdout til <kmd>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "bruk <katalog> som toppnivåkatalog"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "vis endelig rpmrc og makrokonfigurasjon"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "gi mindre detaljert info"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "gi mer detaljert info"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "skriv ut hvilken versjon av rpm som brukes"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "feilsøking på protokoll-datastrøm"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Intern feil i argumentprosesseringen (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "feilsøk rpmio I/U"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "feilsøk URL-cache håndtering"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1675,19 +1673,19 @@ msgstr "relokasjoner m
 msgid "relocations must have a / following the ="
 msgstr "relokasjoner må ha et / etter ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "installer alle filer, selv konfigurasjoner som ellers kan hoppes over"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1695,151 +1693,140 @@ msgstr ""
 "fjern alle pakker som er lik <pakke> (normalt vil en feil genereres hvis "
 "<pakke> spesifiserer flere pakker)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "ikke kjør pakkespesifikke skriptlet"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "omplasser filer i ikke-omplasserbar pakke"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr "lagre slettede pakkefiler ved å endre navn til underkatalog"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "slett (avinstaller) pakke"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<pakke>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "ikke installer dokumentasjon"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "hopp over filer med innledende komponent <sti> "
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<sti>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "forkortning for --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "oppgrader pakke(r) hvis allerede installert"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<pakkefil>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "skriv ut skigarder etter som pakken installeres (nyttig med -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "ikke verifiser pakkearkitektur"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "ikke verifiser operativsystem for pakken"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "ikke sjekk diskplass før installasjon"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "installer dokumentasjon"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "installer pakke"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "oppdater databasen, men ikke modifiser filsystemet"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ikke ordne pakkeinstallasjon for å tilfredsstille avhengigheter"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ikke kjør noen %%pre skriptlet (hvis noen)"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ikke kjør %%post skriptlet (hvis noen)"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ikke kjør %%preun skriptlet (hvis noen)"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ikke kjør %%postun skriptlet (hvis noen)"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "ikke verifiser pakkeavhengigheter"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "ikke verifiser pakkearkitektur"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "verifiser pakkesignatur"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "Ikke kjør noen skriptlets som utløses av denne pakken"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "ikke kjør %%triggerprein skriptlets"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "ikke kjør %%triggerin skriptlets"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "ikke kjør %%triggerun skriplets"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "ikke kjør %%triggerpostun skriptlets"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1847,48 +1834,52 @@ msgstr ""
 "oppgrader til en gammel versjon av pakken (--force ved oppgraderinger gjør "
 "dette automatisk)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "skriv ut prosentvis fremgang etter som pakken installeres"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "omplasser pakken til <kat>, hvis den er omplasserbar"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<kat>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "omplasser filer fra sti <gml> til <ny>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<gml>=<ny>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "lagre slettede pakkefiler ved ompakking"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "installer selv om pakken erstatter installerte filer"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "reinstaller selv om pakken allerede er installert"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 #, fuzzy
 msgid "<date>"
 msgstr "<sti>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "ikke installer, men si ifra om det ville virke eller ikke"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "oppgrader pakke(r)"
 
@@ -1920,8 +1911,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "spør/verifiser pakke(r) som eier fil"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "spør/verifiser pakker utløst av <pakke>"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "spør/verifiser alle pakker"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -1970,123 +1962,115 @@ msgstr "sp
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "spør etter pakker som tilbyr <funk> funksjonalitet"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "ikke verifiser størrelse på filer"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "ikke verifiser sti til symbolske lenker for filer"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "ikke verifiser eier av filer"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "ikke verifiser gruppe for filer"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "ikke verifisert endringsdato for filer"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "ikke verifiser modus for filer"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "ikke verifiser filer i pakke"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "ikke kjør %verifyscript (hvis noen)"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ikke verifiser header SHA1 digest"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "signer en pakke (forkast nåværende signatur)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verifiser pakkesignatur"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "signer en pakke (forkast nåværende signatur)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "generer signatur"
 
@@ -2425,36 +2409,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "pakke %s er i konflikt: %s\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d omplasser %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ekskluderer multilib-sti %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "eksluderer %s %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "relokerer %s til %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "relokerer katalog %s til %s\n"
@@ -2910,13 +2894,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
@@ -2929,7 +2913,7 @@ msgstr "ekskluderer katalog %s\n"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2942,7 +2926,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2950,21 +2934,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3539,62 +3523,52 @@ msgstr "kunne ikke opprette %s: %s\n"
 msgid "don't verify header+payload signature"
 msgstr "verifiser pakkesignatur"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "ikke verifiser pakkeavhengigheter"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "verifiser pakkesignatur"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: åpne feilet: %s\n"
@@ -3604,6 +3578,38 @@ msgstr "%s: 
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: lesing av manifest feilet: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<kmd>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "les <fil:...> i stedet for standard makrofil(er)"
+
+#~ msgid "<file:...>"
+#~ msgstr "<fil:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "les <fil:...> i stedet for standard rpmrc-fil(er)"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Bruk: %s {--help}\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Bruk -e eller --erase i stedet.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath oppgitt for operasjon som ikke bruker en database"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "spør/verifiser pakker utløst av <pakke>"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "ikke verifiser pakkeavhengigheter"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "verifiser pakkesignatur"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "definer makro <navn> med verdi <kropp>"
 
index 2200f25..5341769 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,176 @@ msgstr "b
 msgid "cannot re-open payload: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "przeka¿ standartowe wyj¶cie do <komenda>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "u¿yj <katalogu> jako katalogu najwy¿szego poziomu"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 #, fuzzy
 msgid "Signature options:"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM wersja %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Program mo¿e byæ swobodnie rozpowszechniany na warunkach licencji GNU"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "U¿ycie: rpm {--help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "U¿yj -e lub --erase\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpmqv.c:738
-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:428
 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:430
 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:433
 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:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 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:454
 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:458
 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:462
 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:466
 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:470
 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:474
 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:478
 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:483
 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:487
 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:491
 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:496
 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:501
 #, 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:506
 #, 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:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -353,14 +259,14 @@ msgstr ""
 "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub "
 "sprawdzania pakietów"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -368,82 +274,82 @@ msgstr ""
 "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania "
 "pakietów lub przebudowywania bazy"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "brak dostêpu do pliku %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "nie znaleziono pgp: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Podaj has³o: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Weryfikacja has³a nieudana\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Has³o jest prawid³owe.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 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:620
 msgid "exec failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "nie podano nazw pakietów do przebudowania"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "nie podano nazw plików spec do budowania"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "nie podano nazw plików tar do budowania"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "nie podano argumentów dla sprawdzania"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "nieoczekiwane argumenty dla --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "nie podano argumentów dla trybu zapytañ"
@@ -1248,7 +1154,7 @@ msgstr "Nie mo
 msgid "Package has no %%description: %s\n"
 msgstr "Pakiet nie ma %%description: %s"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot by³ ju¿ wcze¶niej podany"
@@ -1692,16 +1598,106 @@ msgstr "%s: readLead nie powiod
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "nie sprawdzaj zale¿no¶ci pakietu"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "nie sprawdzaj architektury systemu"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "sprawd¼ sygnaturê pakietu"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "przeka¿ standartowe wyj¶cie do <komenda>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "u¿yj <katalogu> jako katalogu najwy¿szego poziomu"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1722,21 +1718,21 @@ msgstr "specyfikacja przesuni
 msgid "relocations must have a / following the ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ / po ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by "
 "pominêto"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1744,158 +1740,148 @@ msgstr ""
 "usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
 "wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "usuñ (odinstaluj) pakiet"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "nie instaluj dokumentacji"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <nazwa pakietu>+ "
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "nie sprawdzaj architektury systemu"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "zainstaluj dokumentacjê"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "instaluj pakiet"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "nie sprawdzaj plików pakietu"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "nie sprawdzaj zale¿no¶ci pakietu"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "nie sprawdzaj architektury systemu"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "sprawd¼ sygnaturê pakietu"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "odpytywanie pakietów zahaczanych przez pakiet"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1903,49 +1889,53 @@ msgstr ""
 "uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
 "uaktualniania)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "wy¶wietlaj stan instalacji w procentach"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <nazwa pakietu>"
@@ -1982,8 +1972,8 @@ msgstr "sprawdzanie do jakiego pakietu nale
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "odpytywanie pakietu"
+msgid "query/verify a package file"
+msgstr "odpytuj wszystkie pakiety"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -2037,132 +2027,123 @@ msgstr "odszukaj pakiety wymagaj
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "odszukaj pakiety udostêpniaj±ce zasób <zas>"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "wy¶wietl wszystkie pliki konfiguracyjne"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "wy¶wietl wszystkie pliki dokumentacji"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "podaj postawowe informacje o pliku"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "wy¶wietl pliki zawarte w pakiecie"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "u¿yj nastêpuj±cego formatu zapytania"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "wy¶wietl status pokazywanych plików"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "wy¶wietl wiêcej informacji o plikach z listy"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "nie sprawdzaj plików pakietu"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "nie sprawdzaj plików pakietu"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "generuj sygnaturê PGP/GPG"
@@ -2509,36 +2490,36 @@ 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:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Ten OS nie jest wspierany: %s"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
@@ -3004,13 +2985,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
@@ -3023,7 +3004,7 @@ msgstr "tworzenie katalogu: %s\n"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3036,7 +3017,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3044,14 +3025,14 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 #, fuzzy
 msgid "repackage about-to-be-erased packages\n"
 msgstr "ten pakiet jest pakietem w wersji jeden!\n"
@@ -3059,7 +3040,7 @@ msgstr "ten pakiet jest pakietem w wersji jeden!\n"
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3643,63 +3624,53 @@ msgstr "utworzenie %s nie powiod
 msgid "don't verify header+payload signature"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "nie sprawdzaj zale¿no¶ci pakietu"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "sprawd¼ sygnaturê pakietu"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "tworzenie katalogu: %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: Open nie powiod³o siê\n"
@@ -3709,6 +3680,32 @@ msgstr "%s: Open nie powiod
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "U¿ycie: rpm {--help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "U¿yj -e lub --erase\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "odpytywanie pakietu"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "wy¶wietl wiêcej informacji o plikach z listy"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "nie sprawdzaj zale¿no¶ci pakietu"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "sprawd¼ sygnaturê pakietu"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
 
index 8421b4a..8ae3ee3 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,256 +74,164 @@ 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:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "imprime a versão do RPM que está a usar"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "devolver um resultado menos detalhado"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "devolver um resultado mais detalhado"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "imprimir a expansão da macro <expr>+"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "manda o stdout para <cmd>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<com>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "usa <dir> como a directoria de topo"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<dir>"
-
-#: 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:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<fich:...>"
-
-#: 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:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "mostra a configuração final do rpmrc e das macros"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "desactivar o uso da API da libio(3)"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "depurar a sequência de dados do protocolo"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "depurar a E/S da rpmio"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "depurar a gestão da 'cache' de URLs"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "Opções de pesquisa (com o -q ou o --query):"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "Opções de verificação (com o -V ou o --verify):"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "Opções de assinatura:"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "Opções da base de dados:"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr "Opções de criação com [ <fich spec> | <fich tar> | <pacote fonte> ]:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr "Opções de Instalação/Actualização/Remoção:"
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "Opções comuns para todos os modos do rpm:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versão %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 "Este programa pode ser distribuído livremente sob os termos da GPL da GNU"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Utilização: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "A opção --rcfile foi eliminada.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Usar o \"--macros <fich:...>\" em alternativa.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "só pode ser especificado um 'major mode'"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "opções de pesquisa inesperadas"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "formato de pesquisa inesperado"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "origem de pesquisa inesperada"
 
-#: rpmqv.c:738
-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:428
 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:430
 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:433
 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:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "os argumentos do --prefix têm de começar por /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 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:454
 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:458
 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:462
 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:466
 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:470
 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:474
 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:478
 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:483
 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:487
 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:491
 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:496
 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:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -331,7 +239,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:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -339,7 +247,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:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -347,7 +255,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:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -355,7 +263,7 @@ msgstr ""
 "o --test só pode ser indicado durante a instalação, remoção ou criação do "
 "pacote"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -363,81 +271,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:532
 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:556
 msgid "no files to sign\n"
 msgstr "não existem ficheiros a assinar\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "não consigo aceder ao ficheiro %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp não encontrado: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Indique a palavra-chave: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "A verificação da palavra-chave falhou\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "A palavra-chave está correcta.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, 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:603
 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:620
 msgid "exec failed\n"
 msgstr "o exec falhou\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "não foram indicados pacotes para a reconstrução"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "não foram indicados ficheiros spec para a criação"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "não foram indicados ficheiros tar para a criação"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr "não foram indicados pacotes para apagar"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "não foram indicados pacotes para instalar"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "não foram indicados argumentos para a pesquisa"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "não foram indicados argumentos para a verificação"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos inesperados no --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "não foram indicados argumentos para a pesquisa"
@@ -1227,7 +1135,7 @@ msgstr "N
 msgid "Package has no %%description: %s\n"
 msgstr "O pacote não tem uma %%description: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "O buildroot já foi especificado, a ignorar o %s\n"
@@ -1662,17 +1570,107 @@ msgstr ":%s: o readLead falhou\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: O fread falhou: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "imprimir a expansão da macro <expr>+"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, 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:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "não verificar as dependências do pacote"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "não verifica a arquitectura do pacote"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "desactivar o uso da API da libio(3)"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "verificar a assinatura do pacote"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "manda o stdout para <cmd>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "usa <dir> como a directoria de topo"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "mostra a configuração final do rpmrc e das macros"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "devolver um resultado menos detalhado"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "devolver um resultado mais detalhado"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "imprime a versão do RPM que está a usar"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "depurar a sequência de dados do protocolo"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Erro interno no processamento de argumentos (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "depurar a E/S da rpmio"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "depurar a gestão da 'cache' de URLs"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1693,21 +1691,21 @@ msgstr "os novos locais t
 msgid "relocations must have a / following the ="
 msgstr "os novos locais têm de ter um / a seguir ao ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr "'rollback' recebe como argumento uma hora/data"
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr "argumento hora/data inválido para 'rollback'"
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instala todos os ficheiros, mesmo as configurações que de outro modo seriam "
 "ignoradas"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1715,153 +1713,142 @@ msgstr ""
 "remove todos os pacotes que correspondam a <pacote> (normalmente aparece um "
 "erro se o <pacote> especifica vários pacotes)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "não executar nenhuns scripts do pacote"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "muda os ficheiros de sítio num pacote de localização fixa"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "gravar os ficheiros do pacote apagado mudando o nome para sub-directoria"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "apaga (desinstala) o pacote"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<pacote>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "não instala a documentação"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "ignorar os ficheiros com a componente inicial <dir> "
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<caminho>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "abreviatura para --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "actualizar o pacote(s) se já estiver instalado"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<pacote>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "não verifica a arquitectura do pacote"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "não verifica o sistema operativo do pacote"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "não verifica o espaço em disco antes de instalar"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "instala a documentação"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "instala o pacote"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "actualiza a base de dados, mas não altera o sistema de ficheiros"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "não verifica as dependências do pacote"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "não verificar o MD5 dos ficheiros"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "não reorganiza a instalação dos pacotes para satisfazer as dependências"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "não executar o script %%pre (se existir)"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "não executar o script %%post (se existir)"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "não executar o script %%preun (se existir)"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "não executar o script %%postun (se existir)"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "não verificar as dependências do pacote"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "não verifica a arquitectura do pacote"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "verificar a assinatura do pacote"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "não executar nenhum dos scripts activados por este pacote"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerprein"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerin"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerun"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerpostun"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1869,47 +1856,51 @@ msgstr ""
 "actualiza para um versão antiga do pacote (o --force faz isto "
 "automaticamente)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "mostra percentagens enquanto o pacote instala"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "muda o pacote para <dir>, se for possível"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<dir>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "muda os ficheiros de <velho> para <novo>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<velho>=<novo>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "gravar ficheiros apagados reempacotando-os"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "instala mesmo se o pacote substituir ficheiros instalados"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "reinstalar se o pacote já estiver presente"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar à <data>"
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr "<data>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "não instala, mas indica se iria funcionar ou não"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "actualizar pacote(s)"
 
@@ -1939,9 +1930,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "pesquisar/verificar o(s) pacote(s) com o identificador do cabeçalho"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr ""
-"pesquisar/verificar um ficheiro do pacote (i.e. um ficheiro *.rpm binário)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "pesquisar/verificar todos os pacotes"
 
 #: lib/poptQV.c:109
 msgid "query/verify package(s) with package identifier"
@@ -1988,124 +1979,116 @@ msgstr "pesquisar/verificar o(s) pacote(s) que precisa duma depend
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "pesquisar/verificar o(s) pacote(s) que oferecem uma dependência"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "listar todos os ficheiros de configuração"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "listar todos os ficheiros de documentação"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "apresentar a informação básica do ficheiro"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "listar os ficheiros no pacote"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr "ignorar ficheiros %%ghost"
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr "ignorar ficheiro %%licence"
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr "ignorar ficheiros %%readme"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "usar o formato de pesquisa seguinte"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "substituir as secções i18n no ficheiro spec"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "mostrar os estados dos ficheiros listados"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "mostrar uma listagem descritiva do ficheiro"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "não verificar o MD5 dos ficheiros"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "não verificar os tamanho dos ficheiros"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "não verificar as ligações simbólicas dos ficheiros"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "não verificar o dono dos ficheiros"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "não verificar o grupo dos ficheiros"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "não verificar hora de modificação dos ficheiros"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "não verificar o modo dos ficheiros"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "não verificar os ficheiros no pacote"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "não verificar as dependências do pacote"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "não executar o %verifyscript (se existir)"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "não verificar o SHA1 do cabeçalho"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "não verificar o MD5 dos ficheiros"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "assinar um pacote (retira a assinatura actual)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verificar a assinatura do pacote"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "assinar um pacote (retira a assinatura actual)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "gerar a assinatura"
 
@@ -2451,36 +2434,36 @@ 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:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr "========== mudanças de local\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d excluir o %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d mudar de local %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "a exclur a directoria 'multilib' %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "a excluir o %s %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "a mudar o %s para %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "a mudar a directoria %s para %s\n"
@@ -2942,13 +2925,13 @@ msgstr "'Digest' MD5 estragado: N
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Assinatura: tamanho(%d)+pad(%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignorado devido à opção missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "a excluir a directoria %s\n"
@@ -2961,7 +2944,7 @@ msgstr "a excluir a directoria %s\n"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2974,7 +2957,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2982,21 +2965,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3574,64 +3557,54 @@ msgstr "n
 msgid "don't verify header+payload signature"
 msgstr "verificar a assinatura do pacote"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "não verificar as dependências do pacote"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "verificar a assinatura do pacote"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "a criar a directoria %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 #, fuzzy
 msgid "Common options for all rpm modes and executables:"
 msgstr "Opções comuns para todos os modos do rpm:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: o acesso falhou: %s\n"
@@ -3641,6 +3614,46 @@ msgstr "%s: o acesso falhou: %s\n"
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: a leitura do manifesto falhou: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<com>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "ler o <fich:...> em vez do(s) ficheiro(s) de macros por omissão"
+
+#~ msgid "<file:...>"
+#~ msgstr "<fich:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "ler o <fich:...> em vez do(s) ficheiro(s) rpmrc por omissão"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Utilização: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "A opção --rcfile foi eliminada.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Usar o \"--macros <fich:...>\" em alternativa.\n"
+
+#~ 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"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr ""
+#~ "pesquisar/verificar um ficheiro do pacote (i.e. um ficheiro *.rpm binário)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "mostrar uma listagem descritiva do ficheiro"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "não verificar as dependências do pacote"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "verificar a assinatura do pacote"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "define a macro <nome> com o valor <conteúdo>"
 
index 9b2b81c..e1c2460 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-0400\n"
 
 #: build.c:40
 #, fuzzy
@@ -77,114 +77,37 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "mostra a verso do programa rpm sendo usado"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "mostra a verso do programa rpm sendo usado"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "envia a saida padro para <cmd>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "use <diretrio> como diretrio raiz"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 # , c-format
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
@@ -197,160 +120,143 @@ 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:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verso %s\n"
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 "Este Software pode ser livremente redistribuido sob os termos da Licensa "
 "Pblica GNU (GPL)"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "uso: rpm {--help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Use -e ou --erase no lugar.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "somente um modo principal pode ser especificado"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "fonte de pesquisa no esperado"
 
-#: rpmqv.c:738
-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:428
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "somente instalao e atualizao podem ser foradas"
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 #, 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:433
 #, 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:436
 #, 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumentos para --prefix devem comear com uma /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--excludedocs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--includedocs somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 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:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--ignorearch somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos somente pode ser especificado durante instalaes de pacotes"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 #, 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:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--allmatches somente pode ser especificado durante desinstalaes de pacotes"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 #, 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:496
 #, 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:501
 #, fuzzy
 msgid ""
 "script disabling options may only be specified during package installation "
@@ -359,7 +265,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 #, fuzzy
 msgid ""
 "trigger disabling options may only be specified during package installation "
@@ -368,7 +274,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -377,7 +283,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalaes e verificaes "
 "de pacotes"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -385,7 +291,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalaes e construes de "
 "pacotes"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -393,84 +299,84 @@ msgstr ""
 "--root (-r) somente pode ser especificado durante [des]instalaes, pesquisas "
 "e reconstruo de bancos de dados"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumentos para --root (-r) devem comear com uma /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 #, fuzzy
 msgid "pgp not found: "
 msgstr "no foi passado pacote para desinstalao"
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Checagem de pass phrase falhou\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Pass phrase ok.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 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:620
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Construo falhou.\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "no foram passados pacotes para reconstruo"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "no foi passado arquivo spec para construo"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "no foram passados arquivos tar para construo"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "no foi passado pacote para instalao"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "no foi passado argumento para pesquisa"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "no foi passado argumento para verificao"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos no esperados em --querytags"
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "no foi passado argumento para pesquisa"
@@ -1354,7 +1260,7 @@ msgid "Package has no %%description: %s\n"
 msgstr "no foi passado pacote para desinstalao"
 
 # , c-format
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "No consegui ler o arquivo spec de %s\n"
@@ -1810,16 +1716,105 @@ msgstr "No consegui abrir: %s\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "mostra a verso do programa rpm sendo usado"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "no verifique as dependncias do pacote"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "no verifique a arquitetura do pacote"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "verifique a assinatura do pacote"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "envia a saida padro para <cmd>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "use <diretrio> como diretrio raiz"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "mostra a verso do programa rpm sendo usado"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1842,19 +1837,19 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1862,159 +1857,149 @@ msgstr ""
 "remova todos os pacotes iguais a <pacote> (normalmente um erro  gerado se "
 "<pacote> especificou mltiplos pacotes)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "no execute nenhuma script especfica do pacote"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "apague (desinstale) pacote"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "pesquise todos os pacotes"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "no instale documentao"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "alis para --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<estgio> <spec>    "
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 #, fuzzy
 msgid "don't verify package architecture"
 msgstr "no verifique a arquitetura do pacote"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "no verifique o sistema operacional do pacote"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "instale documentao"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "instale pacote"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "instale pacote"
+
+#: lib/poptI.c:215
 #, fuzzy
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "no verifique as dependncias do pacote"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "no verifique a arquitetura do pacote"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "verifique a assinatura do pacote"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "no execute nenhuma script especfica do pacote"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -2022,48 +2007,52 @@ msgstr ""
 "atualize para uma verso mais velha do pacote (--force em atualizaes no faz "
 "isto automaticamente)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "realoque o pacote para <diretrio>, se realocvel"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "instale mesmo que o pacote substitua arquivos j instalados"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "reinstale se o pacote j estiver presente"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "no instale, mas diga se a instalao funcionar ou no"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "instale pacote"
@@ -2100,7 +2089,7 @@ msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr "pesquise todos os pacotes"
 
 #: lib/poptQV.c:109
@@ -2156,140 +2145,130 @@ msgstr "pesquise pacotes que requerem capacidade <i>"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "pesquise pacotes que fornecem a capacidade <i>"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 #, fuzzy
 msgid "list all configuration files"
 msgstr "liste somente os arquivos de configurao (implica -l)"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr "instale documentao"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 #, fuzzy
 msgid "dump basic file information"
 msgstr "mostre informao do pacote"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 #, fuzzy
 msgid "list files in package"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
 # , c-format
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 #, fuzzy
 msgid "use the following query format"
 msgstr "fonte de pesquisa no esperado"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "mostre a lista de arquivos do pacote"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "instale pacote"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "instale pacote"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "verifique a assinatura do pacote"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "gere assinatura PGP"
@@ -2646,7 +2625,7 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
@@ -2658,13 +2637,13 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -2677,7 +2656,7 @@ msgstr "No consegui abrir: %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "RPM verso %s\n"
@@ -2690,19 +2669,19 @@ msgstr "RPM verso %s\n"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "RPM verso %s\n"
 
 # , c-format
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -3186,7 +3165,7 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
@@ -3200,7 +3179,7 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
@@ -3213,7 +3192,7 @@ msgstr "RPM verso %s\n"
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3226,7 +3205,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3234,21 +3213,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3853,65 +3832,55 @@ msgstr "No consegui abrir o pipe tar: %s\n"
 msgid "don't verify header+payload signature"
 msgstr "verifique a assinatura do pacote"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "no verifique as dependncias do pacote"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "verifique a assinatura do pacote"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
 # , c-format
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "No consegui abrir: %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
 # , c-format
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "No consegui abrir: %s\n"
@@ -3923,6 +3892,33 @@ msgid "%s: read manifest failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 #, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "uso: rpm {--help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Use -e ou --erase no lugar.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath passado para uma operao que no usa um banco de dados"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "pesquise todos os pacotes"
+
+#, fuzzy
+#~ msgid "display a verbose file listing"
+#~ msgstr "mostre a lista de arquivos do pacote"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "no verifique as dependncias do pacote"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "verifique a assinatura do pacote"
+
+#, fuzzy
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "lista dependncias do pacote"
 
index 02a24db..32a939f 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1201,7 +1109,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1619,16 +1527,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1649,211 +1640,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1882,7 +1869,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1929,118 +1916,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2377,36 +2356,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2857,13 +2836,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2876,7 +2855,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2889,7 +2868,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2897,21 +2876,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3485,60 +3464,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index d7a9b54..95cb1e4 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1207,7 +1115,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1625,16 +1533,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1655,211 +1646,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1888,7 +1875,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1935,118 +1922,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2383,36 +2362,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2863,13 +2842,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2882,7 +2861,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2895,7 +2874,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2903,21 +2882,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3491,60 +3470,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 61a14c1..7118cdb 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,259 +76,167 @@ msgstr "
 msgid "cannot re-open payload: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏ×ÔÏÒÎÏ ÏÔËÒÙÔØ payload: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "×Ù×ÅÓÔÉ ÎÏÍÅÒ ×ÅÒÓÉÉ ÜÔÏÊ ÐÒÇÒÁÍÍÙ"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "×Ù×ÏÄÉÔØ ÍÉÎÉÍÕÍ ÓÏÏÂÝÅÎÉÊ"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "×Ù×ÏÄÉÔØ ÂÏÌÅÅ ÄÅÔÁÌØÎÙÅ ÓÏÏÂÝÅÎÉÑ"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "×Ù×ÅÓÔÉ ÚÎÁÞÅÎÉÅ ÍÁËÒÏÓÁ <ÉÍÑ>+"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × <cmd>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<ËÏÍÁÎÄÁ>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<ËÁÔÁÌÏÇ>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÍÁËÒÏÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<ÆÁÊÌ:...>"
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÏ ÕÍÏÌÞÁÎÉÀ"
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "ÐÏËÁÚÁÔØ ÔÅËÕÝÅÅ ÚÎÁÞÅÎÉÅ rpmrc É ÍÁËÒÏÓÏ×"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "ÚÁÐÒÅÔÉÔØ ÉÓÐÏÌØÚÏ×ÁÎÉÅ libio(3) API"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "ÏÔÌÁÄËÁ ÐÒÏÔÏËÏÌÁ ÐÏÔÏËÁ ÄÁÎÎÙÈ"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "ÏÔÌÁÄËÁ ÐÒÏÃÅÓÓÁ ××ÏÄÁ/×Ù×ÏÄÁ rpmio"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ URL ËÜÛ"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "ðÁÒÁÍÅÔÒÙ ÚÁÐÒÏÓÁ (Ó -q ÉÌÉ --query):"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "ðÁÒÁÍÅÔÒÙ ÐÒÏ×ÅÒËÉ (Ó -V ÉÌÉ --verify):"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "ðÁÒÁÍÅÔÒÙ ÐÏÄÐÉÓÉ:"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "ðÁÒÁÍÅÔÒÙ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "ðÁÒÁÍÅÔÒÙ ÓÂÏÒËÉ Ó [ <ÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ> | <ÔÁÒ ÁÒÈÉ×> | <ÉÓÈÏÄÎÙÊ ÐÁËÅÔ> ]:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr "ðÁÒÁÍÅÔÒÙ õÓÔÁÎÏ×ËÉ/ïÂÎÏ×ÌÅÎÉÑ/õÄÁÌÅÎÉÑ:"
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "ïÂÝÉÅ ÐÁÒÁÍÅÔÒÙ ÄÌÑ ×ÓÅÈ ÒÅÖÉÍÏ×:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ×ÅÒÓÉÑ %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998-2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "üÔÕ ÐÒÏÇÒÁÍÍÕ ÍÏÖÎÏ Ó×ÏÂÏÄÎÏ ÒÁÓÐÒÏÓÔÒÁÎÑÔØ ÎÁ ÕÓÌÏ×ÉÑÈ GNU GPL"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "×ÁÒÉÁÎÔ --rcfile ÂÏÌØÛÅ ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "÷ÍÅÓÔÏ ÜÔÏÇÏ ÉÓÐÏÌØÚÕÊÔÅ \"--macros <ÆÁÊÌ:...>\".\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÚÁ ÏÄÉΠÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅΠÔÏÌØËÏ ÏÄÉΠÔÉРÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÆÌÁÇÉ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr "ÐÁÒÁÍÅÔÒ --dbpath ÚÁÄÁΠÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× "
 "É ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ"
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ×ÁÒÉÁÎÔÏ× --prefix ÉÌÉ --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "×ÁÒÉÁÎÔÙ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ "
 "ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr "×ÁÒÉÁÎÔ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÐÁÒÁÍÅÔÒÏ× --excludedocs ÉÌÉ --"
 "includedocs"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -336,7 +244,7 @@ msgstr ""
 "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÓÃÅÎÁÒÉÅ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ "
 "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -344,7 +252,7 @@ msgstr ""
 "ÐÁÒÁÍÅÔÒÙ ÚÁÐÒÅÔÁ ÔÒÉÇÇÅÒÏ× ÍÏÇÕÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ "
 "ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ(Ï×)"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -352,14 +260,14 @@ msgstr ""
 "--nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÐÒÏ×ÅÒËÉ "
 "ÐÁËÅÔÏ×"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ ÐÁËÅÔÁ"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -367,81 +275,81 @@ msgstr ""
 "--root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, ÚÁÐÒÏÓÁÈ "
 "ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "ÎÅÔ ÆÁÊÌÏ× ÄÌÑ ÐÏÄÐÉÓÉ\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp ÎÅ ÎÁÊÄÅÎ: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "÷×ÅÄÉÔÅ ËÌÀÞÅ×ÕÀ ÆÒÁÚÕ: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "îÅ×ÅÒÎÁÑ ËÌÀÞÅ×ÁÑ ÆÒÁÚÁ\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "ëÌÀÞÅ×ÁÑ ÆÒÁÚÁ ÐÒÉÎÑÔÁ.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁΠÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "ÎÅ ÚÁÄÁΠÆÁÊÌ ÓÐÅÃÉÆÉËÁÃÉÉ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
@@ -1229,7 +1137,7 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot ÕÖÅ ÕËÁÚÁÎ, %s ÉÇÎÏÒÉÒÕÅÔÓÑ\n"
@@ -1667,17 +1575,107 @@ msgstr "%s: 
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "×Ù×ÅÓÔÉ ÚÎÁÞÅÎÉÅ ÍÁËÒÏÓÁ <ÉÍÑ>+"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÍÁËÒÏÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "ÚÁÐÒÅÔÉÔØ ÉÓÐÏÌØÚÏ×ÁÎÉÅ libio(3) API"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × <cmd>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "ÐÏËÁÚÁÔØ ÔÅËÕÝÅÅ ÚÎÁÞÅÎÉÅ rpmrc É ÍÁËÒÏÓÏ×"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "×Ù×ÏÄÉÔØ ÍÉÎÉÍÕÍ ÓÏÏÂÝÅÎÉÊ"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "×Ù×ÏÄÉÔØ ÂÏÌÅÅ ÄÅÔÁÌØÎÙÅ ÓÏÏÂÝÅÎÉÑ"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "×Ù×ÅÓÔÉ ÎÏÍÅÒ ×ÅÒÓÉÉ ÜÔÏÊ ÐÒÇÒÁÍÍÙ"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "ÏÔÌÁÄËÁ ÐÒÏÔÏËÏÌÁ ÐÏÔÏËÁ ÄÁÎÎÙÈ"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "ÏÔÌÁÄËÁ ÐÒÏÃÅÓÓÁ ××ÏÄÁ/×Ù×ÏÄÁ rpmio"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "ÏÔÌÁÄËÁ ÏÂÒÁÂÏÔËÉ URL ËÜÛ"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1698,21 +1696,21 @@ msgstr "
 msgid "relocations must have a / following the ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÉÍÅÔØ / ÐÏÓÌÅ ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr "ÏÔËÁÔ ÔÒÅÂÕÅÔ ÁÒÇÕÍÅÎÔ ×ÒÅÍÅÎÉ"
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr "ÎÅÐÒÁ×ÉÌØÎÙÊ ÆÏÒÍÁÔ ×ÒÅÍÅÎÉ ÏÔËÁÔÁ"
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÓÅ ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
 "ÐÒÏÐÕÝÅÎÙ"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1720,151 +1718,140 @@ msgstr ""
 "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
 "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓÃÅÎÁÒÉÅ× ÐÁËÅÔÁ(Ï×)"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅÐÅÒÅÍÅÝÁÅÍÏÍ ÐÁËÅÔÅ"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr "ÓÏÈÒÁÎÉÔØ × ÐÏÄËÁÔÁÌÏÇÅ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<ÐÁËÅÔ>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<ÐÕÔØ>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù) ÅÓÌÉ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<ÆÁÊÌ ÐÁËÅÔÁ>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ  %%pre ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%post ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%preun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%postun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÅ×, ×Ú×ÅÄÅÎÎÙÈ ÜÔÉÍ ÐÁËÅÔÏÍ"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerprein ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerin ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerun ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerpostun ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1872,49 +1859,53 @@ msgstr ""
 "ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÄÅÌÁÅÔ ÜÔÏ "
 "Á×ÔÏÍÁÔÉÞÅÓËÉ)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<ËÁÔÁÌÏÇ>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ ÐÕÔÉ <old> × <new>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<old>=<new>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "ÓÏÈÒÁÎÉÔØ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ × ÎÏ×ÏÍ ÐÁËÅÔÅ"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ, ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "ÕÄÁÌÉÔØ ÎÏ×ÙÊ(Å) ÐÁËÅÔ(Ù), ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÓÔÁÒÙÊ(Å) ÐÁËÅÔ(Ù), ÏÂÒÁÔÎÏ ÎÁ "
 "ÕËÁÚÁÎÎÕÀ ÄÁÔÕ"
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr "<ÄÁÔÁ>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ, ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
 
@@ -1944,8 +1935,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔ(Ù), ÐÏ ÉÄÅÎÔÉÆÉËÁÔÏÒÕ ÚÁÇÏÌÏ×ËÁ"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÆÁÊÌ ÐÁËÅÔÁ (Ô.Å. *.rpm ÆÁÊÌ Ä×ÏÉÞÎÏÇÏ ÐÁËÅÔÁ)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ×ÓÅ ÐÁËÅÔÙ"
 
 #: lib/poptQV.c:109
 msgid "query/verify package(s) with package identifier"
@@ -1992,124 +1984,116 @@ msgstr "
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "ÎÁÊÔÉ/ÐÒÏ×ÅÒÉÔØ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ËÏÎÆÉÇÕÒÁÃÉÉ"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "ÐÏËÁÚÁÔØ ×ÓÅ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "ÐÏËÁÚÁÔØ ÏÓÎÏ×ÎÕÀ ÉÎÆÏÒÍÁÃÉÀ Ï ÆÁÊÌÅ"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "ÐÏËÁÚÁÔØ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%ghost"
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%license"
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ %%readme"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "ÉÓÐÏÌØÚÕÊÔÅ ÓÌÅÄÕÀÝÉÊ ÆÏÒÍÁÔ ÚÁÐÒÏÓÁ"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "ÚÁÍÅÎÉÔØ ÓÅËÃÉÉ i18n × ÆÁÊÌÅ ÓÐÅÃÉÆÉËÁÃÉÉ"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÐÅÒÅÞÉÓÌÅÎÎÙÈ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "ÐÏËÁÚÁÔØ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ×"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÒÁÚÍÅÒ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÕÔØ ÓÉÍ×ÏÌÉÞÅÓËÉÈ ÓÓÙÌÏË"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÈÏÚÑÉÎÁ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÇÒÕÐÐÕ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ×ÒÅÍÑ ÍÏÄÉÆÉËÁÃÉÉ ÆÁÊÌÏ×"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %verifyscript (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ SHA1 ÚÁÇÏÌÏ×ËÁ ÐÁËÅÔÁ"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÆÁÊÌÙ ÎÁ ËÏÎÔÒÏÌØÎÕÀ ÓÕÍÍÕ MD5"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ ÐÏÄÐÉÓØ"
 
@@ -2452,36 +2436,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "ÐÁËÅÔ %s ÓÏÄÅÒÖÉÔ ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÔÒÅÂÏ×ÁÎÉÑ: %s\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr "========== ÐÅÒÅÍÅÝÅÎÉÊ\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d ÉÓËÌÀÞÅΠ%s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d ÐÅÒÅÍÅÝÅÎÉÅ %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ÍÎÏÇÏÂÉÂÌÉÏÔÅÞÎÙÊ ÐÕÔØ %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ %s %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ %s × %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÅÔÓÑ ËÁÔÁÌÏÇ %s × %s\n"
@@ -2940,13 +2924,13 @@ msgstr "
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "ðÏÄÐÉÓØ: ÒÁÚÍÅÒ(%d)+ÚÁÐÏÌÎÅÎÉÅ(%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
@@ -2959,7 +2943,7 @@ msgstr "
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2972,7 +2956,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2980,21 +2964,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3573,64 +3557,54 @@ msgstr "
 msgid "don't verify header+payload signature"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "ÓÏÚÄÁ£ÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 #, fuzzy
 msgid "Common options for all rpm modes and executables:"
 msgstr "ïÂÝÉÅ ÐÁÒÁÍÅÔÒÙ ÄÌÑ ×ÓÅÈ ÒÅÖÉÍÏ×:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ: %s\n"
@@ -3640,6 +3614,44 @@ msgstr "%s: 
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÞÔÅÎÉÑ ÓÐÉÓËÁ ÆÁÊÌÏ×: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<ËÏÍÁÎÄÁ>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÍÁËÒÏÆÁÊÌÁ(Ï×) ÐÏ ÕÍÏÌÞÁÎÉÀ"
+
+#~ msgid "<file:...>"
+#~ msgstr "<ÆÁÊÌ:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ:...> ×ÍÅÓÔÏ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÏ ÕÍÏÌÞÁÎÉÀ"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "éÓÐÏÌØÚÏ×ÁÎÉÅ: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "×ÁÒÉÁÎÔ --rcfile ÂÏÌØÛÅ ÎÅ ÉÓÐÏÌØÚÕÅÔÓÑ.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "÷ÍÅÓÔÏ ÜÔÏÇÏ ÉÓÐÏÌØÚÕÊÔÅ \"--macros <ÆÁÊÌ:...>\".\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "ÐÁÒÁÍÅÔÒ --dbpath ÚÁÄÁΠÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "ÚÁÐÒÏÓÉÔØ/ÐÒÏ×ÅÒÉÔØ ÆÁÊÌ ÐÁËÅÔÁ (Ô.Å. *.rpm ÆÁÊÌ Ä×ÏÉÞÎÏÇÏ ÐÁËÅÔÁ)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "ÐÏËÁÚÁÔØ ÄÅÔÁÌØÎÙÊ ÓÐÉÓÏË ÆÁÊÌÏ×"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "ÏÐÒÅÄÅÌÉÔØ ÍÁËÒÏÓ <ÉÍÑ> ÓÏ ÚÎÁÞÅÎÉÅÍ <ÐÏÄÓÔÁÎÏ×ËÁ>"
 
index e7b3c93..c5f27dd 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,179 @@ msgstr "chyba pri 
 msgid "cannot re-open payload: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "vypísa» verziu pou¾ívaného rpm"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "vypísa» verziu pou¾ívaného rpm"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "posla» ¹tandardný výstup do <príkazu>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 #, fuzzy
 msgid "Signature options:"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzia %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Program mô¾e by» voµne redistribuovaný v súlade s podmienkami GNU GPL"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "pou¾itie: rpm {--help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpmqv.c:738
-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:428
 #, 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:430
 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:433
 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:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pre --prefix musia zaèína» znakom /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 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:454
 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:458
 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:462
 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:466
 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:470
 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:474
 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:478
 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:483
 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:487
 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:491
 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:496
 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:501
 #, 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:506
 #, 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:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -349,7 +255,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:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +263,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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,82 +271,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:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pre --root (-r) musia zaèína» znakom /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "nie je mo¾né pracova» so súborom %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp nebolo nájdené: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Kontrola hesla zlyhala\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Heslo je v poriadku.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, 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:603
 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:620
 msgid "exec failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "neboli zadané ¾iadne argumenty pre overenie"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "neoèakávané argumenty pre --querytags"
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
@@ -1244,7 +1150,7 @@ msgstr "
 msgid "Package has no %%description: %s\n"
 msgstr "Balík neobsahuje %%description: %s"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot u¾ bol zadaný"
@@ -1688,16 +1594,106 @@ msgstr "%s: readLead zlyhalo\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "vypísa» verziu pou¾ívaného rpm"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "neoverova» závislosti balíka"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "neoverova» architektúru balíka"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "overi» podpis balíka"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "posla» ¹tandardný výstup do <príkazu>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "vypísa» verziu pou¾ívaného rpm"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1718,21 +1714,21 @@ msgstr "presunutia musia obsahova
 msgid "relocations must have a / following the ="
 msgstr "presunutia musia ma» za znakom = znak /"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "in¹talova» v¹etky súbory vrátane konfiguraèných súborov, ktoré by inak mohli "
 "by» vynechané"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1740,158 +1736,148 @@ msgstr ""
 "odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
 "¹pecifikuje viac ako jeden balík)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "odin¹talova» balík"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "nein¹talova» dokumentáciu"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "vynecha» súbory v ceste <cesta>"
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skratka pre --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <súbor_balíku>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "neoverova» architektúru balíka"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "neoverova» operaèný systém balíka"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "in¹talova» dokumentáciu"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "in¹talova» balík"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "aktualizova» databázu bez zmeny súborového systému"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "zobrazi» súbory v balíku"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "neoverova» závislosti balíka"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "neoverova» architektúru balíka"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "overi» podpis balíka"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1899,49 +1885,53 @@ msgstr ""
 "aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
 "automaticky)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "vypisova» percentá poèas in¹talácie balíka"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "prein¹talova», pokiaµ u¾ balík existuje"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <súbor_balíka>"
@@ -1978,8 +1968,8 @@ msgstr "op
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "opýta» sa súboru balíka"
+msgid "query/verify a package file"
+msgstr "opýta» sa na v¹etky balíky"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -2033,134 +2023,125 @@ msgstr "op
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "opýta» sa na balíky poskytujúce schopnos» <schopnos»>"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "zobrazi» v¹etky konfiguraèné súbory"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr "zobrazi» v¹etky dokumentaèné súbory"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "zobrazi» základné informácie o balíku"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "pou¾i» nasledovný formát otázky"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "zobrazii» stav daných súborov"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "zobrazi» podrobný zoznam súborov balíka"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "zobrazi» súbory v balíku"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "zobrazi» súbory v balíku"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "overi» podpis balíka"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "vytvori» PGP/GPG podpis"
@@ -2507,36 +2488,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je vynechaný: %s"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
@@ -3000,13 +2981,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
@@ -3019,7 +3000,7 @@ msgstr "vytv
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3032,7 +3013,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3040,14 +3021,14 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 #, fuzzy
 msgid "repackage about-to-be-erased packages\n"
 msgstr "balík je verzie jedna!\n"
@@ -3055,7 +3036,7 @@ msgstr "bal
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3639,63 +3620,53 @@ msgstr "nepodarilo sa vytvori
 msgid "don't verify header+payload signature"
 msgstr "overi» podpis balíka"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "neoverova» závislosti balíka"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "overi» podpis balíka"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "vytvára sa adresár %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: otvorenie zlyhalo\n"
@@ -3705,6 +3676,32 @@ msgstr "%s: otvorenie zlyhalo\n"
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "pou¾itie: rpm {--help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "opýta» sa súboru balíka"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "zobrazi» podrobný zoznam súborov balíka"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "neoverova» závislosti balíka"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "overi» podpis balíka"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
 
index 7d6b5ae..0ae3446 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.288 2002/07/25 23:37:05 jbj Exp $
+# $Id: sl.po,v 1.289 2002/07/28 00:42:13 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,175 @@ 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:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "razlièica rpm, ki jo uporabljate"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "uporabljana razlièica rpm"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "standardni izhod preusmerjen na <ukaz>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "uporabi <imenik> za korenski imenik"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "prika¾i konèni rpmrc in nastavitev makra"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 #, fuzzy
 msgid "Signature options:"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "datoteka %s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM razlièica %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Ta program je dovoljeno razpeèevati pod pogoji navedenimi v GNU GPL."
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Uporaba: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Namesto njiju uporabite -e ali --erase.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "izbran sme biti le en glavni naèin"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "neprièakovane zastavice pri poizvedbi"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "neprièakovana oblika poizvedbe"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "neprièakovan izvor poizvedbe"
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr "--dbpath podan, vendar, èeprav nepotreben"
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 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:430
 msgid "files may only be relocated during package installation"
 msgstr "datoteke smemo premakniti samo med namestitvijo paketa"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "izbiri --prefix in --relocate se medsebojno izkljuèujeta"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 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:439
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix se sme uporabiti le pri namestitvi"
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti izbire --prefix se morajo zaèeti z /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sme biti podatn le ob namestitvi paketa"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "izbiri --excludedocs in --includedocs se medsebojno izkljuèujeta"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sme podan le ob namestitvi paketa"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize sme biti podan le ob namestitvi paketa"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sme biti podan le ob odstranitvi paketa"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sme biti podati le ob namestitvi paketa"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 #, 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:506
 #, 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:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -349,14 +255,14 @@ msgstr ""
 "--nodeps sme biti podan le ob izgradnji, vnovièni izgradnji, prevajanju, "
 "namestitvi, odstranitvi ali preverjanju paketa"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -364,82 +270,82 @@ msgstr ""
 "--root (-r) sme biti podan le ob namestitvi, odstranitvi poizvedbi ali "
 "vnovièni izgradnji paketa"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti izbire --root (-r) se morajo zaèeti z /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "ni datotek, ki bi jih lahko podpisal\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "dostop do datoteke %s ni mo¾en\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp manjka: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Vnesite pristopno geslo: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Preverjanje pristopnega gesla neuspe¹no\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Pristopno geslo je pravo.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Neveljaven %%_signature v makro-datoteki.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign sme biti podan le ob izgradnji paketa"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "izvajanje je bilo neuspe¹no\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "paketi za vnovièno izgradnjo niso navedeni"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "datoteka spec za izgradnjo manjka"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "arhiv tar za izgradnjo manjka"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "paketi katere bi bilo potrebno namestiti niso navedeni"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "paketi katere bi bilo potrebno namestiti niso navedeni"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "argumenti za poizvedbo niso podani"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "argumenti za preverjanje niso podani"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "neprièakovani argumenti za --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "argumenti za poizvedbo niso podani"
@@ -1245,7 +1151,7 @@ msgstr "Arhitektura za izgradnjo ni prisotna"
 msgid "Package has no %%description: %s\n"
 msgstr "V paketu manjka %%description: %s"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot je ¾e doloèen"
@@ -1691,16 +1597,106 @@ msgstr "%s: readLead je bil neuspe
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "uporabljana razlièica rpm"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "brez preverjanja soodvisnosti paketa"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "brez preverjanja arhitekture paketa"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "preveri podpis paketa(-ov)"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "standardni izhod preusmerjen na <ukaz>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "uporabi <imenik> za korenski imenik"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "prika¾i konèni rpmrc in nastavitev makra"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "razlièica rpm, ki jo uporabljate"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Notranja napaka pri obdelavi argumentov (%d) :-\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1721,20 +1717,20 @@ msgstr "premikanja morajo vsebovati ="
 msgid "relocations must have a / following the ="
 msgstr "premikanja morajo imeti /, ki mu sledi ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "namestitev vseh datotek, vkljuèno z nastavitvenimi, ki so sicer izpu¹èene"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1742,158 +1738,148 @@ msgstr ""
 "odstrani vse pakete, ki vsebujejo vzorec <paket> (sicer program izide z "
 "napako, èe paket <paket> doloèa veè paketov)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "brez izvajanja skriptov paketa"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (odstrani) paket"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "ni paketov\n"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "brez namestitve dokumentacije"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "preskok datotek v navedeni poti"
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "okraj¹ava za --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <paket>+       "
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "brez preverjanja arhitekture paketa"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "brez preverjanja operacijskega sistema paketa"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "brez preverjanja prostora na disku pred name¹èanjem"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "namesti dokumentacijo"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "name¹èanje paketa"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "brez preverjanja datotek v paketu"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "brez preverjanja soodvisnosti paketa"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "brez preverjanja arhitekture paketa"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "preveri podpis paketa(-ov)"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "brez izvajanja skriptov paketa"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1901,49 +1887,53 @@ msgstr ""
 "nadgraditev na starej¹o razlièico paketa (--force pri nadgradnjah "
 "avtomatièno vkljuèi to izbiro)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "izpis odstotkov med namestitvijo"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "èe je mogoèe, bo paket prestavljen v imenik <imenik>"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "prestavljanje datoteke iz stare poti v novo"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <starapot>=<novapot>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èene datoteke"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "ponovno namesti, èe paket ¾e obstaja"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "ne namesti, a ugotovi, èe bi delovalo"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <paket>      "
@@ -1980,8 +1970,8 @@ msgstr "poizvedba po paketu, ki vsebuje datoteko"
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "poizvedba po paketu"
+msgid "query/verify a package file"
+msgstr "poizvedba/preverba po vseh paketih"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -2035,132 +2025,123 @@ msgstr "poizvedba po paketih, ki potrebujejo dano zmo
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "poizvedba po paketih, ki ponujajo dano zmo¾nost <mo¾>"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "izpis vseh nastavitvene datoteke"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "izpis vseh dokumentacijske datoteke"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "iznos osnovnih podatkov o datoteki"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "izpis seznama datotek v paketu"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: readLead je bil neuspe¹en\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "uporabi naslednjo obliko poizvedbe"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "zamenjava razdeljkov I18N z naslednjim katalogom"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "izpis stanja seznama datotek"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "izpis ob¹irnega seznama datotek"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "brez preverjanja datotek v paketu"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "brez preverjanja datotek v paketu"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "podpi¹i paket(e) (trenutni podpis zavrzi)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "preveri podpis paketa(-ov)"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "podpi¹i paket(e) (trenutni podpis zavrzi)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "izdelava podpisa PGP/GPG"
@@ -2509,36 +2490,36 @@ 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:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "OS je izkljuèen: %s"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "izkljuèevanje datoteke %s%s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "premikanje %s v %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "premiokanje imenika %s v %s\n"
@@ -3003,13 +2984,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
@@ -3022,7 +3003,7 @@ msgstr "izklju
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3035,7 +3016,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3043,14 +3024,14 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 #, fuzzy
 msgid "repackage about-to-be-erased packages\n"
 msgstr "paket je paket razlièica ena!\n"
@@ -3058,7 +3039,7 @@ msgstr "paket je paket razli
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3646,63 +3627,53 @@ msgstr "neuspe
 msgid "don't verify header+payload signature"
 msgstr "preveri podpis paketa(-ov)"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "brez preverjanja soodvisnosti paketa"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "preveri podpis paketa(-ov)"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "ustvarjanje imenika: %s\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: odpiranje je bilo neuspe¹no: %s\n"
@@ -3712,6 +3683,32 @@ msgstr "%s: odpiranje je bilo neuspe
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Uporaba: %s {--help}\n"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Namesto njiju uporabite -e ali --erase.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath podan, vendar, èeprav nepotreben"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "poizvedba po paketu"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "izpis ob¹irnega seznama datotek"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "brez preverjanja soodvisnosti paketa"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "preveri podpis paketa(-ov)"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "definirajte makro <ime> z vrednostjo <telo>"
 
index 39cdd15..54e8613 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -71,271 +71,177 @@ msgstr "gre
 msgid "cannot re-open payload: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "napi¹i verziju rpm-a koja se koristi"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "napi¹i verziju rpm-a koja se koristi"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "po¹alji standardni izlaz u <komandu>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, fuzzy, c-format
 msgid "%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzija %s\n"
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:238
+#: rpmqv.c:143
 #, fuzzy
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Mo¾ete slobodno distribuirati dalje pod odredbama GNU GPL"
 
-#: rpmqv.c:250
-#, fuzzy, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "kori¹æenje: {rpm --help}"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr ""
-
-#: rpmqv.c:611
-#, fuzzy
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Koristite -e ili --erase.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "samo jedan glavni re¾im mo¾e biti naveden"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "neoèekivan izvor upita"
 
-#: rpmqv.c:738
-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:428
 #, 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:430
 msgid "files may only be relocated during package installation"
 msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate"
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 #, 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti za --prefix moraju poèeti znakom /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 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:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 #, 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:506
 #, 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:510
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
@@ -343,14 +249,14 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -358,84 +264,84 @@ msgstr ""
 "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili "
 "rekreiranja baze podataka"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti za --root (-r) moraju poèeti znakom /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Neuspela provera lozinke\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Lozinka je dobra.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "nedosataje paket za rekreiranje"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "nedostaje specifikacije za kreiranje"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "nedostaju 'tar' datoteke za kreiranje"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "nedostaju argumenti za upit"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "nedostaju argumenti za proveru"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekivani argumenti za --querytags"
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "nedostaju argumenti za upit"
@@ -1229,7 +1135,7 @@ msgstr "nemoj proveravati arhitekturu paketa"
 msgid "Package has no %%description: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, fuzzy, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "Neuspelo èitanje %s: %s."
@@ -1676,16 +1582,105 @@ msgstr "%s: Neuspeo 'readLead'\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "napi¹i verziju rpm-a koja se koristi"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "nemoj proveravati zavisnosti paketa"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "nemoj proveravati arhitekturu paketa"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "proveri potpis u paketu"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "po¹alji standardni izlaz u <komandu>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "napi¹i verziju rpm-a koja se koristi"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1707,20 +1702,20 @@ msgstr "preme
 msgid "relocations must have a / following the ="
 msgstr "preme¹tanja moraju imati / praæeno sa ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaliraj sve datoteke, èak i konfiguracije koje bi inaèe bile preskoèene"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1728,207 +1723,201 @@ msgstr ""
 "ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
 "<paket> oznaèava vi¹e paketa)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (deinstaliraj) paket"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 #, fuzzy
 msgid "<package>+"
 msgstr "upit nad svim paketima"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "nemoj da instalira¹ dokumentaciju"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skraæenica za --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<faza> <spec>\t "
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "pi¹i he¹-znak (#) kako odmièe instaliranje paketa (dobro doðe sa -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "instaliraj dokumentaciju"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+#, fuzzy
+msgid "don't verify MD5 digest of files"
+msgstr "instaliraj paket"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "nemoj proveravati zavisnosti paketa"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "nemoj proveravati arhitekturu paketa"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "proveri potpis u paketu"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 "a¾uriraj na staru verziju paketa (--force kod a¾uriranja ovo radi automatski)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "pi¹i procente instalacije paketa"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "ponovo instaliraj ako je paket veæ prisutan"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "instaliraj paket"
@@ -1965,7 +1954,7 @@ msgstr "upit nad paketom koji ima <datoteku>"
 
 #: lib/poptQV.c:107
 #, fuzzy
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr "upit nad svim paketima"
 
 #: lib/poptQV.c:109
@@ -2021,139 +2010,129 @@ msgstr "upit za pakete koji zahtevaju <i> svojstvo"
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 #, fuzzy
 msgid "list all configuration files"
 msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 #, fuzzy
 msgid "list all documentation files"
 msgstr "instaliraj dokumentaciju"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 #, fuzzy
 msgid "dump basic file information"
 msgstr "prika¾i informacije o paketu"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 #, fuzzy
 msgid "list files in package"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, fuzzy, c-format
 msgid "skip %%readme files"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 #, fuzzy
 msgid "use the following query format"
 msgstr "neoèekivan izvor upita"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 #, fuzzy
 msgid "substitute i18n sections into spec file"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-#, fuzzy
-msgid "display a verbose file listing"
-msgstr "prika¾i listu datoteka u paketu"
-
-#: lib/poptQV.c:233
-#, fuzzy
-msgid "don't verify MD5 digest of files"
-msgstr "instaliraj paket"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 #, fuzzy
 msgid "don't verify size of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 #, fuzzy
 msgid "don't verify symlink path of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 #, fuzzy
 msgid "don't verify owner of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 #, fuzzy
 msgid "don't verify group of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 #, fuzzy
 msgid "don't verify mode of files"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 #, fuzzy
 msgid "don't verify files in package"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 #, fuzzy
 msgid "don't verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "proveri potpis u paketu"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 #, fuzzy
 msgid "generate signature"
 msgstr "napravi PGP potpis"
@@ -2500,36 +2479,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, fuzzy, c-format
 msgid "%5d exclude  %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, fuzzy, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, fuzzy, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, fuzzy, c-format
 msgid "excluding %s %s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, fuzzy, c-format
 msgid "relocating %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@@ -2995,13 +2974,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@@ -3014,7 +2993,7 @@ msgstr "gre
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -3027,7 +3006,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -3035,21 +3014,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3640,63 +3619,53 @@ msgstr "neuspelo kreiranje %s\n"
 msgid "don't verify header+payload signature"
 msgstr "proveri potpis u paketu"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "nemoj proveravati zavisnosti paketa"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "proveri potpis u paketu"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: Neuspelo otvaranje\n"
@@ -3706,6 +3675,33 @@ msgstr "%s: Neuspelo otvaranje\n"
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
+#, fuzzy
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "kori¹æenje: {rpm --help}"
+
+#, fuzzy
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Koristite -e ili --erase.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
+
+#, fuzzy
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "upit nad svim paketima"
+
+#, fuzzy
+#~ msgid "display a verbose file listing"
+#~ msgstr "prika¾i listu datoteka u paketu"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "nemoj proveravati zavisnosti paketa"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "proveri potpis u paketu"
+
 #~ msgid "removing these packages would break dependencies:\n"
 #~ msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
 
index c7d470f..deba4a1 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.1\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-0400\n"
 "PO-Revision-Date: 2002-07-11 22:49+0200\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -73,251 +73,161 @@ msgstr "fel vid l
 msgid "cannot re-open payload: %s\n"
 msgstr "kan inte återöppna lasten: %s\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "visa vilken version av rpm som används"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "visa mindre detaljerad utdata"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "visa mer detaljerad utdata"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr "definiera MAKRO till värdet UTTR"
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr "'MAKRO UTTR'"
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr "skriv ut makroexpansion av UTTR"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr "'UTTR'"
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "skicka standard ut till <kommando>"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<kommando>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "använd <kat> som toppkatalog"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<kat>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "läs <fil:...> istället för standardmakrofil(er)"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<fil:...>"
-
-#: 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:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "visa slutliga rpmrc- och makrokonfigurationer"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "deaktivera användningen av libio(3)-API:et"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "felsök protokolldataström"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "felsök rpmio I/O"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "felsök cache-hanteringen av URL:ar"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "Frågeflaggor (med -q eller --query):"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "Verifieringsflaggor (med -V eller --verify):"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "Signaturflaggor:"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "Databasflaggor:"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr "Byggflaggor med [ <specfil> | <tar-arkiv> | <källpaket> ]:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr "Installera-/Uppdatera-/Raderaflaggor"
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "Gemensamma flaggor för alla rpm-lägen:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "%s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+#: rpmqv.c:142
+#, fuzzy
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright © 1998-2002 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Det här programmet kan distribueras fritt enligt villkoren i GNU GPL"
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Användning: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "Flaggan --rcfile har tagits bort.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Använd \"--macros <fil:...>\" istället.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "enbart ett huvudläge kan anges"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "oväntade frågeflaggor"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "oväntat frågeformat"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "oväntad frågekälla"
 
-#: rpmqv.c:738
-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:428
 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:430
 msgid "files may only be relocated during package installation"
 msgstr "filer kan relokeras endast under paketinstallation"
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 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:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "argument till --prefix måste börja med /"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 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:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches kan enbart användas när paket raderas"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles kan enbart användas vid paketinstallation"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -325,7 +235,7 @@ msgstr ""
 "skriptdeaktiveringsflaggor kan enbart användas när paket installeras eller "
 "raderas"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -333,7 +243,7 @@ msgstr ""
 "utlösardeaktiveringsflaggor kan enbart användas när paket installeras eller "
 "raderas"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -341,13 +251,13 @@ msgstr ""
 "--nodeps kan enbart användas när paket byggs, byggs om, kompileras om, "
 "installeras, raderas eller verifieras"
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 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:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -355,81 +265,81 @@ msgstr ""
 "--root (-r) kan enbart användas när paket installeras, raderas, frågas eller "
 "databasen byggs om"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "inga filer att signera\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "kan inte komma åt filen %s\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp hittades inte: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Ange lösenfras: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Kontrollen av lösenfrasen misslyckades\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Lösenfrasen är ok.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Felaktig %%_signature-spec i makrofil.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign kan enbart användas vid pakettillverkning"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "exec misslyckades\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "inga paketfiler angivna för omtillverkning"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "inga specfiler angivna för tillverkning"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "inga tar-filer angivna för tillverkning"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr "inga paket angivna att radera"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "inga paket angivna för installation"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "inga parametrar angivna för fråga"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "inga parametrar angivna för verifiering"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "oväntade argument till --querytags "
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr "inga argument angivna"
 
@@ -1215,7 +1125,7 @@ msgstr "Hittade inga kompatibla arkitekturer att bygga\n"
 msgid "Package has no %%description: %s\n"
 msgstr "Paketet har ingen %%description: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot redan angett, ignorerar %s\n"
@@ -1642,16 +1552,103 @@ msgstr "%s: headerRead misslyckades\n"
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr "definiera MAKRO till värdet UTTR"
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr "'MAKRO UTTR'"
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr "skriv ut makroexpansion av UTTR"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr "'UTTR'"
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "läs <FIL:...> istället för standardfil(er)"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr "<FIL:...>"
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr "verifiera inte paketkontrollsummor"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "verifiera inte paketarkitektur"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "deaktivera användningen av libio(3)-API:et"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr "verifiera inte paketsignatur(er)"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "skicka standard ut till <kommando>"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "använd <kat> som toppkatalog"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "visa slutliga rpmrc- och makrokonfigurationer"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "visa mindre detaljerad utdata"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "visa mer detaljerad utdata"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "visa vilken version av rpm som används"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "felsök protokolldataström"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "Internt fel i argumenthantering (%d) :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "felsök rpmio I/O"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "felsök cache-hanteringen av URL:ar"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr "%s: flaggtabell felkonfigurerad (%d)\n"
@@ -1672,20 +1669,20 @@ msgstr "omflyttningar m
 msgid "relocations must have a / following the ="
 msgstr "omflyttningar måste ha ett / efter ="
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr "återställning tar en tid-/datumstämpel som argument"
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr "felformaterat tid-/datumstämpelargument för återställning"
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installera alla filer, även konfigurationer som annars kunde hoppats över"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1693,149 +1690,140 @@ msgstr ""
 "ta bort alla paket som matchar <paket> (normalt ger det ett fel om <paket> "
 "anger flera paket)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "kör inte paketskript"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "relokera filer i ej relokerbart paket"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr "spara raderade paketfiler genom att spara dem i underkatalog"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "radera (avinstallera) paket"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<paket>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "installera inte dokumentation"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "hoppa över filer med inledande <sökväg>"
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<sökväg>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "kortform för --replacepkgs --replacefiles"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "uppgradera paket om redan installerat/de"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<paketfil>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "skriv ut brädgårdar allteftersom paketet installeras (bra tillsammans med -v)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "verifiera inte paketarkitektur"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "verifiera inte paketets operativsystem"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "kontrollera inte diskutrymme före installation"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "installera dokumentation"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr "installera paket"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "uppdatera databasen, men ändra inte filsystemet"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "verifiera inte MD5-summor för filer"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr "föreslå inte lösning(ar) på saknade beroenden"
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%pre-skript"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%post-skript"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%preun-skript"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%postun-skript"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr "verifiera inte paketkontrollsummor"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "verifiera inte paketarkitektur"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr "verifiera inte paketsignatur(er)"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kör inte skript utlösta av detta paket"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "kör inte %%triggerprein-skript"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "kör inte %%triggerin-skript"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "kör inte %%triggerun-skript"
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "kör inte %%triggerpostun-skript"
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1843,47 +1831,51 @@ msgstr ""
 "uppgradera till en gammal version av paketet (--force vid uppgraderingar gör "
 "detta automatiskt)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "skriv procent allt eftersom paketet installeras"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "flytta paketet till <katalog>, om flyttbart"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<kat>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "relokera filer från <gammal> till <ny>"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<gammal>=<ny>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "spara raderade paketfiler genom ompaketering"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "installera även om paketet byter ut installerade filer"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "installera om ifall paketet redan är installerat"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till <datum>"
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr "<datum>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "installera inte, men tala om ifall det skulle fungera eller inte"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "uppgradera paket"
 
@@ -1912,8 +1904,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "fråga/verifiera paket med huvudidentifierare"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr "fråga/verifiera en paketfil (t.ex. en binär *.rpm-fil)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "fråga/verifiera alla paket"
 
 #: lib/poptQV.c:109
 msgid "query/verify package(s) with package identifier"
@@ -1959,118 +1952,110 @@ msgstr "fr
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "fråga/verifiera paket som tillhandahåller ett beroende"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "lista alla konfigurationsfiler"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "lista alla dokumentationsfiler"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "visa filinformation"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "lista filer i paketet"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr "hoppa över %%ghost-filer"
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr "hoppa över %%license-filer"
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr "hoppa över %%readme-filer"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "använd följande frågeformat"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "ersätt översatta sektioner till specfil"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "visa tillstånd för de listade filerna"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "visa en utförlig fillistning"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "verifiera inte MD5-summor för filer"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "verifiera inte storlekar på filer"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "verifiera inte sökvägen i symboliska länkar"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "verifiera inte ägare till filer"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "verifiera inte grupper till filer"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "verifiera inte modifikationstiden för filer"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "verifiera inte rättigheter för filer"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "verifiera inte filerna i paketet"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr "utför inte verify-skript"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "verifiera inte GPG V3 DSA-signatur(er)"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "verifiera inte PGP V3 RSA/MD5-signatur(er)"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr "signera paket (detsamma som --resign)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr "verifiera paketsignatur(er)"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr "importera en publik nyckel med skal"
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr "signera paket (detsamma som --addsign)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "generera signatur"
 
@@ -2411,36 +2396,36 @@ msgstr "  %s    A %s\tB %s\n"
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr "paket %s har ouppfyllda %s: %s\n"
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr "========== omflyttningar\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d utesluter  %s\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d flyttar om %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "hoppar över multilib-sökväg %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "hoppar över %s %s\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
@@ -2893,13 +2878,13 @@ msgstr "Trasig MD5-summa: ST
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Signatur: OKÄND (%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
@@ -2912,7 +2897,7 @@ msgstr "hoppar 
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2925,7 +2910,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2933,21 +2918,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3521,60 +3506,52 @@ msgstr "kunde inte skapa %s: %s\n"
 msgid "don't verify header+payload signature"
 msgstr "verifiera inte huvud+lastsignatur"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr "verifiera inte paketkontrollsummor"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr "verifiera inte paketsignatur"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr "uppdatera inte cachedatabasen, skriv bara ut paketsökvägar"
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr "följ kommandoradssymlänkar"
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr "genomlöp logiskt"
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr "byt inte katalog"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr "hämta inte statusinfo"
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr "genomlöp fysiskt"
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr "returnera punkt som punkt-punkt"
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr "gå inte mellan enheter"
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr "returnera belyst information"
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr "Gemensamma flaggor för alla rpm-lägen och binärer:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr "%s: %%{_cache_dbpath}-makro är felkonfigurerat.\n"
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: cacheoperation misslyckades: ec %d.\n"
@@ -3583,3 +3560,39 @@ msgstr "%s: cacheoperation misslyckades: ec %d.\n"
 #, c-format
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: läsning av paketlista misslyckades: %s\n"
+
+#~ msgid "<cmd>"
+#~ msgstr "<kommando>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "läs <fil:...> istället för standardmakrofil(er)"
+
+#~ msgid "<file:...>"
+#~ msgstr "<fil:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "läs <fil:...> istället för standard rpmrc-fil(er)"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Användning: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "Flaggan --rcfile har tagits bort.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Använd \"--macros <fil:...>\" istället.\n"
+
+#~ 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"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr "fråga/verifiera en paketfil (t.ex. en binär *.rpm-fil)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "visa en utförlig fillistning"
+
+#~ msgid "don't verify package digest"
+#~ msgstr "verifiera inte paketkontrollsummor"
+
+#~ msgid "don't verify package signature"
+#~ msgstr "verifiera inte paketsignatur"
index cb3e4f6..9f0c9b4 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,257 +75,165 @@ msgstr "paketten ba
 msgid "cannot re-open payload: %s\n"
 msgstr "payload %s tekrar açýlamýyor\n"
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr "Kullanýlan RPM sürümünü verir"
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr "daha az ayrýntýlý çýktý saðlar"
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr "daha ayrýntýlý çýktý saðlar"
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-#, fuzzy
-msgid "print macro expansion of EXPR"
-msgstr "<ifade>+ için makro açýlýmýný gösterir"
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr "standart çýktýyý <KOMUT>'a gönderir"
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr "<kmt>"
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr "Üst düzey dizin olarak <dizin> kullanýlýr"
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr "<dizin>"
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr "öntanýmlý makro dosyasý yerine <dosya:...> okunur"
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr "<dosya:...>"
-
-#: 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:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr "son rpmrc ve makro yapýlandýrmasýný gösterir"
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr "libio(3) API kullanýmýný iptal eder"
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr "protokol veri akýþýnda hata kontrolu"
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr "rpmio G/Ç hata kontrolu"
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr "URL arabellek kullanýmý hata kontrolu"
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr "Sorgulama seçenekleri (-q ya da --query ile)"
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr "Denetleme seçenekleri (-V ya da --verify ile)"
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr "Ýmza seçenekleri:"
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr "Veritabaný seçenekleri:"
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 "[ <specDosyasý> | <tarPaketi> | <kaynakPaketi> ] ile paketleme seçenekleri:"
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr "Kurma/Güncelleme/Kaldýrma seçenekleri:"
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr "Tüm rpm kipleri için ortak seçenekler:"
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr "dosya %s: %s\n"
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Sürüm %s\n"
 
-#: rpmqv.c:237
+#: rpmqv.c:142
 #, fuzzy
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr "Copyright (C) 1998 - 2000 - Red Hat, Inc."
 
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
+#: rpmqv.c:143
+#, fuzzy
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr "Bu program GNU GPL koþullarýna uygun olarak serbestçe daðýtýlabilir."
 
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr "Kullanýmý: %s {--help}\n"
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
-msgstr "--rcfile seçeneði kaldýrýlmýþtý.\n"
-
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
-msgstr "Yerine \"--macros <dosya:...>\" kullanýn.\n"
-
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr "sadece bir ana kip belirtilebilir"
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 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:380
 msgid "unexpected query flags"
 msgstr "beklenmeyen sorgulama bayraklarý"
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr "beklenmeyen sorgulama biçemi"
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr "beklenmeyen sorgulama kaynaðý"
 
-#: rpmqv.c:738
-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:428
 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:430
 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:433
 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:436
 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:439
 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:442
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix ile belirtilenler '/' ile baþlamalý"
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 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:449
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "--excludedocs ve --includedocs bir arada kullanýlamaz"
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sadece paket kurulumu sýrasýnda kullanýlabilir"
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 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:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
@@ -333,7 +241,7 @@ msgstr ""
 "betik iptal etme seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda "
 "kullanýlabilir"
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
@@ -341,7 +249,7 @@ msgstr ""
 "tetikleme iptal seçenekleri sadece paketin kurulmasý ve silinmesi sýrasýnda "
 "kullanýlabilir"
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
@@ -349,7 +257,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:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -357,7 +265,7 @@ msgstr ""
 "--test sadece paket kurulumu, kaldýrýlmasý ve oluþturulmasý iþlemlerinde "
 "kullanýlabilir"
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -365,82 +273,82 @@ msgstr ""
 "--root (-r) sadece kurulum, kaldýrma, sorgulama ve yeniden veritabaný "
 "oluþturma iþlemlerinde kullanýlabilir"
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) ile verilenler '/' ile baþlamalý"
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr "imzalanacak dosya yok\n"
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "%s dosyasý bulunamýyor\n"
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr "pgp bulunamadý: "
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr "Anahtar parolasýný girin: "
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr "Anahtar parolasý kontrolü baþarýsýz\n"
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr "Anahtar parolasý doðru.\n"
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Makro dosyasýndaki %%_signature spec geçersiz.\n"
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr "--sign sadece paket oluþturulurken kullanýlabilir"
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr "icra baþarýsýz\n"
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr "yeniden oluþturmak için paket dosyalarý belirtilmemiþ"
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr "oluþturma için gerekli spec dosyasý belirtilmemiþ"
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr "oluþturma için gereken tar dosyalarý belirtilmemiþ"
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 #, fuzzy
 msgid "no packages given for erase"
 msgstr "yüklenecek paket(ler) belirtilmedi"
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr "yüklenecek paket(ler) belirtilmedi"
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr "denetleme için hiç argüman belirtilmedi"
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags ile beklenmeyen girdiler"
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 #, fuzzy
 msgid "no arguments given"
 msgstr "sorgulama için hiç argüman belirtilmedi"
@@ -1232,7 +1140,7 @@ msgstr "Kurgulamak i
 msgid "Package has no %%description: %s\n"
 msgstr "Paket %%description içermiyor: %s\n"
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr "buildroot zaten belirtilmiþ, %s yoksayýlýyor\n"
@@ -1677,17 +1585,107 @@ msgstr "%s: readLead ba
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+#, fuzzy
+msgid "print macro expansion of EXPR"
+msgstr "<ifade>+ için makro açýlýmýný gösterir"
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 #, fuzzy
 msgid "read <FILE:...> instead of default file(s)"
 msgstr "öntanýmlý makro dosyasý yerine <dosya:...> okunur"
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+#, fuzzy
+msgid "don't verify package digest(s)"
+msgstr "paket baðýmlýlýklarý doðrulanmaz"
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+#, fuzzy
+msgid "don't verify database header(s) when retrieved"
+msgstr "paket mimarisi denetlenmez"
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr "libio(3) API kullanýmýný iptal eder"
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+#, fuzzy
+msgid "don't verify package signature(s)"
+msgstr "paket imzasýný denetler"
+
+#: lib/poptALL.c:174
+#, fuzzy
+msgid "send stdout to CMD"
+msgstr "standart çýktýyý <KOMUT>'a gönderir"
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+#, fuzzy
+msgid "use ROOT as top level directory"
+msgstr "Üst düzey dizin olarak <dizin> kullanýlýr"
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr "son rpmrc ve makro yapýlandýrmasýný gösterir"
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr "daha az ayrýntýlý çýktý saðlar"
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr "daha ayrýntýlý çýktý saðlar"
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr "Kullanýlan RPM sürümünü verir"
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr "protokol veri akýþýnda hata kontrolu"
+
+#: lib/poptALL.c:208
+#, fuzzy
+msgid "debug option/argument processing"
+msgstr "(%d) argümaný iþlenirken iç hata oluþtu :-(\n"
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr "rpmio G/Ç hata kontrolu"
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr "URL arabellek kullanýmý hata kontrolu"
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1708,20 +1706,20 @@ msgstr "yeniden konumland
 msgid "relocations must have a / following the ="
 msgstr "yeniden konumlandýrma için = den sonra bir / gerekir"
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 #, fuzzy
 msgid "malformed rollback time/date stamp argument"
 msgstr "tekrarlama zamaný bozuk"
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "yapýlandýrmalarda atlanmýþ bile olsa tüm dosyalarý kurar"
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1729,153 +1727,142 @@ msgstr ""
 "<paket> ile eþlenen tüm paketleri kaldýrýr(<paket> ile çok sayýda paket "
 "belirtilmiþse normalde bir hata oluþur)"
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr "paket betikleri çalýþtýrýlmaz"
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr "yeniden konumlanamayan paketin dosyalarýný yeniden konumlandýrýr"
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "ismi deðiþtirilerek alt dizine kaydedilmek suretiyle silinen dosyalarý "
 "kaydeder"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr "paketi kaldýrýr"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr "<paket>+"
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr "belgeleri kurmaz"
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr "<dosyayolu> ile baþlayan dosyalarý atlar "
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr "<dosyaYolu>"
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs --replacefiles için kýsaltma"
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr "paket(ler) kurulu ise paket(ler)i günceller"
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr "<paketDosyasý>+"
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr "paketin kurulma sürecini gösteren imler basar (-v ile)"
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr "paket mimarisi denetlenmez"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr "yüklemeden önce yeterli disk alaný kontrolu yapmaz"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr "paket ile gelen belgeleri kurar"
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 #, fuzzy
 msgid "install package(s)"
 msgstr "paketi kurar"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr "paket baðýmlýlýklarýný denetlemez"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz"
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "paket kurulum sýrasýný baðýmlýlýklara göre düzenlemez"
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "%%pre betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "%%post betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "%%preun betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "%%postun betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-#, fuzzy
-msgid "don't verify package digest(s)"
-msgstr "paket baðýmlýlýklarý doðrulanmaz"
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-#, fuzzy
-msgid "don't verify database header(s) when retrieved"
-msgstr "paket mimarisi denetlenmez"
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-#, fuzzy
-msgid "don't verify package signature(s)"
-msgstr "paket imzasýný denetler"
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "bu paket tarafýndan tetiklenen hiç bir betik çalýþtýrýlmaz"
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "hiçbir %%triggerprein betiði çalýþtýrýlmaz"
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "hiçbir %%triggerin betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "hiçbir %%triggerun betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "hiçbir %%triggerpostun betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1883,49 +1870,53 @@ msgstr ""
 "paketin eski bir sürüme güncellenmesini saðlar (--force ayný iþi otomatik "
 "yapar)"
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr "kurulumun geliþimi yüzde olarak gösterilir"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "eðer deðitirilebiliyorsa paketin yerini <dizin>'e deðiþtirir"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr "<dizin>"
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr "dosyalarý <eski> dizininden kaldýrýp <yeni> dizinine yerleþtirir"
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr "<eski>=<yeni>"
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr "yeniden paketleme sýrasýnda silinen paket dosyalarýný kaydeder"
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr "paket dosyalarý mevcut dosyalarla yer deðiþtirse bile paketi kurar"
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr "paketi yeniden kurar"
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 #, fuzzy
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "yeni paket(ler) kaldýrýlýr, geriye dönük eski paket(ler) yeniden kurulur"
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr "<tarih>"
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr "paket günceller"
 
@@ -1957,10 +1948,9 @@ msgid "query/verify package(s) with header identifier"
 msgstr "dosyayý içeren paketleri sorgular/denetler"
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
-msgstr ""
-"bir paket dosyasýný sorgular/denetler (örn. bir çalýþtýrýlabilir *.rpm "
-"dosyasý)"
+#, fuzzy
+msgid "query/verify a package file"
+msgstr "tüm paketleri sorgular/doðrular"
 
 #: lib/poptQV.c:109
 #, fuzzy
@@ -2009,124 +1999,116 @@ msgstr "bir ba
 msgid "query/verify the package(s) which provide a dependency"
 msgstr "bir baðýmlýlýðý saðlayan  paketleri sorgular/denetler"
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr "tüm yapýlandýrma dosyalarýný listeler"
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr "tüm belgeleme dosyalarýný gösterir"
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr "temel dosya bilgilerini gösterir"
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr "paketteki dosyalarý gösterir"
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr "%%ghost dosyalarý atlanýr"
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr "%%license dosyalarý atlanýr"
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr "%%readme dosyalarý atlanýr"
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr "izleyen sorgulama biçimini kullanýr"
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr "spec dosyasýndaki i18n bölümleri yerine kullanýlýr"
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr "listelenmiþ dosyalarýn durumunu gösterir"
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr "ayrýntýlý dosya listesi gösterir"
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz"
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr "dosyalarýn uzunluklarý doðrulanmaz"
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr "dosyalarýn sembolik bað dosya yollarý doðrulanmaz"
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr "dosyalarýn sahipleri doðrulanmaz"
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr "dosyalarýn gruplarý doðrulanmaz"
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr "dosyalarýn deðiþiklik zamanlarý doðrulanmaz"
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr "dosyalarýn kipleri doðrulanmaz"
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr "paketteki dosyalar doðrulanamaz"
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr "paket baðýmlýlýklarý doðrulanmaz"
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 #, fuzzy
 msgid "don't execute verify script(s)"
 msgstr "(varsa) %verifyscript çalýþtýrýlmaz"
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 #, fuzzy
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr "Baþlýk SHA1 özümlemesi doðrulanmaz"
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 #, fuzzy
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr "dosyalarýn MD5 özümlemesi doðrulanmaz"
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 #, fuzzy
 msgid "sign package(s) (identical to --resign)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 #, fuzzy
 msgid "verify package signature(s)"
 msgstr "paket imzasýný denetler"
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 #, fuzzy
 msgid "sign package(s) (identical to --addsign)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr "imza üretir"
 
@@ -2469,36 +2451,36 @@ 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:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr "========== yeniden konumlama\n"
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr "%5d %s'i dýþlýyor\n"
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr "%5d yeniden konumlandýrýlýyor: %s -> %s\n"
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr "multilib dosya yolu dýþlanýyor %s%s\n"
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr "%s %s dýþlanýyor\n"
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s %s'e konumlanýyor\n"
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizini %s de yeniden konumlanýyor\n"
@@ -2955,13 +2937,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr "Ýmza: boyut(%d)+iz(%d)\n"
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
@@ -2974,7 +2956,7 @@ msgstr "%s dizini d
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2987,7 +2969,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2995,21 +2977,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3586,64 +3568,54 @@ msgstr "%s olu
 msgid "don't verify header+payload signature"
 msgstr "paket imzasýný denetler"
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-#, fuzzy
-msgid "don't verify package digest"
-msgstr "paket baðýmlýlýklarý doðrulanmaz"
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-#, fuzzy
-msgid "don't verify package signature"
-msgstr "paket imzasýný denetler"
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 #, fuzzy
 msgid "don't change directories"
 msgstr "%s dizini oluþturuluyor\n"
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 #, fuzzy
 msgid "Common options for all rpm modes and executables:"
 msgstr "Tüm rpm kipleri için ortak seçenekler:"
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, fuzzy, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr "%s: açýlamadý: %s\n"
@@ -3653,6 +3625,46 @@ msgstr "%s: a
 msgid "%s: read manifest failed: %s\n"
 msgstr "%s: bildirge okuma baþarýsýz: %s\n"
 
+#~ msgid "<cmd>"
+#~ msgstr "<kmt>"
+
+#~ msgid "read <file:...> instead of default macro file(s)"
+#~ msgstr "öntanýmlý makro dosyasý yerine <dosya:...> okunur"
+
+#~ msgid "<file:...>"
+#~ msgstr "<dosya:...>"
+
+#~ msgid "read <file:...> instead of default rpmrc file(s)"
+#~ msgstr "öntanýmlý rpmrc dosyasý yerine <dosya:...> okunur"
+
+#~ msgid "Usage: %s {--help}\n"
+#~ msgstr "Kullanýmý: %s {--help}\n"
+
+#~ msgid "The --rcfile option has been eliminated.\n"
+#~ msgstr "--rcfile seçeneði kaldýrýlmýþtý.\n"
+
+#~ msgid "Use \"--macros <file:...>\" instead.\n"
+#~ msgstr "Yerine \"--macros <dosya:...>\" kullanýn.\n"
+
+#~ msgid "--dbpath given for operation that does not use a database"
+#~ msgstr "--dbpath bir veritabaný kullanmayan iþlemler için verilmiþ"
+
+#~ msgid "query/verify a package file (i.e. a binary *.rpm file)"
+#~ msgstr ""
+#~ "bir paket dosyasýný sorgular/denetler (örn. bir çalýþtýrýlabilir *.rpm "
+#~ "dosyasý)"
+
+#~ msgid "display a verbose file listing"
+#~ msgstr "ayrýntýlý dosya listesi gösterir"
+
+#, fuzzy
+#~ msgid "don't verify package digest"
+#~ msgstr "paket baðýmlýlýklarý doðrulanmaz"
+
+#, fuzzy
+#~ msgid "don't verify package signature"
+#~ msgstr "paket imzasýný denetler"
+
 #~ msgid "define macro <name> with value <body>"
 #~ msgstr "<isim> makrosunu <gövde> deðeriyle tanýmlar"
 
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 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-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 2e70344..52cd36d 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-07-25 18:54-0400\n"
+"POT-Creation-Date: 2002-07-27 20:39-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,261 @@ msgstr ""
 msgid "cannot re-open payload: %s\n"
 msgstr ""
 
-#: rpmqv.c:114 lib/poptALL.c:142
-msgid "print the version of rpm being used"
-msgstr ""
-
-#: rpmqv.c:117 lib/poptALL.c:138
-msgid "provide less detailed output"
-msgstr ""
-
-#: rpmqv.c:119 lib/poptALL.c:140
-msgid "provide more detailed output"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:145
-msgid "define MACRO with value EXPR"
-msgstr ""
-
-#: rpmqv.c:121 lib/poptALL.c:146
-msgid "'MACRO EXPR'"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:148
-msgid "print macro expansion of EXPR"
-msgstr ""
-
-#: rpmqv.c:123 lib/poptALL.c:149
-msgid "'EXPR'"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:151
-msgid "send stdout to <cmd>"
-msgstr ""
-
-#: rpmqv.c:125 lib/poptALL.c:152
-msgid "<cmd>"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:154
-msgid "use <dir> as the top level directory"
-msgstr ""
-
-#: rpmqv.c:127 lib/poptALL.c:155 lib/poptI.c:222
-msgid "<dir>"
-msgstr ""
-
-#: rpmqv.c:129
-msgid "read <file:...> instead of default macro file(s)"
-msgstr ""
-
-#: rpmqv.c:130 rpmqv.c:134 rpmqv.c:138
-msgid "<file:...>"
-msgstr ""
-
-#: rpmqv.c:133 rpmqv.c:137
-msgid "read <file:...> instead of default rpmrc file(s)"
-msgstr ""
-
-#: rpmqv.c:141 lib/poptALL.c:169
-msgid "display final rpmrc and macro configuration"
-msgstr ""
-
-#: rpmqv.c:146 lib/poptALL.c:174
-msgid "disable use of libio(3) API"
-msgstr ""
-
-#: rpmqv.c:149 lib/poptALL.c:178
-msgid "debug protocol data stream"
-msgstr ""
-
-#: rpmqv.c:151 lib/poptALL.c:180
-msgid "debug rpmio I/O"
-msgstr ""
-
-#: rpmqv.c:153 lib/poptALL.c:182
-msgid "debug URL cache handling"
-msgstr ""
-
-#: rpmqv.c:173
+#: rpmqv.c:78
 msgid "Query options (with -q or --query):"
 msgstr ""
 
-#: rpmqv.c:176
+#: rpmqv.c:81
 msgid "Verify options (with -V or --verify):"
 msgstr ""
 
-#: rpmqv.c:182
+#: rpmqv.c:87
 msgid "Signature options:"
 msgstr ""
 
-#: rpmqv.c:188
+#: rpmqv.c:93
 msgid "Database options:"
 msgstr ""
 
-#: rpmqv.c:194
+#: rpmqv.c:99
 msgid "Build options with [ <specfile> | <tarball> | <source package> ]:"
 msgstr ""
 
-#: rpmqv.c:200
+#: rpmqv.c:105
 msgid "Install/Upgrade/Erase options:"
 msgstr ""
 
-#: rpmqv.c:205
+#: rpmqv.c:110
 msgid "Common options for all rpm modes:"
 msgstr ""
 
 #. @-modfilesys -globs @
-#: rpmqv.c:222 lib/poptI.c:27
+#: rpmqv.c:127 lib/poptI.c:27
 #, c-format
 msgid "%s: %s\n"
 msgstr ""
 
-#: rpmqv.c:230 lib/poptALL.c:46
+#: rpmqv.c:135 lib/poptALL.c:54
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpmqv.c:237
-msgid "Copyright (C) 1998-2002 - Red Hat, Inc."
-msgstr ""
-
-#: rpmqv.c:238
-msgid "This program may be freely redistributed under the terms of the GNU GPL"
-msgstr ""
-
-#: rpmqv.c:250
-#, c-format
-msgid "Usage: %s {--help}\n"
-msgstr ""
-
-#: rpmqv.c:610
-msgid "The --rcfile option has been eliminated.\n"
+#: rpmqv.c:142
+msgid "Copyright (C) 1998-2002 - Red Hat, Inc.\n"
 msgstr ""
 
-#: rpmqv.c:611
-msgid "Use \"--macros <file:...>\" instead.\n"
+#: rpmqv.c:143
+msgid ""
+"This program may be freely redistributed under the terms of the GNU GPL\n"
 msgstr ""
 
-#: rpmqv.c:617
+#: rpmqv.c:309
 #, 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:347 rpmqv.c:353 rpmqv.c:359 rpmqv.c:397
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpmqv.c:687
+#: rpmqv.c:376
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpmqv.c:691
+#: rpmqv.c:380
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpmqv.c:694
+#: rpmqv.c:383
 msgid "unexpected query format"
 msgstr ""
 
-#: rpmqv.c:697
+#: rpmqv.c:386
 msgid "unexpected query source"
 msgstr ""
 
-#: rpmqv.c:738
-msgid "--dbpath given for operation that does not use a database"
-msgstr ""
-
-#: rpmqv.c:744
+#: rpmqv.c:428
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpmqv.c:746
+#: rpmqv.c:430
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpmqv.c:749
+#: rpmqv.c:433
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpmqv.c:752
+#: rpmqv.c:436
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:755
+#: rpmqv.c:439
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpmqv.c:758
+#: rpmqv.c:442
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpmqv.c:761
+#: rpmqv.c:445
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:765
+#: rpmqv.c:449
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:770
+#: rpmqv.c:454
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:774
+#: rpmqv.c:458
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:778
+#: rpmqv.c:462
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:782
+#: rpmqv.c:466
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:786
+#: rpmqv.c:470
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpmqv.c:790
+#: rpmqv.c:474
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:794
+#: rpmqv.c:478
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:799
+#: rpmqv.c:483
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:803
+#: rpmqv.c:487
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpmqv.c:807
+#: rpmqv.c:491
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpmqv.c:812
+#: rpmqv.c:496
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpmqv.c:817
+#: rpmqv.c:501
 msgid ""
 "script disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:822
+#: rpmqv.c:506
 msgid ""
 "trigger disabling options may only be specified during package installation "
 "and erasure"
 msgstr ""
 
-#: rpmqv.c:826
+#: rpmqv.c:510
 msgid ""
 "--nodeps may only be specified during package building, rebuilding, "
 "recompilation, installation,erasure, and verification"
 msgstr ""
 
-#: rpmqv.c:831
+#: rpmqv.c:515
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpmqv.c:836
+#: rpmqv.c:520
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpmqv.c:848
+#: rpmqv.c:532
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpmqv.c:872
+#: rpmqv.c:556
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpmqv.c:877
+#: rpmqv.c:561
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpmqv.c:896
+#: rpmqv.c:580
 msgid "pgp not found: "
 msgstr ""
 
-#: rpmqv.c:901
+#: rpmqv.c:585
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpmqv.c:903
+#: rpmqv.c:587
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpmqv.c:907
+#: rpmqv.c:591
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpmqv.c:912
+#: rpmqv.c:596
 #, c-format
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpmqv.c:919
+#: rpmqv.c:603
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpmqv.c:936
+#: rpmqv.c:620
 msgid "exec failed\n"
 msgstr ""
 
-#: rpmqv.c:971
+#: rpmqv.c:655
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpmqv.c:1039
+#: rpmqv.c:723
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpmqv.c:1041
+#: rpmqv.c:725
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpmqv.c:1063
+#: rpmqv.c:747
 msgid "no packages given for erase"
 msgstr ""
 
-#: rpmqv.c:1104
+#: rpmqv.c:787
 msgid "no packages given for install"
 msgstr ""
 
-#: rpmqv.c:1120
+#: rpmqv.c:803
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpmqv.c:1133
+#: rpmqv.c:816
 msgid "no arguments given for verify"
 msgstr ""
 
-#: rpmqv.c:1141
+#: rpmqv.c:824
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpmqv.c:1157
+#: rpmqv.c:840
 msgid "no arguments given"
 msgstr ""
 
@@ -1206,7 +1114,7 @@ msgstr ""
 msgid "Package has no %%description: %s\n"
 msgstr ""
 
-#: build/poptBT.c:117
+#: build/poptBT.c:108
 #, c-format
 msgid "buildroot already specified, ignoring %s\n"
 msgstr ""
@@ -1624,16 +1532,99 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptALL.c:157 lib/poptALL.c:161 lib/poptALL.c:165
+#: lib/poptALL.c:153
+msgid "define MACRO with value EXPR"
+msgstr ""
+
+#: lib/poptALL.c:154
+msgid "'MACRO EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:156
+msgid "print macro expansion of EXPR"
+msgstr ""
+
+#: lib/poptALL.c:157
+msgid "'EXPR'"
+msgstr ""
+
+#: lib/poptALL.c:159 lib/poptALL.c:178 lib/poptALL.c:182
 msgid "read <FILE:...> instead of default file(s)"
 msgstr ""
 
-#: lib/poptALL.c:158 lib/poptALL.c:162 lib/poptALL.c:166
+#: lib/poptALL.c:160 lib/poptALL.c:179 lib/poptALL.c:183
 msgid "<FILE:...>"
 msgstr ""
 
+#: lib/poptALL.c:163 lib/poptI.c:245 lib/poptI.c:252 lib/poptQV.c:320
+#: lib/poptQV.c:329 lib/poptQV.c:368
+msgid "don't verify package digest(s)"
+msgstr ""
+
+#: lib/poptALL.c:165 lib/poptI.c:247 lib/poptI.c:254 lib/poptQV.c:323
+#: lib/poptQV.c:331 lib/poptQV.c:371
+msgid "don't verify database header(s) when retrieved"
+msgstr ""
+
+#: lib/poptALL.c:168 lib/poptALL.c:201
+msgid "disable use of libio(3) API"
+msgstr ""
+
+#: lib/poptALL.c:171 lib/poptI.c:249 lib/poptI.c:256 lib/poptQV.c:326
+#: lib/poptQV.c:333 lib/poptQV.c:373
+msgid "don't verify package signature(s)"
+msgstr ""
+
+#: lib/poptALL.c:174
+msgid "send stdout to CMD"
+msgstr ""
+
+#: lib/poptALL.c:175
+msgid "CMD"
+msgstr ""
+
+#: lib/poptALL.c:186
+msgid "use ROOT as top level directory"
+msgstr ""
+
+#: lib/poptALL.c:187
+msgid "ROOT"
+msgstr ""
+
+#: lib/poptALL.c:190
+msgid "display final rpmrc and macro configuration"
+msgstr ""
+
+#: lib/poptALL.c:193
+msgid "provide less detailed output"
+msgstr ""
+
+#: lib/poptALL.c:195
+msgid "provide more detailed output"
+msgstr ""
+
+#: lib/poptALL.c:197
+msgid "print the version of rpm being used"
+msgstr ""
+
+#: lib/poptALL.c:205
+msgid "debug protocol data stream"
+msgstr ""
+
+#: lib/poptALL.c:208
+msgid "debug option/argument processing"
+msgstr ""
+
+#: lib/poptALL.c:211
+msgid "debug rpmio I/O"
+msgstr ""
+
+#: lib/poptALL.c:213
+msgid "debug URL cache handling"
+msgstr ""
+
 #. @-nullpass@
-#: lib/poptALL.c:253
+#: lib/poptALL.c:284
 #, c-format
 msgid "%s: option table misconfigured (%d)\n"
 msgstr ""
@@ -1654,211 +1645,207 @@ msgstr ""
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:84
+#: lib/poptI.c:85
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:91
+#: lib/poptI.c:92
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:111
+#: lib/poptI.c:145
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:115
+#: lib/poptI.c:149
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:121 lib/poptI.c:176
+#: lib/poptI.c:155 lib/poptI.c:225 lib/poptI.c:228
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:125
+#: lib/poptI.c:159
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:128
+#: lib/poptI.c:162
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:165
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:134
+#: lib/poptI.c:168
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:136
+#: lib/poptI.c:170
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:137
+#: lib/poptI.c:171
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:140
+#: lib/poptI.c:176 lib/poptI.c:179
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:143
+#: lib/poptI.c:184
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:144 lib/poptI.c:160 lib/poptI.c:243
+#: lib/poptI.c:185 lib/poptI.c:201 lib/poptI.c:304
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:146
+#: lib/poptI.c:187
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:149
+#: lib/poptI.c:190
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:193
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:196
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:198
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:160
+#: lib/poptI.c:201
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:203
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:164
+#: lib/poptI.c:206 lib/poptI.c:209
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:212 lib/poptQV.c:266 lib/poptQV.c:269
+msgid "don't verify MD5 digest of files"
+msgstr ""
+
+#: lib/poptI.c:215
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:172
+#: lib/poptI.c:220
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:179
+#: lib/poptI.c:232
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:182
+#: lib/poptI.c:235
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:185
+#: lib/poptI.c:238
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:188
+#: lib/poptI.c:241
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:191 lib/poptQV.c:268 lib/poptQV.c:308
-msgid "don't verify package digest(s)"
-msgstr ""
-
-#: lib/poptI.c:193 lib/poptQV.c:271 lib/poptQV.c:311
-msgid "don't verify database header(s) when retrieved"
-msgstr ""
-
-#: lib/poptI.c:195 lib/poptQV.c:274 lib/poptQV.c:313
-msgid "don't verify package signature(s)"
-msgstr ""
-
-#: lib/poptI.c:199
+#: lib/poptI.c:260
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:202
+#: lib/poptI.c:263
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:205
+#: lib/poptI.c:266
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:269
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:211
+#: lib/poptI.c:272
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:215
+#: lib/poptI.c:276
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:219
+#: lib/poptI.c:280
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:282
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:283
+msgid "<dir>"
+msgstr ""
+
+#: lib/poptI.c:285
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:225
+#: lib/poptI.c:286
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:228
+#: lib/poptI.c:289
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:231
+#: lib/poptI.c:292
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:234
+#: lib/poptI.c:295
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:236
+#: lib/poptI.c:297
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:237
+#: lib/poptI.c:298
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:239
+#: lib/poptI.c:300
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:242
+#: lib/poptI.c:303
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -1887,7 +1874,7 @@ msgid "query/verify package(s) with header identifier"
 msgstr ""
 
 #: lib/poptQV.c:107
-msgid "query/verify a package file (i.e. a binary *.rpm file)"
+msgid "query/verify a package file"
 msgstr ""
 
 #: lib/poptQV.c:109
@@ -1934,118 +1921,110 @@ msgstr ""
 msgid "query/verify the package(s) which provide a dependency"
 msgstr ""
 
-#: lib/poptQV.c:189
+#: lib/poptQV.c:219
 msgid "list all configuration files"
 msgstr ""
 
-#: lib/poptQV.c:191
+#: lib/poptQV.c:221
 msgid "list all documentation files"
 msgstr ""
 
-#: lib/poptQV.c:193
+#: lib/poptQV.c:223
 msgid "dump basic file information"
 msgstr ""
 
-#: lib/poptQV.c:195
+#: lib/poptQV.c:225
 msgid "list files in package"
 msgstr ""
 
-#: lib/poptQV.c:200
+#: lib/poptQV.c:230
 #, c-format
 msgid "skip %%ghost files"
 msgstr ""
 
-#: lib/poptQV.c:204
+#: lib/poptQV.c:234
 #, c-format
 msgid "skip %%license files"
 msgstr ""
 
-#: lib/poptQV.c:207
+#: lib/poptQV.c:237
 #, c-format
 msgid "skip %%readme files"
 msgstr ""
 
-#: lib/poptQV.c:213
+#: lib/poptQV.c:243
 msgid "use the following query format"
 msgstr ""
 
-#: lib/poptQV.c:215
+#: lib/poptQV.c:245
 msgid "substitute i18n sections into spec file"
 msgstr ""
 
-#: lib/poptQV.c:217
+#: lib/poptQV.c:247
 msgid "display the states of the listed files"
 msgstr ""
 
-#: lib/poptQV.c:219
-msgid "display a verbose file listing"
-msgstr ""
-
-#: lib/poptQV.c:233
-msgid "don't verify MD5 digest of files"
-msgstr ""
-
-#: lib/poptQV.c:236
+#: lib/poptQV.c:273
 msgid "don't verify size of files"
 msgstr ""
 
-#: lib/poptQV.c:239
+#: lib/poptQV.c:276
 msgid "don't verify symlink path of files"
 msgstr ""
 
-#: lib/poptQV.c:242
+#: lib/poptQV.c:279
 msgid "don't verify owner of files"
 msgstr ""
 
-#: lib/poptQV.c:245
+#: lib/poptQV.c:282
 msgid "don't verify group of files"
 msgstr ""
 
-#: lib/poptQV.c:248
+#: lib/poptQV.c:285
 msgid "don't verify modification time of files"
 msgstr ""
 
-#: lib/poptQV.c:251 lib/poptQV.c:254
+#: lib/poptQV.c:288 lib/poptQV.c:291
 msgid "don't verify mode of files"
 msgstr ""
 
-#: lib/poptQV.c:257
+#: lib/poptQV.c:294
 msgid "don't verify files in package"
 msgstr ""
 
-#: lib/poptQV.c:259 tools/rpmgraph.c:274
+#: lib/poptQV.c:297 lib/poptQV.c:300 tools/rpmgraph.c:274
 msgid "don't verify package dependencies"
 msgstr ""
 
-#: lib/poptQV.c:261 lib/poptQV.c:265
+#: lib/poptQV.c:305 lib/poptQV.c:309 lib/poptQV.c:312 lib/poptQV.c:315
 msgid "don't execute verify script(s)"
 msgstr ""
 
-#: lib/poptQV.c:279
+#: lib/poptQV.c:339
 msgid "don't verify GPG V3 DSA signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:282
+#: lib/poptQV.c:342
 msgid "don't verify PGP V3 RSA/MD5 signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:297
+#: lib/poptQV.c:357
 msgid "sign package(s) (identical to --resign)"
 msgstr ""
 
-#: lib/poptQV.c:299
+#: lib/poptQV.c:359
 msgid "verify package signature(s)"
 msgstr ""
 
-#: lib/poptQV.c:301
+#: lib/poptQV.c:361
 msgid "import an armored public key"
 msgstr ""
 
-#: lib/poptQV.c:303
+#: lib/poptQV.c:363
 msgid "sign package(s) (identical to --addsign)"
 msgstr ""
 
-#: lib/poptQV.c:305
+#: lib/poptQV.c:365
 msgid "generate signature"
 msgstr ""
 
@@ -2382,36 +2361,36 @@ msgstr ""
 msgid "package %s has unsatisfied %s: %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:607
+#: lib/rpmfi.c:603
 msgid "========== relocations\n"
 msgstr ""
 
-#: lib/rpmfi.c:611
+#: lib/rpmfi.c:607
 #, c-format
 msgid "%5d exclude  %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:614
+#: lib/rpmfi.c:610
 #, c-format
 msgid "%5d relocate %s -> %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:684
+#: lib/rpmfi.c:680
 #, c-format
 msgid "excluding multilib path %s%s\n"
 msgstr ""
 
-#: lib/rpmfi.c:750
+#: lib/rpmfi.c:746
 #, c-format
 msgid "excluding %s %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:760
+#: lib/rpmfi.c:756
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/rpmfi.c:839
+#: lib/rpmfi.c:835
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
@@ -2862,13 +2841,13 @@ msgstr ""
 msgid "Signature: UNKNOWN (%d)\n"
 msgstr ""
 
-#: lib/transaction.c:106
+#: lib/transaction.c:107
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:910
+#: lib/transaction.c:902
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
@@ -2881,7 +2860,7 @@ msgstr ""
 #. * For packages being removed:
 #. * - count files.
 #.
-#: lib/transaction.c:1020
+#: lib/transaction.c:1012
 #, c-format
 msgid "sanity checking %d elments\n"
 msgstr ""
@@ -2894,7 +2873,7 @@ msgstr ""
 #. * calling fpLookupList only once. I'm not sure that the speedup is
 #. * worth the trouble though.
 #.
-#: lib/transaction.c:1101
+#: lib/transaction.c:1093
 #, c-format
 msgid "computing %d file fingerprints\n"
 msgstr ""
@@ -2902,21 +2881,21 @@ msgstr ""
 #. ===============================================
 #. * Compute file disposition for each package in transaction set.
 #.
-#: lib/transaction.c:1178
+#: lib/transaction.c:1165
 msgid "computing file dispositions\n"
 msgstr ""
 
 #. ===============================================
 #. * Save removed files before erasing.
 #.
-#: lib/transaction.c:1344
+#: lib/transaction.c:1331
 msgid "repackage about-to-be-erased packages\n"
 msgstr ""
 
 #. ===============================================
 #. * Install and remove packages.
 #.
-#: lib/transaction.c:1374
+#: lib/transaction.c:1361
 #, c-format
 msgid "install/erase %d elements\n"
 msgstr ""
@@ -3490,60 +3469,52 @@ msgstr ""
 msgid "don't verify header+payload signature"
 msgstr ""
 
-#: tools/rpmcache.c:517 tools/rpmgraph.c:278
-msgid "don't verify package digest"
-msgstr ""
-
-#: tools/rpmcache.c:519 tools/rpmgraph.c:280
-msgid "don't verify package signature"
-msgstr ""
-
-#: tools/rpmcache.c:522
+#: tools/rpmcache.c:518
 msgid "don't update cache database, only print package paths"
 msgstr ""
 
-#: tools/rpmcache.c:526
+#: tools/rpmcache.c:522
 msgid "follow command line symlinks"
 msgstr ""
 
-#: tools/rpmcache.c:529
+#: tools/rpmcache.c:525
 msgid "logical walk"
 msgstr ""
 
-#: tools/rpmcache.c:532
+#: tools/rpmcache.c:528
 msgid "don't change directories"
 msgstr ""
 
-#: tools/rpmcache.c:535
+#: tools/rpmcache.c:531
 msgid "don't get stat info"
 msgstr ""
 
-#: tools/rpmcache.c:538
+#: tools/rpmcache.c:534
 msgid "physical walk"
 msgstr ""
 
-#: tools/rpmcache.c:541
+#: tools/rpmcache.c:537
 msgid "return dot and dot-dot"
 msgstr ""
 
-#: tools/rpmcache.c:544
+#: tools/rpmcache.c:540
 msgid "don't cross devices"
 msgstr ""
 
-#: tools/rpmcache.c:547
+#: tools/rpmcache.c:543
 msgid "return whiteout information"
 msgstr ""
 
-#: tools/rpmcache.c:550 tools/rpmgraph.c:286
+#: tools/rpmcache.c:546 tools/rpmgraph.c:282
 msgid "Common options for all rpm modes and executables:"
 msgstr ""
 
-#: tools/rpmcache.c:582
+#: tools/rpmcache.c:578
 #, c-format
 msgid "%s: %%{_cache_dbpath} macro is mis-configured.\n"
 msgstr ""
 
-#: tools/rpmcache.c:614
+#: tools/rpmcache.c:618
 #, c-format
 msgid "%s: cache operation failed: ec %d.\n"
 msgstr ""
index 95285b6..921f8c8 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-07-24 00:03+0100\n"
 "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
index 8db09dd..270c579 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: Sun Jan 21 2001 04:30:32+0200\n"
 "Last-Translator: Martin Hansen <mah@k64.dk>\n"
 "Language-Team: Dansk <dansk@klid.dk>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 2f08e70..2ba0de1 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: Leandro Lucarella <luca@linuxmendoza.org.ar>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 52fb006..1a16940 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-01-17 01:01+0100\n"
 "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
 "Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
index c6495bb..b1f0bcd 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2000-08-03 23:26+0200\n"
 "Last-Translator: László Németh <nemeth@qwertynet.hu>\n"
 "Language-Team: Hungarian\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index eee26a0..7df805b 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-06-08 01:35+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index bdcb332..59b1eca 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-09-06 20:06+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
index 50473e2..1249d2e 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-06-27 11:05+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas@online.no>\n"
 "Language-Team: Norwegian <no@li.org>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 1e7c603..2d3892e 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 87c0065..59b5883 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2002-02-13 18:32+0000\n"
 "Last-Translator: Pedro Morais <morais@kde.org>\n"
 "Language-Team: pt <morais@kde.org>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index f4fd8c1..4d130b1 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2000-06-14 23:23+EST\n"
 "Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
 "Language-Team: Romanian <ro@li.org>\n"
index d3e7880..bc5a7c6 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-07-05 21:00-0500\n"
 "Last-Translator: Eugene Kanter <eugene@blackcatlinux.com>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
index 2690d92..8d7e5e9 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 1999-08-04 21:40+0200\n"
 "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
 "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
index 0f97240..eb04365 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2000-09-05 12:30+0200\n"
 "Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 5a6f9ae..e6d8365 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2001-07-12 22:26+0100\n"
 "Last-Translator: Christian Rose <menthos@menthos.com>\n"
 "Language-Team: Swedish <sv@li.org>\n"
index 371eb50..6943953 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 2000-02-11 13:01+0200\n"
 "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
 "Language-Team: Turkish <tr@li.org>\n"
index a8b5f62..bfcacce 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 1999-09-30 16:54+0200\n"
 "Last-Translator: Yuri Syrota <rasta@renome.rovno.ua>\n"
 "Language-Team: Ukrainian <uk@li.org>\n"
index b48a4de..cae7721 100644 (file)
@@ -9,7 +9,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 1999-03-18 23:11+0100\n"
 "Last-Translator: Nobody yet\n"
 "Language-Team: walon <linux-wa@chanae.alphanet.ch>\n"
index 736af41..b9a3f06 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-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"
index 6522f81..107e433 100644 (file)
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: popt 1.6.3\n"
-"POT-Creation-Date: 2002-07-25 14:27-0400\n"
+"POT-Creation-Date: 2002-07-27 20:40-0400\n"
 "PO-Revision-Date: 1999-11-11 05:04+0800\n"
 "Last-Translator: Dillion Chen <dillon.chen@turbolinux.com.cn>\n"
 "Language-Team: TLDN\n"
index 94af481..f40b740 100644 (file)
@@ -101,7 +101,11 @@ getArgDescrip(const struct poptOption * opt,
 
     switch (opt->argInfo & POPT_ARG_MASK) {
     case POPT_ARG_NONE:                return POPT_("NONE");
+#ifdef DYING
     case POPT_ARG_VAL:         return POPT_("VAL");
+#else
+    case POPT_ARG_VAL:         return NULL;
+#endif
     case POPT_ARG_INT:         return POPT_("INT");
     case POPT_ARG_LONG:                return POPT_("LONG");
     case POPT_ARG_STRING:      return POPT_("STRING");
@@ -600,16 +604,29 @@ static int itemUsage(FILE * fp, int cursor, poptItem item, int nitems,
 }
 
 /**
+ * Keep track of option tables already processed.
+ */
+typedef struct poptDone_s {
+    int nopts;
+    int maxopts;
+/*@observer@*/
+    const void ** opts;
+} * poptDone;
+
+/**
  * Display usage text for a table of options.
  * @param con          context
  * @param fp           output file handle
  * @param cursor
  * @param opt          option(s)
  * @param translation_domain   translation domain
+ * @param done         tables already processed
+ * @return
  */
 static int singleTableUsage(poptContext con, FILE * fp,
                int cursor, const struct poptOption * opt,
-               /*@null@*/ const char * translation_domain)
+               /*@null@*/ const char * translation_domain,
+               poptDone done)
        /*@globals fileSystem @*/
        /*@modifies *fp, fileSystem @*/
 {
@@ -619,9 +636,21 @@ static int singleTableUsage(poptContext con, FILE * fp,
         if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INTL_DOMAIN) {
            translation_domain = (const char *)opt->arg;
        } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) {
-           if (opt->arg)       /* XXX program error */
+           int i = 0;
+           if (done)
+           for (i = 0; i < done->nopts; i++) {
+               const void * that = done->opts[i];
+               if (that == NULL || that != opt->arg)
+                   continue;
+               break;
+           }
+           /* Skip if this table has already been processed. */
+           if (opt->arg == NULL || i < done->nopts)
+               continue;
+           if (done->nopts < done->maxopts)
+               done->opts[done->nopts++] = (const void *) opt->arg;
            cursor = singleTableUsage(con, fp, cursor, opt->arg,
-                       translation_domain);
+                       translation_domain, done);
        } else if ((opt->longName || opt->shortName) &&
                 !(opt->argInfo & POPT_ARGFLAG_DOC_HIDDEN)) {
            cursor = singleOptionUsage(fp, cursor, opt, translation_domain);
@@ -634,6 +663,7 @@ static int singleTableUsage(poptContext con, FILE * fp,
 
 /**
  * Return concatenated short options for display.
+ * @todo Sub-tables should be recursed.
  * @param opt          option(s)
  * @param fp           output file handle
  * @retval str         concatenation of short options
@@ -674,13 +704,20 @@ static int showShortOptions(const struct poptOption * opt, FILE * fp,
 
 void poptPrintUsage(poptContext con, FILE * fp, /*@unused@*/ int flags)
 {
+    poptDone done = memset(alloca(sizeof(*done)), 0, sizeof(*done));
     int cursor;
 
+    done->nopts = 0;
+    done->maxopts = 64;
+    cursor = done->maxopts * sizeof(*done->opts);
+    done->opts = memset(alloca(cursor), 0, cursor);
+    done->opts[done->nopts++] = (const void *) con->options;
+
     cursor = showHelpIntro(con, fp);
     cursor += showShortOptions(con->options, fp, NULL);
-    (void) singleTableUsage(con, fp, cursor, con->options, NULL);
-    (void) itemUsage(fp, cursor, con->aliases, con->numAliases, NULL);
-    (void) itemUsage(fp, cursor, con->execs, con->numExecs, NULL);
+    cursor = singleTableUsage(con, fp, cursor, con->options, NULL, done);
+    cursor = itemUsage(fp, cursor, con->aliases, con->numAliases, NULL);
+    cursor = itemUsage(fp, cursor, con->execs, con->numExecs, NULL);
 
     if (con->otherHelp) {
        cursor += strlen(con->otherHelp) + 1;
index b158058..3b0d44b 100644 (file)
@@ -17,7 +17,7 @@ Name: rpm
 %define version @VERSION@
 Version: %{version}
 %{expand: %%define rpm_version %{version}}
-Release: 0.57
+Release: 0.58
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
 Copyright: GPL
@@ -26,6 +26,7 @@ Conflicts: patch < 2.5
 Prereq: gawk fileutils textutils mktemp shadow-utils
 %endif
 Requires: popt = 1.7
+Obsoletes: rpm-perl < %{version}
 
 %if !%{with_internal_db}
 BuildRequires: db3-devel
@@ -514,6 +515,10 @@ fi
 %{__prefix}/include/popt.h
 
 %changelog
+* Sat Jul 27 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.58
+- popt: display sub-table options only once on --usage.
+- wire --nosignatures et al as common options, rework CLI options.
+
 * Thu Jul 25 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.57
 - python: remove the old initdb/rebuilddb methods, use ts.fooDB().
 - python: 1st crack at backport to 1.5.2.
diff --git a/rpmqv.c b/rpmqv.c
index bfa078f..4dcd5be 100755 (executable)
--- a/rpmqv.c
+++ b/rpmqv.c
 #include "rpmps.h"
 #include "rpmts.h"
 
-#define        POPT_NODEPS             1025
-#define        POPT_FORCE              1026
-#define        POPT_NOMD5              1027
-#define        POPT_NOSCRIPTS          1028
-
 #ifdef IAM_RPMBT
 #include "build.h"
 #define GETOPT_REBUILD         1003
 
 #include "debug.h"
 
-#define GETOPT_SHOWRC          1018
-#define        GETOPT_DEFINEMACRO      1020
-#define        GETOPT_EVALMACRO        1021
-#ifdef NOTYET
-#define        GETOPT_RCFILE           1022
-#endif
-
 enum modes {
 
     MODE_QUERY         = (1 <<  0),
@@ -76,96 +64,13 @@ enum modes {
 #define        MODES_FOR_TEST          (MODES_BT | MODES_IE)
 #define        MODES_FOR_ROOT          (MODES_BT | MODES_IE | MODES_QV | MODES_DB | MODES_K)
 
-/*@-exportheadervar@*/
-/*@unchecked@*/
-extern int _ftp_debug;
-/*@unchecked@*/
-extern int noLibio;
-/*@unchecked@*/
-extern int _rpmio_debug;
-
-/*@=exportheadervar@*/
-
-/* options for all executables */
-
-/*@unchecked@*/
-static int help = 0;
-/*@unchecked@*/
-static int noUsageMsg = 0;
-/*@unchecked@*/
-/*@observer@*/ /*@null@*/
-static const char * pipeOutput = NULL;
-/*@unchecked@*/
-static int quiet = 0;
-/*@unchecked@*/
-/*@observer@*/ /*@null@*/
-static const char * rcfile = NULL;
-/*@unchecked@*/
-/*@observer@*/ /*@null@*/
-static char * rootdir = "/";
-/*@unchecked@*/
-static int showrc = 0;
-/*@unchecked@*/
-static int showVersion = 0;
-
-/*@unchecked@*/
-static struct poptOption rpmAllPoptTable[] = {
- { "version", '\0', 0, &showVersion, 0,
-       N_("print the version of rpm being used"),
-       NULL },
- { "quiet", '\0', 0, &quiet, 0,
-       N_("provide less detailed output"), NULL},
- { "verbose", 'v', 0, 0, 'v',
-       N_("provide more detailed output"), NULL},
- { "define", '\0', POPT_ARG_STRING, 0, GETOPT_DEFINEMACRO,
-       N_("define MACRO with value EXPR"), N_("'MACRO EXPR'") },
- { "eval", '\0', POPT_ARG_STRING, 0, GETOPT_EVALMACRO,
-       N_("print macro expansion of EXPR"), N_("'EXPR'") },
- { "pipe", '\0', POPT_ARG_STRING|POPT_ARGFLAG_DOC_HIDDEN, &pipeOutput, 0,
-       N_("send stdout to <cmd>"), N_("<cmd>") },
- { "root", 'r', POPT_ARG_STRING | POPT_ARGFLAG_SHOW_DEFAULT, &rootdir, 0,
-       N_("use <dir> as the top level directory"), N_("<dir>") },
- { "macros", '\0', POPT_ARG_STRING, &macrofiles, 0,
-       N_("read <file:...> instead of default macro file(s)"),
-       N_("<file:...>") },
-#if !defined(GETOPT_RCFILE)
- { "rcfile", '\0', POPT_ARG_STRING, &rcfile, 0,
-       N_("read <file:...> instead of default rpmrc file(s)"),
-       N_("<file:...>") },
-#else
- { "rcfile", '\0', 0, 0, GETOPT_RCFILE,        
-       N_("read <file:...> instead of default rpmrc file(s)"),
-       N_("<file:...>") },
-#endif
- { "showrc", '\0', 0, &showrc, GETOPT_SHOWRC,
-       N_("display final rpmrc and macro configuration"),
-       NULL },
-
-#if HAVE_LIBIO_H && defined(_G_IO_IO_FILE_VERSION)
- { "nolibio", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &noLibio, 1,
-       N_("disable use of libio(3) API"), NULL},
-#endif
- { "ftpdebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_ftp_debug, -1,
-       N_("debug protocol data stream"), NULL},
- { "rpmiodebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_rpmio_debug, -1,
-       N_("debug rpmio I/O"), NULL},
- { "urldebug", '\0', POPT_ARG_VAL|POPT_ARGFLAG_DOC_HIDDEN, &_url_debug, -1,
-       N_("debug URL cache handling"), NULL},
-
-   POPT_TABLEEND
-};
-
 /* the structure describing the options we take and the defaults */
 /*@unchecked@*/
 static struct poptOption optionsTable[] = {
 
  /* XXX colliding options */
-#if defined(IAM_RPMQV) || defined(IAM_RPMEIU) || defined(IAM_RPMBT)
+#if defined(IAM_RPMQV) || defined(IAM_RPMEIU)
  {  NULL, 'i', POPT_ARGFLAG_DOC_HIDDEN, 0, 'i',                        NULL, NULL},
- {  "nodeps", 0, POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_NODEPS,      NULL, NULL},
- {  "noscripts", 0, POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_NOSCRIPTS,        NULL, NULL},
- {  "nomd5", 0, POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_NOMD5,                NULL, NULL},
- {  "force", 0, POPT_ARGFLAG_DOC_HIDDEN, 0, POPT_FORCE,                NULL, NULL},
 #endif
 
 #ifdef IAM_RPMQV
@@ -201,7 +106,7 @@ static struct poptOption optionsTable[] = {
        NULL },
 #endif /* IAM_RPMEIU */
 
- { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmAllPoptTable, 0,
+ { NULL, '\0', POPT_ARG_INCLUDE_TABLE, rpmcliAllPoptTable, 0,
        N_("Common options for all rpm modes:"),
        NULL },
 
@@ -223,60 +128,33 @@ long _stksize = 64 * 1024L;
     exit(EXIT_FAILURE);
 }
 
-static void printVersion(void)
+static void printVersion(FILE * fp)
        /*@globals rpmEVR, fileSystem @*/
        /*@modifies fileSystem @*/
 {
-    fprintf(stdout, _("RPM version %s\n"), rpmEVR);
+    fprintf(fp, _("RPM version %s\n"), rpmEVR);
 }
 
-static void printBanner(void)
+static void printBanner(FILE * fp)
        /*@globals fileSystem @*/
        /*@modifies fileSystem @*/
 {
-    (void) puts(_("Copyright (C) 1998-2002 - Red Hat, Inc."));
-    (void) puts(_("This program may be freely redistributed under the terms of the GNU GPL"));
+    fprintf(fp, _("Copyright (C) 1998-2002 - Red Hat, Inc.\n"));
+    fprintf(fp, _("This program may be freely redistributed under the terms of the GNU GPL\n"));
 }
 
-static void printUsage(void)
+static void printUsage(poptContext con, FILE * fp, int flags)
        /*@globals __assert_program_name, rpmEVR, fileSystem @*/
        /*@modifies fileSystem @*/
 {
-    FILE * fp = stdout;
-    printVersion();
-    printBanner();
-    (void) puts("");
-
-    fprintf(fp, _("Usage: %s {--help}\n"), __progname);
-    fprintf(fp,   "       %s {--version}\n" , __progname);
-
-#ifdef IAM_RPMEIU
-#ifdef DYING
---dbpath       all
---ftpproxy etc all
---force                alias for --replacepkgs --replacefiles
---includedocs  handle as option in table
-               --erase forbids many options
-#endif /* DYING */
-#endif /* IAM_RPMEIU */
-
-#ifdef IAM_RPMQV
-#ifdef DYING   /* XXX popt glue needing --help doco. */
---dbpath       all
---ftpproxy etc all
--i,--info      Q
--R,--requires  Q
--P,--provides  Q
---scripts      Q
---triggeredby  Q
---changelog    Q
---triggers     Q
---querytags    !V
---setperms     V
---setugids     V
-#endif /* DYING */
-#endif /* IAM_RPMQV */
-
+    printVersion(fp);
+    printBanner(fp);
+    fprintf(fp, "\n");
+
+    if (rpmIsVerbose())
+       poptPrintHelp(con, fp, flags);
+    else
+       poptPrintUsage(con, fp, flags);
 }
 
 /*@-bounds@*/ /* LCL: segfault */
@@ -320,7 +198,6 @@ int main(int argc, const char ** argv)
 #endif
 
     int arg;
-    int gotDbpath = 0;
 
     const char * optArg;
     pid_t pipeChild = 0;
@@ -369,18 +246,7 @@ int main(int argc, const char ** argv)
 #endif
     /*@=nullpass@*/
 
-    /* set the defaults for the various command line options */
-    _ftp_debug = 0;
-
-#if HAVE_LIBIO_H && defined(_G_IO_IO_FILE_VERSION)
-    noLibio = 0;
-#else
-    noLibio = 1;
-#endif
-    _rpmio_debug = 0;
-
     /* XXX Eliminate query linkage loop */
-    specedit = 0;
     /*@-type@*/        /* FIX: casts? */
     parseSpecVec = parseSpec;
     freeSpecVec = freeSpec;
@@ -406,146 +272,14 @@ int main(int argc, const char ** argv)
     (void) poptReadDefaultConfig(optCon, 1);
     poptSetExecPath(optCon, RPMCONFIGDIR, 1);
 
-    /* reading rcfile early makes it easy to override */
-    /* XXX only --rcfile (and --showrc) need this pre-parse */
-
-    while ((arg = poptGetNextOpt(optCon)) > 0) {
-       switch(arg) {
-       case 'v':
-           rpmIncreaseVerbosity();     /* XXX silly use by showrc */
-           /*@switchbreak@*/ break;
-        default:
-           /*@switchbreak@*/ break;
-      }
-    }
-
-    if (rpmReadConfigFiles(rcfile, NULL))  
-       exit(EXIT_FAILURE);
-
-    if (showrc) {
-       (void) rpmShowRC(stdout);
-       exit(EXIT_SUCCESS);
-    }
-
-    rpmSetVerbosity(RPMMESS_NORMAL);   /* XXX silly use by showrc */
-
-    poptResetContext(optCon);
-
-#ifdef IAM_RPMQV
-    qva->qva_queryFormat = _free(qva->qva_queryFormat);
-    memset(qva, 0, sizeof(*qva));
-    qva->qva_source = RPMQV_PACKAGE;
-    qva->qva_fflags = RPMFILE_ALL;
-    qva->qva_mode = ' ';
-    qva->qva_char = ' ';
-#endif
-
-#ifdef IAM_RPMBT
-    ba->buildRootOverride = _free(ba->buildRootOverride);
-    ba->targets = _free(ba->targets);
-    memset(ba, 0, sizeof(*ba));
-    ba->buildMode = ' ';
-    ba->buildChar = ' ';
-#endif
-
-#ifdef IAM_RPMDB
-    memset(da, 0, sizeof(*da));
-#endif
-
-#ifdef IAM_RPMK
-    ka->qva_queryFormat = _free(ka->qva_queryFormat);
-    memset(ka, 0, sizeof(*ka));
-    ka->qva_source = RPMQV_PACKAGE;
-    ka->qva_fflags = RPMFILE_ALL;
-    ka->qva_mode = ' ';
-    ka->qva_char = ' ';
-#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);
-    memset(ia, 0, sizeof(*ia));
-    ia->transFlags = RPMTRANS_FLAG_NONE;
-    ia->probFilter = RPMPROB_FILTER_NONE;
-    ia->installInterfaceFlags = INSTALL_NONE;
-    ia->eraseInterfaceFlags = UNINSTALL_NONE;
-#endif
-
     while ((arg = poptGetNextOpt(optCon)) > 0) {
        optArg = poptGetOptArg(optCon);
 
        switch (arg) {
            
-       case 'v':
-           rpmIncreaseVerbosity();
-           /*@switchbreak@*/ break;
-
 /* XXX options used in multiple rpm modes */
-#if defined(IAM_RPMQV) || defined(IAM_RPMK)
-       case POPT_NOMD5:
-#ifdef IAM_RPMQV
-           if (bigMode == MODE_VERIFY || qva->qva_mode == 'V')
-               qva->qva_flags |= VERIFY_MD5;
-           else
-#endif
-#ifdef IAM_RPMK
-           if (bigMode & MODES_K)
-               ka->qva_flags |= VERIFY_MD5;
-           else
-#endif
-#ifdef IAM_RPMEIU
-           if (bigMode & MODES_IE)
-               ia->transFlags |= RPMTRANS_FLAG_NOMD5;
-           else
-#endif
-               {};
-           /*@switchbreak@*/ break;
-#endif /* IAM_RPMQV || IAM_RPMK */
-
-#if defined(IAM_RPMQV) || defined(IAM_RPMEIU) || defined(IAM_RPMBT)
-       case POPT_NODEPS:
-#ifdef IAM_RPMQV
-           if (bigMode == MODE_VERIFY || qva->qva_mode == 'V')
-               qva->qva_flags |= VERIFY_DEPS;
-           else
-#endif
-#ifdef IAM_RPMEIU
-           if ((bigMode & MODES_IE) ||
-               (ia->installInterfaceFlags &
-           (INSTALL_UPGRADE|INSTALL_FRESHEN|INSTALL_INSTALL|INSTALL_ERASE)))
-               ia->noDeps = 1;
-           else
-#endif
-#ifdef IAM_RPMBT
-           if ((bigMode & MODES_BT) || ba->buildMode != ' ')
-               ba->noDeps = 1;
-           else
-#endif
-               /*@-ifempty@*/ ;
-           /*@switchbreak@*/ break;
-
-       case POPT_FORCE:
-#ifdef IAM_RPMEIU
-           if ((bigMode & MODES_IE) ||
-               (ia->installInterfaceFlags &
-           (INSTALL_UPGRADE|INSTALL_FRESHEN|INSTALL_INSTALL|INSTALL_ERASE)))
-               ia->probFilter |=
-                       ( RPMPROB_FILTER_REPLACEPKG
-                       | RPMPROB_FILTER_REPLACEOLDFILES
-                       | RPMPROB_FILTER_REPLACENEWFILES
-                       | RPMPROB_FILTER_OLDPACKAGE);
-           else
-#endif
-#ifdef IAM_RPMBT
-           if ((bigMode & MODES_BT) || ba->buildMode != ' ')
-               ba->force = 1;
-           else
-#endif
-               /*@-ifempty@*/ ;
-           /*@switchbreak@*/ break;
 
+#if defined(IAM_RPMQV) || defined(IAM_RPMEIU)
        case 'i':
 #ifdef IAM_RPMQV
            if (bigMode == MODE_QUERY || qva->qva_mode == 'q') {
@@ -569,49 +303,7 @@ int main(int argc, const char ** argv)
 #endif
                /*@-ifempty@*/ ;
            /*@switchbreak@*/ break;
-
-       case POPT_NOSCRIPTS:
-#ifdef IAM_RPMQV
-           if (bigMode == MODE_VERIFY || qva->qva_mode == 'V')
-               qva->qva_flags |= VERIFY_SCRIPT;
-           else
-#endif
-#ifdef IAM_RPMEIU
-           if ((bigMode & MODES_IE) ||
-               (ia->installInterfaceFlags &
-           (INSTALL_UPGRADE|INSTALL_FRESHEN|INSTALL_INSTALL|INSTALL_ERASE)))
-               ia->transFlags |= (_noTransScripts | _noTransTriggers);
-           else
-#endif
-               /*@-ifempty@*/ ;
-           /*@switchbreak@*/ break;
-
-#endif /* IAM_RPMQV || IAM_RPMEIU || IAM_RPMBT */
-
-       case GETOPT_DEFINEMACRO:
-           if (optArg) {
-               (void) rpmDefineMacro(NULL, optArg, RMIL_CMDLINE);
-/*@i@*/                (void) rpmDefineMacro(rpmCLIMacroContext, optArg,RMIL_CMDLINE);
-           }
-           noUsageMsg = 1;
-           /*@switchbreak@*/ break;
-
-       case GETOPT_EVALMACRO:
-           if (optArg) {
-               const char *val = rpmExpand(optArg, NULL);
-               fprintf(stdout, "%s\n", val);
-               val = _free(val);
-           }
-           noUsageMsg = 1;
-           /*@switchbreak@*/ break;
-
-#if defined(GETOPT_RCFILE)
-       case GETOPT_RCFILE:
-           fprintf(stderr, _("The --rcfile option has been eliminated.\n"));
-           fprintf(stderr, _("Use \"--macros <file:...>\" instead.\n"));
-           exit(EXIT_FAILURE);
-           /*@notreached@*/ break;
-#endif
+#endif /* IAM_RPMQV || IAM_RPMEIU */
 
        default:
            fprintf(stderr, _("Internal error in argument processing (%d) :-(\n"), arg);
@@ -619,11 +311,6 @@ int main(int argc, const char ** argv)
        }
     }
 
-    if (quiet)
-       rpmSetVerbosity(RPMMESS_QUIET);
-
-    if (showVersion) printVersion();
-
     if (arg < -1) {
        fprintf(stderr, "%s: %s\n", 
                poptBadOption(optCon, POPT_BADOPTION_NOALIAS), 
@@ -631,6 +318,8 @@ int main(int argc, const char ** argv)
        exit(EXIT_FAILURE);
     }
 
+    rpmcliConfigured();
+
 #ifdef IAM_RPMBT
     switch (ba->buildMode) {
     case 'b':  bigMode = MODE_BUILD;           break;
@@ -733,11 +422,6 @@ int main(int argc, const char ** argv)
   }
 #endif /* IAM_RPMK */
 
-    /* XXX TODO: never happens. */
-    if (gotDbpath && (bigMode & ~MODES_FOR_DBPATH))
-       argerror(_("--dbpath given for operation that does not use a "
-                       "database"));
-
 #if defined(IAM_RPMEIU)
     if (!( bigMode == MODE_INSTALL ) &&
 (ia->probFilter & (RPMPROB_FILTER_REPLACEPKG | RPMPROB_FILTER_REPLACEOLDFILES | RPMPROB_FILTER_REPLACENEWFILES | RPMPROB_FILTER_OLDPACKAGE)))
@@ -832,19 +516,19 @@ int main(int argc, const char ** argv)
                 "erasure, and building"));
 #endif /* IAM_RPMEIU */
 
-    if (rootdir && rootdir[1] && (bigMode & ~MODES_FOR_ROOT))
+    if (rpmcliRootDir && rpmcliRootDir[1] && (bigMode & ~MODES_FOR_ROOT))
        argerror(_("--root (-r) may only be specified during "
                 "installation, erasure, querying, and "
                 "database rebuilds"));
 
-    if (rootdir) {
-       switch (urlIsURL(rootdir)) {
+    if (rpmcliRootDir) {
+       switch (urlIsURL(rpmcliRootDir)) {
        default:
            if (bigMode & MODES_FOR_ROOT)
                break;
            /*@fallthrough@*/
        case URL_IS_UNKNOWN:
-           if (rootdir[0] != '/')
+           if (rpmcliRootDir[0] != '/')
                argerror(_("arguments to --root (-r) must begin with a /"));
            break;
        }
@@ -925,14 +609,14 @@ int main(int argc, const char ** argv)
     /*@=branchstate@*/
 #endif /* IAM_RPMBT || IAM_RPMK */
 
-    if (pipeOutput) {
+    if (rpmcliPipeOutput) {
        (void) pipe(p);
 
        if (!(pipeChild = fork())) {
            (void) close(p[1]);
            (void) dup2(p[0], STDIN_FILENO);
            (void) close(p[0]);
-           (void) execl("/bin/sh", "/bin/sh", "-c", pipeOutput, NULL);
+           (void) execl("/bin/sh", "/bin/sh", "-c", rpmcliPipeOutput, NULL);
            fprintf(stderr, _("exec failed\n"));
        }
 
@@ -942,7 +626,7 @@ int main(int argc, const char ** argv)
     }
        
     ts = rpmtsCreate();
-    (void) rpmtsSetRootDir(ts, rootdir);
+    (void) rpmtsSetRootDir(ts, rpmcliRootDir);
     switch (bigMode) {
 #ifdef IAM_RPMDB
     case MODE_INITDB:
@@ -985,9 +669,9 @@ int main(int argc, const char ** argv)
            ba->cookie = NULL;
            ec = rpmInstallSource(ts, pkg, &specFile, &ba->cookie);
            if (ec == 0) {
-               ba->rootdir = rootdir;
+               ba->rootdir = rpmcliRootDir;
                ba->passPhrase = passPhrase;
-               ec = build(ts, specFile, ba, rcfile);
+               ec = build(ts, specFile, ba, rpmcliRcfile);
            }
            ba->cookie = _free(ba->cookie);
            specFile = _free(specFile);
@@ -1042,14 +726,14 @@ int main(int argc, const char ** argv)
        }
 
        while ((pkg = poptGetArg(optCon))) {
-           ba->rootdir = rootdir;
+           ba->rootdir = rpmcliRootDir;
            ba->passPhrase = passPhrase;
            ba->cookie = NULL;
-           ec = build(ts, pkg, ba, rcfile);
+           ec = build(ts, pkg, ba, rpmcliRcfile);
            if (ec)
                /*@loopbreak@*/ break;
            rpmFreeMacros(NULL);
-           (void) rpmReadConfigFiles(rcfile, NULL);
+           (void) rpmReadConfigFiles(rpmcliRcfile, NULL);
        }
     }  break;
 #endif /* IAM_RPMBT */
@@ -1071,7 +755,6 @@ ia->probFilter |= RPMPROB_FILTER_OLDPACKAGE;
 
     case MODE_INSTALL:
 
-       /* RPMTRANS_FLAG_BUILD_PROBS */
        /* RPMTRANS_FLAG_KEEPOBSOLETE */
 
        if (!ia->incldocs) {
@@ -1187,7 +870,8 @@ ia->probFilter |= RPMPROB_FILTER_OLDPACKAGE;
     case MODE_ERASE:
 #endif
     case MODE_UNKNOWN:
-       if (!showVersion && !help && !noUsageMsg) printUsage();
+       if (poptPeekArg(optCon) != NULL || argc <= 1 || rpmIsVerbose())
+           printUsage(optCon, stdout, 0);
        break;
     }
 
index 637ca55..b84a98d 100644 (file)
@@ -513,10 +513,6 @@ static int vsflags = _RPMTS_VSF_VERIFY_LEGACY;
 static struct poptOption optionsTable[] = {
  { "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,
-       N_("don't verify package digest"), NULL },
- { "nosignature", '\0', POPT_BIT_SET,   &vsflags, _RPMTS_VSF_NOSIGNATURES,
-       N_("don't verify package signature"), NULL },
 
  { "nocache", '\0', POPT_ARG_VAL,   &noCache, -1,
        N_("don't update cache database, only print package paths"), NULL },
@@ -585,7 +581,15 @@ main(int argc, char *const argv[])
     }
 
     ts = rpmtsCreate();
+
+    if (rpmcliQueryFlags & VERIFY_DIGEST)
+       vsflags |= _RPMTS_VSF_NODIGESTS;
+    if (rpmcliQueryFlags & VERIFY_SIGNATURE)
+       vsflags |= _RPMTS_VSF_NOSIGNATURES;
+    if (rpmcliQueryFlags & VERIFY_HDRCHK)
+       vsflags |= _RPMTS_VSF_NOHDRCHK;
     (void) rpmtsSetVerifySigFlags(ts, vsflags);
+
     {   int_32 tid = (int_32) time(NULL);
        (void) rpmtsSetTid(ts, tid);
     }
index 529c454..601055a 100644 (file)
@@ -274,10 +274,6 @@ static struct poptOption optionsTable[] = {
        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,
-        N_("don't verify package digest"), NULL },
- { "nosignature", '\0', POPT_BIT_SET,  &vsflags, _RPMTS_VSF_NOSIGNATURES,
-        N_("don't verify package signature"), NULL },
 
  { "nochainsaw", '\0', POPT_ARGFLAG_DOC_HIDDEN, &noChainsaw, 0,
        NULL, NULL},
@@ -304,6 +300,12 @@ main(int argc, char *const argv[])
        exit(EXIT_FAILURE);
 
     ts = rpmtsCreate();
+    if (rpmcliQueryFlags & VERIFY_DIGEST)
+       vsflags |= _RPMTS_VSF_NODIGESTS;
+    if (rpmcliQueryFlags & VERIFY_SIGNATURE)
+       vsflags |= _RPMTS_VSF_NOSIGNATURES;
+    if (rpmcliQueryFlags & VERIFY_HDRCHK)
+       vsflags |= _RPMTS_VSF_NOHDRCHK;
     (void) rpmtsSetVerifySigFlags(ts, vsflags);
 
     ec = rpmGraph(ts, ia, poptGetArgs(optCon));