reload macros from cmd line when re-reading config files.
authorjbj <devnull@localhost>
Sun, 12 Dec 1999 21:14:05 +0000 (21:14 +0000)
committerjbj <devnull@localhost>
Sun, 12 Dec 1999 21:14:05 +0000 (21:14 +0000)
CVS patchset: 3479
CVS date: 1999/12/12 21:14:05

25 files changed:
CHANGES
build.c
build/files.c
build/spec.c
lib/macro.c
lib/rpmmacro.h
lib/rpmrc.c
lib/rpmurl.h
lib/url.c
po/cs.po
po/de.po
po/fi.po
po/fr.po
po/pl.po
po/pt_BR.po
po/rpm.pot
po/ru.po
po/sk.po
po/sr.po
po/sv.po
po/tr.po
rpm.c
rpm.spec
rpmio/macro.c
rpmio/rpmmacro.h

diff --git a/CHANGES b/CHANGES
index 5dc77d5..e8fb977 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -21,6 +21,7 @@
        - perform glob on remote ftp query args.
        - fix: ftpAbort must close the data channel to read abort status.
        - perform glob on remote ftp install args.
+       - fix: reload macros from cmd line when re-reading config files.
 
 3.0.2 -> 3.0.3
        - add --eval to find result of macro expansion.
diff --git a/build.c b/build.c
index 95f9cf1..63322e7 100644 (file)
--- a/build.c
+++ b/build.c
@@ -294,7 +294,7 @@ int build(const char *arg, struct rpmBuildArguments *ba, const char *passPhrase,
        printf(_("Building for target %s\n"), target);
 
        /* Read in configuration for target. */
-       freeMacros(NULL);       /* XXX macros from CLI are destroyed too */
+       rpmFreeMacros(NULL);
        rpmReadConfigFiles(rcfile, target);
        rc = buildForTarget(arg, ba, passPhrase, fromTarball, cookie,
                force, nodeps);
@@ -304,7 +304,7 @@ int build(const char *arg, struct rpmBuildArguments *ba, const char *passPhrase,
 
 exit:
     /* Restore original configuration. */
-    freeMacros(NULL);  /* XXX macros from CLI are destroyed too */
+    rpmFreeMacros(NULL);
     rpmReadConfigFiles(rcfile, NULL);
     return rc;
 }
index 4d26a0d..b31b54b 100644 (file)
@@ -1100,62 +1100,10 @@ fprintf(stderr, "*** PBF fileURL %s\n", fileURL);
     diskURL = rpmGenPath(fl->buildRootURL, NULL, fileURL);
 
     if (doGlob) {
+       const char ** argv = NULL;
+       int argc = 0;
        int i;
-#ifdef DYING
-       const char * diskRoot;
-       const char * globURL;
-       char * globRoot = NULL;
-       glob_t glob_result;
-       size_t maxb, nb;
-       int ut;
-       
-       glob_result.gl_pathc = 0;
-       glob_result.gl_pathv = NULL;
-       if (Glob(diskURL, 0, glob_error, &glob_result) ||
-           (glob_result.gl_pathc < 1)) {
-           rpmError(RPMERR_BADSPEC, _("File not found by glob: %s"), diskURL);
-           rc = 1;
-       }
 
-       /* XXX Prepend the diskURL leader for globs that have stripped it off */
-       maxb = 0;
-       for (i = 0; i < glob_result.gl_pathc; i++) {
-           if ((nb = strlen(&(glob_result.gl_pathv[i][0]))) > maxb)
-               maxb = nb;
-       }
-       
-       ut = urlPath(diskURL, &diskRoot);
-       nb = ((ut > URL_IS_DASH) ? (diskRoot - diskURL) : 0);
-       maxb += nb;
-       maxb += 1;
-       globURL = globRoot = alloca(maxb);
-
-       switch (ut) {
-       case URL_IS_HTTP:
-       case URL_IS_FTP:
-       case URL_IS_PATH:
-       case URL_IS_DASH:
-           strncpy(globRoot, diskURL, nb);
-           break;
-       case URL_IS_UNKNOWN:
-           break;
-       }
-       globRoot += nb;
-       *globRoot = '\0';
-if (_debug)
-fprintf(stderr, "*** GLOB maxb %d diskURL %d %*s globURL %p %s\n", maxb, nb, nb, diskURL, globURL, globURL);
-       
-       for (i = 0; rc == 0 && i < glob_result.gl_pathc; i++) {
-           const char * globFile = &(glob_result.gl_pathv[i][0]);
-           if (globRoot > globURL && globRoot[-1] == '/')
-               while (*globFile == '/') globFile++;
-           strcpy(globRoot, globFile);
-           rc = addFile(fl, globURL, NULL);
-       }
-       Globfree(&glob_result);
-#else
-       int argc = 0;
-       const char ** argv = NULL;
        rc = rpmGlob(diskURL, &argc, &argv);
        if (rc == 0) {
            for (i = 0; i < argc; i++) {
@@ -1164,7 +1112,6 @@ fprintf(stderr, "*** GLOB maxb %d diskURL %d %*s globURL %p %s\n", maxb, nb, nb,
            }
            xfree(argv);
        }
-#endif /* DYING */
     } else {
        rc = addFile(fl, diskURL, NULL);
     }
index 4a4a611..5462512 100644 (file)
@@ -4,7 +4,7 @@
 #include "buildio.h"
 
 extern char *specedit;
-extern MacroContext globalMacroContext;
+extern MacroContext rpmGlobalMacroContext;
 
 #define SKIPWHITE(_x)  {while(*(_x) && (isspace(*_x) || *(_x) == ',')) (_x)++;}
 #define SKIPNONWHITE(_x){while(*(_x) &&!(isspace(*_x) || *(_x) == ',')) (_x)++;}
@@ -446,7 +446,7 @@ Spec newSpec(void)
     spec->force = 0;
     spec->anyarch = 0;
 
-    spec->macros = &globalMacroContext;
+    spec->macros = &rpmGlobalMacroContext;
     
     return spec;
 }
index 4d965a7..41727b6 100644 (file)
@@ -31,7 +31,7 @@ static int _debug = 0;
 #define        urlPath(_xr, _r)        *(_r) = (_xr)
 
 typedef        FILE * FD_t;
-#define Fopen(_path, _fmode)   fopen(_path, "_r");
+#define Fopen(_path, _fmode)   fopen(_path, "r");
 #define        Ferror                  ferror
 #define Fstrerror(_fd)         strerror(errno)
 #define        Fread                   fread
@@ -47,7 +47,8 @@ typedef       FILE * FD_t;
 
 #include <rpmmacro.h>
 
-struct MacroContext globalMacroContext;
+struct MacroContext rpmGlobalMacroContext;
+struct MacroContext rpmCLIMacroContext;
 
 typedef struct MacroBuf {
        const char *s;          /* text to expand */
@@ -85,15 +86,12 @@ compareMacroName(const void *ap, const void *bp)
        MacroEntry *ame = *((MacroEntry **)ap);
        MacroEntry *bme = *((MacroEntry **)bp);
 
-       if (ame == NULL && bme == NULL) {
+       if (ame == NULL && bme == NULL)
                return 0;
-       }
-       if (ame == NULL) {
+       if (ame == NULL)
                return 1;
-       }
-       if (bme == NULL) {
+       if (bme == NULL)
                return -1;
-       }
        return strcmp(ame->name, bme->name);
 }
 
@@ -132,14 +130,14 @@ sortMacroTable(MacroContext *mc)
 }
 
 void
-dumpMacroTable(MacroContext * mc, FILE * fp)
+rpmDumpMacroTable(MacroContext * mc, FILE * fp)
 {
        int i;
        int nempty = 0;
        int nactive = 0;
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
        if (fp == NULL)
                fp = stderr;
     
@@ -171,7 +169,7 @@ findEntry(MacroContext *mc, const char *name, size_t namelen)
        char namebuf[1024];
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
        if (! mc->firstFree)
                return NULL;
 
@@ -1061,7 +1059,7 @@ expandMacro(MacroBuf *mb)
        }
 
        if (STREQ("dump", f, fn)) {
-               dumpMacroTable(mb->mc, NULL);
+               rpmDumpMacroTable(mb->mc, NULL);
                while (iseol(*se))
                        se++;
                s = se;
@@ -1201,7 +1199,7 @@ expandMacros(void *spec, MacroContext *mc, char *s, size_t slen)
        if (s == NULL || slen <= 0)
                return 0;
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        tbuf = alloca(slen + 1);
        memset(tbuf, 0, (slen + 1));
@@ -1233,7 +1231,7 @@ addMacro(MacroContext *mc, const char *n, const char *o, const char *b, int leve
        MacroEntry **mep;
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        /* If new name, expand macro table */
        if ((mep = findEntry(mc, n, 0)) == NULL) {
@@ -1256,7 +1254,7 @@ delMacro(MacroContext *mc, const char *n)
        MacroEntry **mep;
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
        /* If name exists, pop entry */
        if ((mep = findEntry(mc, n, 0)) != NULL) {
                popMacro(mep);
@@ -1272,20 +1270,40 @@ rpmDefineMacro(MacroContext *mc, const char *macro, int level)
        MacroBuf macrobuf, *mb = &macrobuf;
 
        /* XXX just enough to get by */
-       mb->mc = (mc ? mc : &globalMacroContext);
+       mb->mc = (mc ? mc : &rpmGlobalMacroContext);
        (void)doDefine(mb, macro, level, 0);
        return 0;
 }
 
+/* Load a macro context into rpmGlobalMacroContext */
 void
-initMacros(MacroContext *mc, const char *macrofiles)
+rpmLoadMacros(MacroContext * mc, int level)
+{
+       int i;
+
+       if (mc == NULL || mc == &rpmGlobalMacroContext)
+               return;
+
+       for (i = 0; i < mc->firstFree; i++) {
+               MacroEntry **mep, *me;
+               mep = &mc->macroTable[i];
+               me = *mep;
+
+               if (me == NULL)         /* XXX this should never happen */
+                       continue;
+               addMacro(NULL, me->name, me->opts, me->body, (level - 1));
+       }
+}
+
+void
+rpmInitMacros(MacroContext *mc, const char *macrofiles)
 {
        char *m, *mfile, *me;
 
        if (macrofiles == NULL)
                return;
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        for (mfile = m = xstrdup(macrofiles); *mfile; mfile = me) {
                FD_t fd;
@@ -1315,8 +1333,10 @@ initMacros(MacroContext *mc, const char *macrofiles)
                buf[sizeof(buf)-1] = '\0';
 
                fd = Fopen(buf, "r.fpio");
-               if (fd == NULL || Ferror(fd))
+               if (fd == NULL || Ferror(fd)) {
+                       if (fd) Fclose(fd);
                        continue;
+               }
 
                /* XXX Assume new fangled macro expansion */
                max_macro_depth = 16;
@@ -1336,15 +1356,18 @@ initMacros(MacroContext *mc, const char *macrofiles)
        }
        if (m)
                free(m);
+
+       /* Reload cmdline macros */
+       rpmLoadMacros(&rpmCLIMacroContext, RMIL_CMDLINE);
 }
 
 void
-freeMacros(MacroContext *mc)
+rpmFreeMacros(MacroContext *mc)
 {
        int i;
     
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        for (i = 0; i < mc->firstFree; i++) {
                MacroEntry *me;
@@ -1375,6 +1398,7 @@ int isCompressed(const char *file, int *compressed)
     if (fd == NULL || Ferror(fd)) {
        /* XXX Fstrerror */
        rpmError(RPMERR_BADSPEC, _("File %s: %s"), file, Fstrerror(fd));
+       if (fd) Fclose(fd);
        return 1;
     }
     nb = Fread(magic, sizeof(char), sizeof(magic), fd);
@@ -1651,7 +1675,7 @@ main(int argc, char *argv[])
            exit(1);
        }
 
-       initMacros(NULL, macrofiles);
+       rpmInitMacros(NULL, macrofiles);
        for ( ; optind < argc; optind++) {
            const char *val;
 
@@ -1661,6 +1685,7 @@ main(int argc, char *argv[])
                xfree(val);
            }
        }
+       rpmFreeMacros(NULL);
        return 0;
 }
 
@@ -1676,8 +1701,8 @@ main(int argc, char *argv[])
        FILE *fp;
        int x;
 
-       initMacros(NULL, macrofiles);
-       dumpMacroTable(NULL, NULL);
+       rpmInitMacros(NULL, macrofiles);
+       rpmDumpMacroTable(NULL, NULL);
 
        if ((fp = fopen(testfile, "r")) != NULL) {
                while(rdcl(buf, sizeof(buf), fp, 1)) {
@@ -1693,6 +1718,7 @@ main(int argc, char *argv[])
                fprintf(stderr, "%d->%s\n <-\n", x, buf);
                memset(buf, 0, sizeof(buf));
        }
+       rpmFreeMacros(NULL);
 
        return 0;
 }
index 9ad1e5d..5537c32 100644 (file)
@@ -33,7 +33,7 @@ typedef /*@abstract@*/ struct MacroContext {
 extern "C" {
 #endif
 
-void   dumpMacroTable  (MacroContext * mc, FILE * fp);
+void   rpmDumpMacroTable       (MacroContext * mc, FILE * fp);
 
 /* XXX this is used only in build/expression.c and will go away. */
 const char *getMacroBody (MacroContext *mc, const char *name);
@@ -45,8 +45,9 @@ void  addMacro        (MacroContext * mc, const char * n, const char * o,
 void   delMacro        (MacroContext * mc, const char * n);
 
 int    rpmDefineMacro  (MacroContext * mc, const char * macro, int level);
-void   initMacros      (MacroContext * mc, const char * macrofile);
-void   freeMacros      (MacroContext * mc);
+void   rpmLoadMacros   (MacroContext *mc, int level);
+void   rpmInitMacros   (MacroContext * mc, const char * macrofiles);
+void   rpmFreeMacros   (MacroContext * mc);
 
 #define COMPRESSED_NOT   0
 #define COMPRESSED_OTHER 1
index 85a8621..7814c60 100644 (file)
@@ -571,7 +571,7 @@ int rpmReadRC(const char * rcfiles)
     {  const char *macrofiles;
        if ((macrofiles = rpmGetVar(RPMVAR_MACROFILES)) != NULL) {
            macrofiles = strdup(macrofiles);
-           initMacros(NULL, macrofiles);
+           rpmInitMacros(NULL, macrofiles);
            xfree(macrofiles);
        }
     }
@@ -1232,7 +1232,7 @@ void rpmRebuildTargetVars(const char **buildtarget, const char ** canontarget)
 
 /*
  * XXX All this macro pokery/jiggery could be achieved by doing a delayed
- *     initMacros(NULL, PER-PLATFORM-MACRO-FILE-NAMES);
+ *     rpmInitMacros(NULL, PER-PLATFORM-MACRO-FILE-NAMES);
  */
     delMacro(NULL, "_target");
     addMacro(NULL, "_target", NULL, ct, RMIL_RPMRC);
@@ -1367,7 +1367,7 @@ int rpmShowRC(FILE *f)
            fprintf(f, "%-21s : %s\n", opt->name, s ? s : "(not set)");
     }
 
-    dumpMacroTable(NULL, f);
+    rpmDumpMacroTable(NULL, f);
 
     return 0;
 }
index 5508453..bb7c2d9 100644 (file)
@@ -22,7 +22,6 @@ typedef /*@abstract@*/ /*@refcounted@*/ struct urlinfo {
     const char * password;
     const char * host;
     const char * portstr;
-    const char * path;
     const char * proxyu;       /* FTP: proxy user */
     const char * proxyh;       /* FTP/HTTP: proxy host */
     int proxyp;                        /* FTP/HTTP: proxy port */
index c61bc54..474adf9 100644 (file)
--- a/lib/url.c
+++ b/lib/url.c
@@ -112,9 +112,6 @@ DBGREFS(0, (stderr, "--> url %p -- %d %s at %s:%u\n", u, u->nrefs, msg, file, li
     FREE(u->password);
     FREE(u->host);
     FREE(u->portstr);
-#ifdef DYING
-    FREE(u->path);
-#endif
     FREE(u->proxyu);
     FREE(u->proxyh);
 
@@ -195,18 +192,7 @@ static void urlFind(urlinfo *uret, int mustAsk)
        uCache[ucx] = urlLink(u, "uCache (miss)");
        u = urlFree(u, "urlSplit (urlFind miss)");
     } else {
-#ifdef DYING
-       /* XXX Swap original url and path into the cached structure */
-       const char *up = uCache[i]->path;
-       ucx = i;
-       uCache[ucx]->path = u->path;
-       u->path = up;
-       up = uCache[ucx]->url;
-       uCache[ucx]->url = u->url;
-       u->url = up;
-#else
        ucx = i;
-#endif
        u = urlFree(u, "urlSplit (urlFind hit)");
     }
 
@@ -383,10 +369,7 @@ int urlSplit(const char * url, urlinfo *uret)
            continue;
        }
        
-       /* Item was everything-but-path. Save path and continue parse on rest */
-#ifdef DYING
-       u->path = xstrdup((*se ? se : "/"));
-#endif
+       /* Item was everything-but-path. Continue parse on rest */
        *se = '\0';
        break;
     }
@@ -457,39 +440,16 @@ int urlGetFile(const char * url, const char * dest) {
     sfd = Fopen(url, "r.ufdio");
     if (sfd == NULL || Ferror(sfd)) {
        rpmMessage(RPMMESS_DEBUG, _("failed to open %s: %s\n"), url, Fstrerror(sfd));
-#ifdef DYING
-       if (sfd)
-           Fclose(sfd);
-       return FTPERR_UNKNOWN;
-#else
        rc = FTPERR_UNKNOWN;
        goto exit;
-#endif
     }
 
-#ifdef DYING
-  { urlinfo sfu;
-    sfu = ufdGetUrlinfo(sfd);
-    if (sfu != NULL && dest == NULL) {
-       const char *fileName = sfu->path;
-       if ((dest = strrchr(fileName, '/')) != NULL)
-           dest++;
-       else
-           dest = fileName;
-    }
-    if (sfu != NULL) {
-       (void) urlFree(sfu, "ufdGetUrlinfo (urlGetFile)");
-       sfu = NULL;
-    }
-  }
-#else
     if (dest == NULL) {
        if ((dest = strrchr(sfuPath, '/')) != NULL)
            dest++;
        else
            dest = sfuPath;
     }
-#endif
 
     tfd = Fopen(dest, "w.ufdio");
 if (_url_debug)
@@ -497,16 +457,8 @@ fprintf(stderr, "*** urlGetFile sfd %p %s tfd %p %s\n", sfd, url, tfd, dest);
     if (tfd == NULL || Ferror(tfd)) {
        /* XXX Fstrerror */
        rpmMessage(RPMMESS_DEBUG, _("failed to create %s: %s\n"), dest, Fstrerror(tfd));
-#ifdef DYING
-       if (tfd)
-           Fclose(tfd);
-       if (sfd)
-           Fclose(sfd);
-       return FTPERR_UNKNOWN;
-#else
        rc = FTPERR_UNKNOWN;
        goto exit;
-#endif
     }
 
     switch (urlType) {
index 3f2af93..18dc02f 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\n"
 "PO-Revision-Date: 1998-10-10 10:10+0200\n"
 "Last-Translator: Pavel Makovec <pavelm@terminal.cz>\n"
 "Language-Team: Czech <pavelm@terminal.cz>\n"
@@ -93,7 +93,7 @@ msgstr "neov
 msgid "override build root"
 msgstr "pou¾ít <adr> jako sestavovací koøen"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "po dokonèení odstranit sestavovací strom"
 
@@ -116,7 +116,7 @@ msgstr "po dokon
 msgid "remove specfile when done"
 msgstr "po dokonèení odstranit zdroje a soubor .spec"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "pøeskoèit pøímo na urèenou etapu (pouze pro c,i)"
 
@@ -172,79 +172,79 @@ msgstr "bal
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verze %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (c) 1998 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Tento program lze volnì roz¹iøovat podle podmínek GNU GPL."
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "pou¾ití: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <adr>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <adr>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <soubor>] [--ignorearch] [--dbpath <adr>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <adr>] [--ignoreos] [--nodeps] [--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <hostitel>] [--ftpport <port>] [--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <hostitel>] [--ftpport <port>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate starácesta=novácesta]"
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
@@ -252,374 +252,374 @@ msgstr ""
 "                        [--badreloc] [--notriggers] soubor1.rpm ... "
 "souborN.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] soubor1.rpm ... souborN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <adr>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <soubor>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <adr>] [--prefix <adr>] "
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <hostitel>] [--ftpport <port>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--changelog] [--dbpath <adr>] [cíle]"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] soubor1.rpm ... souborN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr "                        [--scripts] [--root <adr>] [--rcfile <soubor>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                        [--whatprovides] [--whatrequires] [--requires]"
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy "
 "<hostitel>]"
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 
-#: rpm.c:248
+#: rpm.c:250
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--changelog] [--dbpath <adr>] [cíle]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y} [-afpg] [--root <adr>] [--rcfile <soubor>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <adr>] [--nodeps] [--nofiles] [--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [cíle]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [cíl]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [cíl]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] soubor1.rpm ... souborN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <adr>] [--noscripts] [--rcfile <soubor>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <adr>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 "                        [--justdb] [--notriggers] rbalíèek1 ... balíèekN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile "
 "<soubor>]"
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <s>] [--buildos <os>]"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--buildarch <arch>] [--rmsource] soubor.spec"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "                        [--buildarch <arch>] [--rmsource] soubor.spec"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <soubor>] [-v] soubor.spec"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <soubor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <soubor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--resign} [--rcfile <soubor>] balíèek1 balíèek2 ... balíèekN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--addsign} [--rcfile <soubor>] balíèek1 balíèek2 ... balíèekN"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <soubor>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           balíèek1 ... balíèekN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <soubor>] [--dbpath <adr>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "pou¾ití:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "vytisknout tuto zprávu"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "vytisknout pou¾ívanou verzi rpm"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   v¹echny re¾imy podporují tyto argumenty:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <soubor>     "
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "pou¾ijte <soubor> místo /etc/rpmrc a $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "o nìco popisnìj¹í re¾im"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "velmi popisný re¾im (pro odlaïování)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "dotazovací re¾im"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr "      --root <adr>        "
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "pou¾ít <adr> jako adresáø vrcholové úrovnì"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <adr>      "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "pou¾ít <adr> jako adresáø pro databázi"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <qfmt>"
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "pou¾ít <qfmt> jako hlavièkový formát (implikuje -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   instalace, aktualizace a dotazování (s -p) umo¾òují pou¾ití URL-adres ftp"
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr "   místo názvù souborù vèetnì následujících voleb:"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <hostitel> "
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "název hostitele èi IP pro ftp-proxy"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "èíslo portu serveru ftp (nebo proxy)"
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "      --ftpproxy <hostitel> "
 
-#: rpm.c:331
+#: rpm.c:333
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "název hostitele èi IP pro ftp-proxy"
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: rpm.c:333
+#: rpm.c:335
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "èíslo portu serveru ftp (nebo proxy)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Volby pro specifikaci balíèku:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "dotazovat v¹echny balíèky"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr "        -f <soubor>+      "
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "dotazy na balíèek vlastnící <soubor>"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr "        -p <souborbalíku>+  "
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "dotazovat (nenainstalovaný) balíèek <souborbalíku>"
 
-#: rpm.c:341
+#: rpm.c:343
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <balík>"
 
-#: rpm.c:342
+#: rpm.c:344
 msgid "query packages triggered by <pkg>"
 msgstr "dotazy na balíèky aktivované <balíkem>"
 
-#: rpm.c:343
+#: rpm.c:345
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <sch>"
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr "dotazovat balíèky poskytující schopnost <sch>"
 
-#: rpm.c:345
+#: rpm.c:347
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <sch>"
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr "dotazovat balíèky vy¾adující schopnost <sch>"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Volby pro vybìr informací:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "zobrazit informace o balíèku"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "zobrazit protokol o zmìnách balíèku"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "zobrazit seznam souborù balíèkù"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "zobrazit stavy souborù (implikuje -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "uvést pouze dokumentaèní soubory (implikuje -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "uvést pouze konfiguraèní soubory (implikuje -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -627,35 +627,35 @@ msgstr ""
 "zobrazit v¹echny ovìøitelné údaje pro ka¾dý soubor (musí se pou¾ít s -l, -c "
 "nebo -d)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "uvést schopnosti poskytované balíèkem"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr "        --requires"
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "uvést závislosti balíèkù"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "vytisknout rùzné [de]instalaèní skripty"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr "zobrazit aktivaèní skripty obsa¾ené v balíèku"
 
-#: rpm.c:374
+#: rpm.c:376
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <pøíkaz>       "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "odeslat stdout do <pøíkazu>"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -663,19 +663,19 @@ msgstr ""
 "ovìøit instalaci balíèku pou¾itím stejných voleb pro specifikaci balíèku, "
 "jako pro -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "neovìøovat závislosti balíèkù"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "neovìøovat kontrolní souèty souborù md5"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "neovìøovat atributy souborù"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -683,7 +683,7 @@ msgstr ""
 "nastavit oprávnìní souborù dle údajù v databázi balíèkù pomocí stejných "
 "voleb pro specifikaci balíèku, jako pro -q"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -691,126 +691,126 @@ msgstr ""
 "nastavit vlastníka a skupinu souborù dle údajù v databázi balíèkù pomocí "
 "stejných voleb pro specifikaci balíèku, jako pro -q"
 
-#: rpm.c:397
+#: rpm.c:399
 msgid "    --install <packagefile>"
 msgstr "    --install <souborbalíku>"
 
-#: rpm.c:398
+#: rpm.c:400
 msgid "    -i <packagefile>      "
 msgstr "    -i <souborbalíku>     "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "nainstalovat balíèek"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "      --relocate <starácesta>=<novácesta>"
 
-#: rpm.c:401
+#: rpm.c:403
 #, fuzzy
 msgid "skip files in path <path>"
 msgstr "soubor %s je sdílen\n"
 
-#: rpm.c:402
+#: rpm.c:404
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <starácesta>=<novácesta>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "pøemístit soubory ze <starécesty> na <novoucestu>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "pøemístit soubory, i kdy¾ to balíèek nedovoluje"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <adr>      "
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "neinstalovat dokumentaci"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "zkratka pro --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "nainstalovat v¹echny soubory; i konfigurace, které by se jinak mohly vynechat"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "neovìøovat architekturu balíèku"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "neovìøovat operaèní systém balíèku"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "nainstalovat dokumentaci"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "inovovat databázi, ale neupravovat souborový systém"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "bìhem instalace balíèku zobrazit procenta"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "instalovat, i kdy¾ balíèek nahradí nainstalované soubory"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <souborbalíku>"
 
-#: rpm.c:450
+#: rpm.c:452
 msgid "    -U <packagefile>      "
 msgstr "    -U <souborbalíku>      "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "aktualizovat balíèek (stejné mo¾nosti jako --install, plus)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -818,15 +818,15 @@ msgstr ""
 "aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
 "automaticky)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr "    --erase <balíèek>"
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "smazat (deinstalovat) balíèek"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -834,90 +834,90 @@ msgstr ""
 "odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
 "specifikuje-li <balíèek> více balíèkù)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<etapa> <.spec>     "
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etapa> <klubkotar> "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "sestavit balíèek, kde <etapa> je jedna z:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "pøíprava (rozbalí zdroje a aplikuje záplaty)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrola seznamù (provede zbì¾né kontroly %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "kompilace (pøíprava a kompilace)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "instalace (pøíprava, kompilace a instalace)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "binární balíèek (pøíprava, kompilace, instalace, zabalení)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "balíèek bin/src (pøíprava, kompilace, instalace, zabalení)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "po dokonèení odstranit zdroje a soubor .spec"
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "generovat podpis PGP"
 
-#: rpm.c:498
+#: rpm.c:500
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <adr>   "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "pou¾ít <adr> jako sestavovací koøen"
 
-#: rpm.c:500
+#: rpm.c:502
 #, fuzzy
 msgid "      --target=<platform>+"
 msgstr "      --queryformat <qfmt>"
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "nespou¹tìt ¾ádné etapy"
 
-#: rpm.c:504
+#: rpm.c:506
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <s>     "
 
-#: rpm.c:505
+#: rpm.c:507
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "nastavit èasovou kontrolu na <s> sekund (0 ji deaktivuje)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <zdrojbalík>"
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -925,229 +925,229 @@ msgstr ""
 "instalovat zdrojový balíèek, sestavit binární balíèek a odstranit soubor "
 ".spec, zdroje, záplaty i ikony."
 
-#: rpm.c:509
+#: rpm.c:511
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <.spec>    "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "odstranit zdroje a soubor .spec"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <zdrojbal>"
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "jako --rebuild, ale nesestavovat ¾ádné balíèky"
 
-#: rpm.c:513
+#: rpm.c:515
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <balík>+     "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "podepsat balíèek (zahodit aktuální podpis)"
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <balík>+    "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "pøidat k balíèku podpis"
 
-#: rpm.c:518
+#: rpm.c:520
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <balík>+   "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "ovìøit podpis balíèku"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "vynechat pøípadné podpisy PGP"
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "vynechat pøípadné podpisy PGP"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "vynechat pøípadné podpisy MD5"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "uvést pøíznaky, které lze pou¾ít v dotazovacím formátu"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "zajistit, aby existovala platná databáze"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "pøestavit databázi z existující databáze"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "specifikovat lze jen jeden hlavní re¾im"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u a --uninstall se neschvalují a ji¾ je nelze pou¾ít.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Místo nich pou¾ijte -e nebo --erase.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--build (-b) vy¾aduje jednu z voleb a,b,i,c,p,l jako svùj výhradní argument"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) vy¾aduje jednu z voleb a,b,i,c,p,l jako svùj výhradní "
 "argument"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "v daném okam¾iku lze provést jeden typ dotazu èi ovìøení"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenty pro --dbpath musejí zaèínat znakem /"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "pøemístìní musejí obsahovat ="
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "pøemístìní musejí mít za znakem = znak /"
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, fuzzy, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Interní chyba pøi zpracování argumentù :-(\n"
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadána pro operaci, která databázi nepou¾ívá"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck lze pou¾ít jen pøi sestavování balíèkù"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neèekaný zdroj dotazu"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neèekaný zdroj dotazu"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "neèekaný zdroj dotazu"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vynucena mù¾e být jen instalace a aktualizace"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "soubory mohou být pøemístìny jen pøi instalaci balíèkù"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "pou¾ít lze jen jeden z --prefix nebo --relocate"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate se mù¾e pou¾ít jen pøi instalaci balíèkù"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix se mù¾e pou¾ít jen pøi instalaci nových balíèkù"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pro --prefix musejí zaèínat znakem /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "specifikovat lze jen jeden z --excludedocs a --includedocs"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches se mù¾e specifikovat jen pøi mazání balíèkù"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles se mù¾e specifikovat jen pøi instalaci balíèkù"
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb se mù¾e specifikovat jen pøi instalaci nebo mazání balíèkù"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1155,7 +1155,7 @@ msgstr ""
 "--noscripts se mù¾e specifikovat jen pøi instalaci, mazání nebo verifikaci "
 "balíèkù"
 
-#: rpm.c:1037
+#: rpm.c:1042
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1163,7 +1163,7 @@ msgstr ""
 "--notriggers se mù¾e specifikovat jen pøi instalaci, mazání nebo verifikaci "
 "balíèkù"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1172,7 +1172,7 @@ msgstr ""
 "--nodeps se mù¾e specifikovat jen pøi instalaci, mazání nebo verifikaci "
 "balíèkù"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1180,7 +1180,7 @@ msgstr ""
 "--test se mù¾e specifikovat jen pøi instalaci, mazání nebo sestavování "
 "balíèkù"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1188,127 +1188,127 @@ msgstr ""
 "--root (-r) se mù¾e urèit jen pøi instalaci, mazání, dotazování a opìtných "
 "sestavování databází"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pro --root (-r) musejí zaèínat znakem /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage lze pou¾ít jen pøi aktualizacích"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "volby ftp lze pou¾ít jen pøi dotazování, instalacích a aktualizacích balíèkù"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "volby ftp lze pou¾ít jen pøi dotazování, instalacích a aktualizacích balíèkù"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp lze pou¾ít jen pøi kontrolování podpisù"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp lze pou¾ít jen pøi kontrolování podpisù"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp se mù¾e pou¾ít jen pøi kontrolování podpisù a verifikaci balíèkù"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "nelze otevøít soubor %s: "
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Soubor nebyl na serveru nalezen"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Chybná heslová fráze\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Heslová fráze je dobrá.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign lze pou¾ít jen pøi sestavování balíèkù"
 
-#: rpm.c:1167
+#: rpm.c:1176
 msgid "exec failed\n"
 msgstr "nelze spustit\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "neèekané argumenty pro --querytags "
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "ke kontrole podpisu nezadány ¾ádné balíèky"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "k podpisu nezadány ¾ádné balíèky"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "k opìtnému sestavení nezadány ¾ádné soubory balíèkù"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "pro sestavení nezadány ¾ádné soubory .spec"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "pro sestavení nezadány ¾ádné soubory tar"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "pro deinstalaci nezadány ¾ádné balíèky"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "pro instalaci nezadány ¾ádné balíèky"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "k dotazu na v¹echny balíèky zadány argumenty navíc"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "k dotazu nezadány ¾ádné argumenty"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "k dotazu na v¹echny balíèky zadány argumenty navíc"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "pro verifikaci nezadány ¾ádné argumenty"
 
@@ -1516,58 +1516,53 @@ msgstr "soubor %s: %s\n"
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Soubor nebyl na serveru nalezen"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "chyba: nelze otevøít soubor %s\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "Nelze spustit pgp"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Nelze naèíst cílpodpisu"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "chyba pgp"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "%s nelze vytvoøit\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "%s nelze vytvoøit\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "soubor %s: %s\n"
@@ -2424,85 +2419,85 @@ msgstr "spou
 msgid "cannot read header at %d for lookup"
 msgstr "nelze èíst hlavièku u %d pro vyhledání"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, fuzzy, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznámý systém: %s\n"
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "balíèek %s nenalezen v %s"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "soubor %s: %s\n"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -2970,7 +2965,7 @@ msgstr "OK"
 msgid "opening database mode 0x%x in %s\n"
 msgstr "probíhá otevírání databázového re¾imu: 0%o\n"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nelze otevøít %s: %s"
@@ -3229,7 +3224,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr "Neznámá nebo neèekaná chyba FTP"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "probíhá pøihla¹ování na %s jako %s, h. %s\n"
@@ -3546,28 +3541,28 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Heslo pro %s@%s: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "chyba: ftpport musí být èíslo\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "chyba: ftpport musí být èíslo\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s nelze vytvoøit\n"
@@ -3601,6 +3596,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Chybné otevøení\n"
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Soubor nebyl na serveru nalezen"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "nelze otevøít soubor %s: "
 
index 1913f12..ea36c1f 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 2.5.2\n"
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\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"
@@ -128,7 +128,7 @@ msgstr "Paket-Betriebssystem nicht 
 msgid "override build root"
 msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "Erstellungsdateibaum nach Beendigung löschen"
 
@@ -151,7 +151,7 @@ msgstr "Quellen und spec-Dateien nach Beendigung l
 msgid "remove specfile when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "Direkt zur angegeben Stufe springen (nur für c und i)"
 
@@ -207,152 +207,152 @@ msgstr "Paket %s in %s nicht gefunden"
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
 # , c-format
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Version %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright © 1998 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Dies darf unter den Bedingungen der »GNU GPL« frei verteilt werden"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "Benutzung: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr ""
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <VERZ>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <VERZ>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <DATEI>] [--ignorearch] [--dbpath <VERZ>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <VERZ>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <RECHNER>] [--ftpport <PORT>] [--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <HOST>] [--ftpport <PORT>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate <ALTPFAD>=<NEUPFAD>]"
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--badreloc] [--notriggers] DATEI1.rpm ... DATEIn.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] DATEI1.rpm ... DATEIn.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <VERZ>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <DATEI>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <VERZ>]"
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <HOST>] [--ftpport <PORT>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--nomd5] [ZIELE]"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] DATEI1.rpm ... DATEIn.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr "                        [--scripts] [--root <VERZ>] [--rcfile <DATEI>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--ftpuseport] [--ftpproxy <HOST>] [--ftpport <PORT>]"
 
-#: rpm.c:247
+#: rpm.c:249
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -360,311 +360,311 @@ msgstr ""
 "                        [--dbpath <VERZ>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--nomd5] [ZIELE]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y} [-afpg] [--root <VERZ>] [--rcfile <DATEI>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <VERZ>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [ZIELE]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [ZIEL]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [ZIEL]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] DATEI1.rpm ... DATEIn.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e] [--root <VERZ>] [--noscripts] [--rcfile <DATEI>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <VERZ>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] [--notriggers] PAKET1 ... PAKETn"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<DATEI>]"
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <S>] [--buildos <BS>]"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [ZIELE]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "                        [--buildarch <ARCH>] [--rmsource] SPEC-DATEI"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <DATAEI>] [-v] SPEC-DATEI"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <DATEI>] [-v] SOURCE1.rpm ... SOURCEn.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <DATEI>] [-v] SOURCE1.rpm ... SOURCEn.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <DATEI>] PAKET1 PAKET2 ... PAKETn"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <DATEI>] PAKET1 PAKET2 ... PAKETn"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <DATEI>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           PAKET1 ... PAKETn"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <DATEI>] [--dbpath <VERZ>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "Benutzung:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "Gibt diesen Text aus"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "Die benutzte RPM-Version anzeigen"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   alle Modi unterstützen folgende Argumente:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "<DATEI> anstelle von /etc/rpmrc und $HOME/.rpmrc benutzen"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "Ausgabe etwas ausführlicher gestalten"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "extrem ausführliche Ausgabe (um Programm-Fehler zu finden)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "Anfrage-Modus"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "<VERZ> als Stammverzeichnis benutzen"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "<VERZ> als Datenbankverzeichnis benutzen"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "S als Kopfzeilen-Format benutzen (impliziert -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   Installieren, Aktualisieren und Anfragen (mit -p) erlauben es, ftp-URLs"
 
-#: rpm.c:325
+#: rpm.c:327
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr ""
 "   anstelle von Dateinamen zu benutzen. Außerdem die folgenden Optionen:\n"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "Hostname oder IP des ftp-Proxys"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "Portnummer des ftp-Servers (oder -Proxys)"
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:331
+#: rpm.c:333
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "Hostname oder IP des ftp-Proxys"
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:333
+#: rpm.c:335
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "Portnummer des ftp-Servers (oder -Proxys)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Optionen der Paketauswahl:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "Anfrage an alle Pakete"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "Anfrage nach (nicht installiertem) Paket <PAKET-DATEI>"
 
-#: rpm.c:341
+#: rpm.c:343
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: rpm.c:343
+#: rpm.c:345
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: rpm.c:344
+#: rpm.c:346
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "Anfrage nach Paketen, die die Fähigkeit <i> bereitstellen"
 
-#: rpm.c:345
+#: rpm.c:347
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: rpm.c:346
+#: rpm.c:348
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "Anfrage nach Paketen, die die Fähigkeit <i> benötigen"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Optionen der Informationsauswahl:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "Paketinformationen anzeigen"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "Changelog des Pakets anzeigen"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "Dateiliste des Pakets anzeigen"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "Status der Dateien anzeigen (impliziert -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "Nur Dokumentationsdateien auflisten (impliziert -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "Nur Konfigurationsdateien auflisten (impliziert -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -672,56 +672,56 @@ msgstr ""
 "Alle überprüfbaren Infos zu jeder Datei anzeigen (mit -l, -c oder -d "
 "benutzen!)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "Fähigkeiten des Pakets auflisten"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr ""
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "Paket-Abhängigkeiten ausgeben"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "Die diversen (De-)Installations-Skripte ausgeben"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "Standard-Ausgabe nach <BEFEHL> umleiten"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr ""
 "Ein Paket mit denselben Paketspezifikations-Optionen wie bei -q überprüfen"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "md5-Prüfsumme der Datei nicht überprüfen"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "Dateiattribute nicht überprüfen"
 
 # Was ist gemeint?
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -730,7 +730,7 @@ msgstr ""
 "Paketspezifikationsoptionen wie bei -q benutzt würden"
 
 # Was ist gemeint?
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -738,132 +738,132 @@ msgstr ""
 "Datei-Eigentümer und -Gruppe gemäß deren in der Paketdatenbank setzen, wie "
 "wenn dieselben Paketspezifikationsoptionen wie bei -q benutzt würden"
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "Paket installieren"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "Paket installieren"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "verschiebe Dateien, obglich das Paket es nicht erlaubt"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "Dokumentation nicht installieren"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "Abkürzung für --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "alle Dateien installieren, auch die config-Dateien, die sonst übergangen "
 "würden"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "Dokumentation installieren"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "Prozentangabe bei der Paketinstallation ausgeben"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "Paket aktualisieren (dieselben Optionen wie --install, außerdem)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -871,15 +871,15 @@ msgstr ""
 "Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
 "Aktualisierungen automatisch)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "Paket löschen (deinstallieren)"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -887,97 +887,97 @@ msgstr ""
 "Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
 "ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:476
+#: rpm.c:478
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "Paket erstellen, <STUFE> ist einer der Buchstaben:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "präparieren (Quellen entpacken und Patch-Dateien anwenden"
 
 # , c-format
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrollieren (oberflächliche Überprüfung der %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "kompilieren (präparieren und kompilieren)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "installieren (präparieren, kompilieren, installieren)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 "Binärpaket erstellen (präparieren, kompilieren, installieren und paketieren)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "Binär- und Quellpaket erstellen (präparieren, kompilieren, installieren und "
 "Paketieren"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "Quellen und spec-Dateien nach Beendigung löschen"
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP-Signatur generieren"
 
-#: rpm.c:498
+#: rpm.c:500
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "Benutze <VERZ> als Stammverzeichnis beim Erstellen"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "Keine Stufen ausführen"
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "Die Zeitüberprüfung auf S Sekunden setzen (mit 0 ausschalten)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -985,238 +985,238 @@ msgstr ""
 "Quellpaket installieren, Binarypaket erstellen und spec-Datei, Quellen, "
 "Patch-Dateien und Icons löschen"
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "lösche Quellen und spec-Datei"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "wie --rebuild aber kein Paket erstellen"
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "Ein Paket signieren (die aktuelle Signature wird verworfen)"
 
-#: rpm.c:515
+#: rpm.c:517
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "Signatur einem Paket hinzufügen"
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "Paketsignatur überprüfen"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "alle PGP-Signaturen überspringen"
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "alle PGP-Signaturen überspringen"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "alle MD5-Signaturen überspringen"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "Tags auflisten, die im Anfrageformat benutzt werden können"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "Sicherstellen, daß eine gültige Datenbank vorhanden ist"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "Es darf nur ein Hauptmodus angegeben werden"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u und --uninstall sind veraltet und funktionieren nicht mehr.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Benutzen Sie stattdessen -e oder --erase\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--build (-b) benötigt einen Buchstaben aus a,b,i,c,p,l als einziges Argument"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) benötigt einen Buchstaben aus a,b,i,c,p,l als einziges "
 "Argument"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 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"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "Argumente zu --dbpath müssen mit einem / beginnen"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "Verschiebungen müssen ein »=« beinhalten"
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "bei Verschiebungen muss ein »/« dem »=« folgen"
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath wurde für eine Operation angeben, die keine Datenbank benutzt"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--clean darf nur während der Paketerstellung benutzt werden"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "Unerwartete Quelle der Anfrage"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "nur die Installation und Aktualisierung darf erzwungen werden"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "Dateien können nur während der Paketinstallation verschoben werden"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nur eines der Argumente --prefix oder --relocate darf angegeben werden"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix darf nur bei der Installation neuer Pakete benutzt werden"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "Argumente zu --prefix müssen mit einem / beginnen"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "nur eines der Argumente --excludedocs und --includedocs darf angegeben werden"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches darf nur während der Paketdeinstallaiton angegeben werden"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles darf nur während der Paketinstallation angegeben werden"
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb kann nur während der Paketinstallation und -deinstallation "
 "angegeben werden"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1224,7 +1224,7 @@ msgstr ""
 "--noscripts darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: rpm.c:1037
+#: rpm.c:1042
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1232,7 +1232,7 @@ msgstr ""
 "--notriggers darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1241,7 +1241,7 @@ msgstr ""
 "--nodeps darf nur während der Paketinstallation, -deinstallation und "
 "-überprüfung angegeben werden"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1249,7 +1249,7 @@ msgstr ""
 "--test darf nur während der Paketinstallation, -deinstallation und "
 "-erstellung angegeben werden"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1257,22 +1257,22 @@ msgstr ""
 "--root (-r) darf nur während der Paketinstallation, -deinstallation, "
 "-anfrage und Datenbankneuerstellungen angegeben werden"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "Argumente zu --root (-r) müssen mit einem / beginnen"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage darf nur während Aktualisierungen benutzt werden"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ftp-Optionen können nur während Paketanfragen, -installationen und "
 "-aktualisierungen benutzt werden"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1280,107 +1280,107 @@ msgstr ""
 "ftp-Optionen können nur während Paketanfragen, -installationen und "
 "-aktualisierungen benutzt werden"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp darf nur während der Signatur-Überprüfung benutzt werden"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp darf nur während der Signatur- und Paketüberprüfung angegeben werden"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Die Passwortüberprüfung ist fehlgeschlagen\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Das Passwort ist richtig.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign darf nur während der Paketerstellung benutzt werden"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "Unerwartete Argumente zu --querytags "
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "Es wurden keine Pakete für die Signaturüberprüfung angegeben"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "Es wurden keine Pakete für die Signatur angeben"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "Es wurden keine Paketdateien für die Neuerstellung angegeben"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "Es wurde kein spec-Datei für die Erstellung angegeben"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "Es wurde keine tar-Datei für die Erstellung angegeben"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "Es wurden keine Argumente für die Anfrage angegeben"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "Zusätzliche Argumente für die Anfrage an alle Pakete angegeben"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "Es wurden keine Argumente für die Überprüfung angegeben"
 
@@ -1595,61 +1595,56 @@ msgstr "
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Datei auf dem Server nicht gefunden"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "Fehler: kann Datei %s nicht öffnen\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "Konnte pgp nicht durchführen"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Konnte Signatur-Ziel (»sigtarget«) nicht lesen"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "pgp fehlgeschlagen"
 
 # , c-format
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "anlegen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -2530,86 +2525,86 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3087,7 +3082,7 @@ msgid "opening database mode 0x%x in %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
 # , c-format
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -3357,7 +3352,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr "FTP Unbekannter oder nicht erwarteter Fehler"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3682,29 +3677,29 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Passworf für %s@%s: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
 # , c-format
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
@@ -3738,6 +3733,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Datei auf dem Server nicht gefunden"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "kann Datei %s nicht öffnen: "
 
index b3a0279..c546f80 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -99,7 +99,7 @@ msgstr "
 msgid "override build root"
 msgstr "käytä <hakem> käännöspuun juurena"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "poista käännöspuu, kun valmis"
 
@@ -122,7 +122,7 @@ msgstr "poista l
 msgid "remove specfile when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "siirry suoraan määriteltyyn vaiheeseen (vain c ja i yhteydessä)"
 
@@ -178,145 +178,145 @@ msgstr "paketti %s ei ole %s:ss
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versio %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Tätä ohjelmaa voi vapaasti levittää GNU GPL:n puittessa"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "käyttö: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr ""
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <hakem>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <hakem>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <tiedosto>] [--ignorearch] [--dbpath "
 "<hakem>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <hakem>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <kone>] [--ftpport <portti>] [--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <kone>] [--ftpport <portti>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate vanhapolku=uusipolku]"
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <hakem>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <tiedosto>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <hakem>] [--prefix "
 "<hakem>] "
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <kone>] [--ftpport <portti>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--nomd5] [kohteet]"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <hakem>] [--rcfile <tiedosto>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
@@ -324,7 +324,7 @@ msgstr ""
 "                        [--ftpuseport] [--ftpproxy <kone>] [--ftpport "
 "<portti>]"
 
-#: rpm.c:247
+#: rpm.c:249
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -332,318 +332,318 @@ msgstr ""
 "                        [--dbpath <hakem>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--nomd5] [kohteet]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <hakem>] [--rcfile <tiedosto>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <hakem>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [kohteet]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [kohde]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [kohde]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] tiedosto1.rpm ... tiedostoN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <hakem>] [--noscripts] [--rcfile <tiedosto>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <hakem>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] paketti1 ... pakettiN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<tiedosto>]"
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <s>] [--buildos <kj>]"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [kohteet]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr ""
 "                        [--buildarch <arkk>] [--rmsource] määrittelytiedosto"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <tiedosto>] [-v] määrittelytiedosto"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <tiedosto>] [-v] lähdekoodi1.rpm ... "
 "lähdekoodiN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <tiedosto>] [-v] lähdekoodi1.rpm ... "
 "lähdekoodiN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--resign} [--rcfile <tiedosto>] paketti1 paketti2 ... pakettiN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--addsign} [--rcfile <tiedosto>] paketti1 paketti2 ... pakettiN"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <tiedosto>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           paketti1 ... pakettiN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <tiedosto>] [--dbpath <hakem>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "käyttö:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "tulosta tämä viesti"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "tulosta käytetyn rpm:n versio"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   kaikki moodit tukevat seuraavia parametrejä"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "käytä <tiedosto> eikä /etc/rpmrc tai $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "tulosta enemmän viestejä"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "tulosta mahdollisimman paljon viestejä (vianetsintään)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "kyselymoodi"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "käytä <hakem> ylimpänä hakemistona"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "kaytä <hakem> tietokannan hakemistona"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "käytä s headerin formaatina (josta seuraa -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   asennuksessa, päivityksessä ja kyselyssä (-p:n kanssa)  ftp URL:ja "
 "voidaan käyttää"
 
-#: rpm.c:325
+#: rpm.c:327
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   tiedostoniminä, kuten myös seuraavia parametrejä:\n"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "koneen nimi tai IP tai ftp-proxy"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "ftp-palvelijan (tai proxyn) porttinumero"
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:331
+#: rpm.c:333
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "koneen nimi tai IP tai ftp-proxy"
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:333
+#: rpm.c:335
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "ftp-palvelijan (tai proxyn) porttinumero"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Paketin määrittelyparametrit:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "kysele kaikki paketit"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "kysele(asentamatonta) pakettia <pakettitiedosto>"
 
-#: rpm.c:341
+#: rpm.c:343
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: rpm.c:343
+#: rpm.c:345
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: rpm.c:344
+#: rpm.c:346
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "kysele paketteja, jotka tarjoavat <i> ominaisuuden"
 
-#: rpm.c:345
+#: rpm.c:347
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: rpm.c:346
+#: rpm.c:348
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "kysele paketteja, jotka vaativat <i> ominaisuutta"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Tietojen valintaparametrit:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "näytä paketin tiedot"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "näytä paketin muutosloki"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "näytä paketin tiedostolistaus"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "näytä tiedostojen tilat (josta seuraa -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "listaa vain dokumettitiedostot (josta seuraa -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "listaa vain konfigurointiedostot (josta seuraa -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -651,36 +651,36 @@ msgstr ""
 "näytä kaikki varmistettavissa oleva tieto kustakin tiedostosta (pitää "
 "käyttää -l, -c, tai -d kanssa)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "luettele paketin tarjoamat ominaisuudet"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr ""
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "listaa paketin riippuvuudet"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "tulosta erinäiset asennus/poisto-skriptit"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "lähetä vakiotuloste <komento>:lle"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -688,19 +688,19 @@ msgstr ""
 "tarkista paketin asennus käyttäen samoja paketin määrittelyparametrejä kuin "
 "-q "
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "älä tarkista tiedostojen md5-tarkistussummia"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "älä tarkista tiedostojen ominaisuuksia"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -708,7 +708,7 @@ msgstr ""
 "aseta tiedostojen oikeudet niiksi, jotka ne ovat pakettien tietokannassa "
 "käyttäen samoja pakettien määrittelyparametrejä kuin -q"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -716,129 +716,129 @@ msgstr ""
 "aseta tiedostojen omistaja ja ryhmä niiksi, jotka ne ovat pakettien "
 "tietokannassa käyttäen samoja pakettien määrittelyparametrejä kuin -q"
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "asenna paketti"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "asenna paketti"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "siirrä tiedostot toiseen hakemistoon vaikka paketti ei sitä sallisi"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "älä asenna dokumentointia"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "lyhenne parametreille --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "asenna dokumentaatio"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "älä suorita asennusskriptejä"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "tulosta asennuksen eteneminen prosentteina"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "asenna uudelleen, jos paketti on jo asennettu"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "älä asenna, mutta kerro onnistuisiko se"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "päivitä paketti (samat parametrit kuin --install, plus)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -846,15 +846,15 @@ msgstr ""
 "päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
 "automaattisesti)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "poista paketti"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -862,93 +862,93 @@ msgstr ""
 "poista kaikki paketit, joiden nimeä vastaa  <paketti> (tavallisesti, jos  "
 "<paketti> määrittää useita paketteja, tulee virhe)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:476
+#: rpm.c:478
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "tee paketti, jossa <vaihe> on jokin:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "valmistele (pura lähdekoodi ja tee korjaukset)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "listatarkistus (tee joitakin tarkistuksia %tiedostoihin)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "käännä (valmistele ja käännä)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "asenna (valmistele, käännä ja asenna)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "binääripaketti (valmistele, käännä, asenna, paketoi)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src-paketti (valmistele, käännä, asenna, paketoi)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "poista lähdekoodit ja määrittelytiedosto, kun valmis"
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "generoi PGP-allekirjoitus"
 
-#: rpm.c:498
+#: rpm.c:500
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "käytä <hakem> käännöspuun juurena"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "älä suorita mitään vaiheita"
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "aseta aikatarkistus S sekunniksi (0 ohittaa)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -956,232 +956,232 @@ msgstr ""
 "asenna lähdekoodipaketti, käännä binääripaketti ja poista "
 "määrittelytiedosto, lähdekoodi, korjaukset ja kuvakkeet"
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "poista lähdekoodi ja määrittelytiedosto"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "kuten --rebuild, mutta ei käännä paketteja"
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "allekirjoita paketti (hylkää nykyinen allekirjoitus)"
 
-#: rpm.c:515
+#: rpm.c:517
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "lisää allekirjoitus pakettiin"
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<vaihe> <määrittely> "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "tarkista paketin allekirjoitus"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "ohita PGP-allekirjoitukset"
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "ohita PGP-allekirjoitukset"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "ohita MD5-allekirjoitukset"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "luettele nimiöt, joita voidaan käyttää kyselyn formaatissa"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "tarkista, että kunnollinen tietokanta löytyy"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "vain yksi päämoodi voidaan määritellä"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ja --uninstall ovat vanhentuneet eivätkä enää toimi.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Käytä sen sijaan -e tai --erase .\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) vaatii yhden joukosta a,b,i,c,p,l ainoana parametrinään"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) vaatii yhden joukosta a,b,i,c,p,l ainoana parametrinään"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "yhden tyyppinen kysely/tarkistus voidaan suorittaa kerralla"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "--dbpath:n parametrien pitää alkaa /-merkillä"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "siirroissa pitää olla =-merkki"
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "siirroissa pitää olla / =-merkin jälkeen"
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath parametri annettu toiminnolle, joka ei käytä tietokantaa"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck parametriä voidaan käyttää vain paketteja koottaessa"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "odottamaton kyselyn lähde"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "vain asennus tai päivitys voidaan pakottaa"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "tiedostoja voidaan siirtää toiselle polulle vain asennettaessa"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "vain toinen --prefix tai --relocate voidaan antaa"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix: voidaan käyttää vain uusia paketteja asennettaessa"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix parametrien pitää alkaa /-merkillä"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h): voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "vain toinen --excludedocs tai --includedocs voidaan antaa"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches: voidaan käyttää vain paketteja poistettaessa"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles: voidaan käyttää vain paketteja asennettaessa"
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--justdb: voidaan käyttää vain paketteja asennettaessa tai poistettaessa"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1189,7 +1189,7 @@ msgstr ""
 "--noscripts: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpm.c:1037
+#: rpm.c:1042
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1198,7 +1198,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1207,7 +1207,7 @@ msgstr ""
 "--nodeps: voidaan käyttää vain paketteja asennettaessa, poistettaessa tai "
 "tarkistettaessa"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1215,7 +1215,7 @@ msgstr ""
 "--test: voidaan käyttää vain paketteja asennettaessa, poistettaessa ja "
 "käännettäessä"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1223,22 +1223,22 @@ msgstr ""
 "--root (-r): voidaan käyttää vain paketteja asennettaessa, poistettaessa, "
 "kyseltäessä ja tietokannan uudelleenluonnissa"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "parametrit --root (-r):lle alettava /-merkillä"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage: voidaan käyttää vain paketteja päivitettäessä"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ftp-parametrejä voidaan käyttää vain paketteja kysellessä, asennettaessa ja "
 "päivitettäessä"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1246,16 +1246,16 @@ msgstr ""
 "ftp-parametrejä voidaan käyttää vain paketteja kysellessä, asennettaessa ja "
 "päivitettäessä"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
@@ -1263,91 +1263,91 @@ msgstr ""
 "--nopgp: voidaan käyttää vain allekirjoitusta tarkistettaessa ja paketteja "
 "todennettaessa"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign: voidaan käyttää vain paketteja käännettäessä"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags: odottamattomia parametrejä"
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "allekirjoituksen tarkistukselle ei määritelty paketteja"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "allekirjoitukselle ei määritelty paketteja"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "uudelleenkäännolle ei määritelty paketteja"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "käännökselle ei annettu määrittelytiedostoja"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "käännökselle ei määritelty tar-tiedostoja"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "poistolle ei määritelty paketteja"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "kyselylle ei annettu parametrejä"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "pakettien kyselylle annettiin ylimääräisiä parametrejä"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "tarkistukselle ei annettu parametrejä"
 
@@ -1554,58 +1554,53 @@ msgstr "en voinut avata %s: %s"
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Tiedostoa ei löytynyt palvelimelta"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "virhe: tiedostoa %s ei voi avata\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "En voinut ajaa pgp:tä"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "pgp epäonnistui"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "%s:n luonti epäonnistui\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "en voinut avata %s: %s"
@@ -2461,85 +2456,85 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3008,7 +3003,7 @@ msgstr ""
 msgid "opening database mode 0x%x in %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "en voinut avata %s: %s"
@@ -3272,7 +3267,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr "FTP:n tuntematon tai odottamaton virhe"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3593,28 +3588,28 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "%s@%s:n salasana: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s:n luonti epäonnistui\n"
@@ -3648,6 +3643,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Tiedostoa ei löytynyt palvelimelta"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "en voinut avata tiedostoa %s: "
 
index 81ac2ba..e8c0e64 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,5 +1,5 @@
 msgid ""
-msgstr "POT-Creation-Date: 1999-12-12 11:59-0500\n"
+msgstr "POT-Creation-Date: 1999-12-12 15:51-0500\n"
 
 #: build.c:25 lib/rpminstall.c:248 lib/rpminstall.c:422
 #, c-format
@@ -78,7 +78,7 @@ msgstr ""
 msgid "override build root"
 msgstr ""
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 #, fuzzy
 msgid "remove build tree when done"
 msgstr "      --clean           - efface l'arborescence après construction"
@@ -101,7 +101,7 @@ msgstr "      --clean           - efface l'arborescence apr
 msgid "remove specfile when done"
 msgstr "      --clean           - efface l'arborescence après construction"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 #, fuzzy
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
@@ -159,190 +159,190 @@ msgstr "aucun package n'a 
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Peut être redistribué librement selon les termes de la GNU GPL"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr ""
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr ""
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:223
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                          qui matchent <pkg>"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "        -l                - affiche la liste des packages"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:233
+#: rpm.c:235
 #, fuzzy
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "        -i                - affiche les informations relatives à un package"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 
-#: rpm.c:236
+#: rpm.c:238
 #, fuzzy
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                          qui matchent <pkg>"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "        -l                - affiche la liste des packages"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 
-#: rpm.c:251
+#: rpm.c:253
 #, fuzzy
 msgid "                        [--nomd5] [targets]"
 msgstr "    -q                  - mode interrogation"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr ""
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr ""
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "        -l                - affiche la liste des packages"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:256
+#: rpm.c:258
 #, fuzzy
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: rpm.c:257
+#: rpm.c:259
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
@@ -350,468 +350,468 @@ msgstr ""
 "                        - installe le package source, construit le package "
 "binaire,"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                          qui matchent <pkg>"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr ""
 "        -i                - affiche les informations relatives à un package"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "        -a                - interroge l'ensemble des packages"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: rpm.c:267
+#: rpm.c:269
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:268
+#: rpm.c:270
 #, fuzzy
 msgid "                           package1 ... packageN"
 msgstr "                          qui matchent <pkg>"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr ""
 
-#: rpm.c:306
+#: rpm.c:308
 #, fuzzy
 msgid "print this message"
 msgstr "   --help\t\t- affiche ce message"
 
-#: rpm.c:308
+#: rpm.c:310
 #, fuzzy
 msgid "print the version of rpm being used"
 msgstr "   --version\t\t- affiche la version de rpm utilisée"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr ""
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr ""
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr ""
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr ""
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr ""
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 #, fuzzy
 msgid "use <dir> as the top level directory"
 msgstr "      --root <dir>\t- utilise <dir> comme répertoire racine"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr ""
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr ""
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr ""
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr ""
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr ""
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr ""
 
-#: rpm.c:330
+#: rpm.c:332
 msgid "      --httpproxy <host>   "
 msgstr ""
 
-#: rpm.c:331
+#: rpm.c:333
 msgid "hostname or IP of http proxy"
 msgstr ""
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:333
+#: rpm.c:335
 msgid "port number of http server (or proxy)"
 msgstr ""
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Options de spécification de package:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr ""
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 #, fuzzy
 msgid "query package owning <file>"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: rpm.c:339
+#: rpm.c:341
 #, fuzzy
 msgid "        -p <packagefile>+ "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpm.c:340
+#: rpm.c:342
 #, fuzzy
 msgid "query (uninstalled) package <packagefile>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: rpm.c:341
+#: rpm.c:343
 msgid "        --triggeredby <pkg>"
 msgstr ""
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: rpm.c:343
+#: rpm.c:345
 msgid "        --whatprovides <cap>"
 msgstr ""
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr ""
 
-#: rpm.c:345
+#: rpm.c:347
 msgid "        --whatrequires <cap>"
 msgstr ""
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr ""
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Options de sélection d'information:"
 
-#: rpm.c:349
+#: rpm.c:351
 #, fuzzy
 msgid "display package information"
 msgstr ""
 "        -i                - affiche les informations relatives à un package"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr ""
 
-#: rpm.c:353
+#: rpm.c:355
 #, fuzzy
 msgid "display package file list"
 msgstr "        -l                - affiche la liste des packages"
 
-#: rpm.c:355
+#: rpm.c:357
 #, fuzzy
 msgid "show file states (implies -l)"
 msgstr "        -s                - montre l'état des fichiers (implique -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 #, fuzzy
 msgid "list only documentation files (implies -l)"
 msgstr ""
 "        -d                - donne uniquement la liste des fichiers de "
 "documentation (implique -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 #, fuzzy
 msgid "list only configuration files (implies -l)"
 msgstr ""
 "        -c                - donne uniquement la liste des fichiers de "
 "configuration (implique -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr ""
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr ""
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr ""
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr ""
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpm.c:377
+#: rpm.c:379
 #, fuzzy
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "\t\t\t  mêmes options de spécification de package qu'avec -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non installé) <packagefile>"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr ""
 
-#: rpm.c:400
+#: rpm.c:402
 msgid "      --excludepath <path>"
 msgstr ""
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:413
+#: rpm.c:415
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - affiche des '#' pendant l'installation du package "
 "(utile avec -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr ""
 "      --percent         - affiche des '%' pendant l'installation du package"
 
-#: rpm.c:441
+#: rpm.c:443
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installe même si le package remplace des fichiers "
 "déjà présents"
 
-#: rpm.c:443
+#: rpm.c:445
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr "      --replacepkgs      - réinstalle si le package est déjà présent"
 
-#: rpm.c:447
+#: rpm.c:449
 #, 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"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: rpm.c:451
+#: rpm.c:453
 #, fuzzy
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 "    -U <packagefile>\t- mise à jour du package (mêmes options que --install, "
 "plus)"
 
-#: rpm.c:453
+#: rpm.c:455
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -820,113 +820,113 @@ msgstr ""
 "      --oldpackage      - mise à jour par une ancienne version du package "
 "(--force"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr ""
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr ""
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:477
+#: rpm.c:479
 #, fuzzy
 msgid "build package, where <stage> is one of:"
 msgstr "    -b<stage> <spec>    - construit le package, <stage> peut valoir:"
 
-#: rpm.c:479
+#: rpm.c:481
 #, fuzzy
 msgid "prep (unpack sources and apply patches)"
 msgstr "\t\t\t  p - prépare (extrait le source et applique les patches)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, fuzzy, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "\t\t\t  l - liste vérif (effectue quelques vérifications sur %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 #, fuzzy
 msgid "compile (prep and compile)"
 msgstr "\t\t\t  c - compile (prépare et compile)"
 
-#: rpm.c:485
+#: rpm.c:487
 #, fuzzy
 msgid "install (prep, compile, install)"
 msgstr "\t\t\t  i - installe (prépare, compile, installe)"
 
-#: rpm.c:487
+#: rpm.c:489
 #, fuzzy
 msgid "binary package (prep, compile, install, package)"
 msgstr "\t\t\t  b - package binaire (prépare, compile, installe, package)"
 
-#: rpm.c:489
+#: rpm.c:491
 #, fuzzy
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "\t\t\t  a - package bin/src (prépare, compile, installe, package)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr ""
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "      --sign            - genère une signature PGP"
 
-#: rpm.c:498
+#: rpm.c:500
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr ""
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr ""
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr ""
 "      --time-check <s>  - positionne l'intervalle de vérification à S "
 "secondes (0 le désactive)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 #, fuzzy
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
@@ -935,260 +935,260 @@ msgstr ""
 "                          et efface le fichier spec, les sources, les "
 "patches, et les icones."
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr ""
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr ""
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr ""
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pkg>+  - vérifie la signature PGP"
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "      --sign            - genère une signature PGP"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr ""
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr ""
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: rpm.c:701
+#: rpm.c:703
 #, fuzzy
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u et --uninstall sont obsolètes et seront bientôt supprimés.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Utilisez de préférence -e ou --erase.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) requiert comme seul argument l'un parmi a,b,i,c,p,l"
 
-#: rpm.c:723
+#: rpm.c:725
 #, fuzzy
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) requiert comme seul argument l'un parmi a,b,i,c,p,l"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "un seul type de requête/vérification peut être effectué à la fois"
 
-#: rpm.c:832
+#: rpm.c:834
 #, fuzzy
 msgid "arguments to --dbpath must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:869
+#: rpm.c:874
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpm.c:947
+#: rpm.c:952
 #, fuzzy
 msgid "--timecheck may only be used during package builds"
 msgstr "--clean ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "source de requête inattendue"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "source de requête inattendue"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "source de requête inattendue"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "seules l'installation et la mise à jour peuvent être forcées"
 
-#: rpm.c:965
+#: rpm.c:970
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:968
+#: rpm.c:973
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:974
+#: rpm.c:979
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:977
+#: rpm.c:982
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:996
+#: rpm.c:1001
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1000
+#: rpm.c:1005
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1004
+#: rpm.c:1009
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "un seul mode majeur peut être spécifié"
 
-#: rpm.c:1008
+#: rpm.c:1013
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1012
+#: rpm.c:1017
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 "--percent ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1020
+#: rpm.c:1025
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--replacepkgs ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1024
+#: rpm.c:1029
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 "--replacefiles ne peut être spécifié que lors de l'installation d'un package"
 
-#: rpm.c:1028
+#: rpm.c:1033
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:1033
+#: rpm.c:1038
 #, fuzzy
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
@@ -1197,7 +1197,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:1037
+#: rpm.c:1042
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1206,7 +1206,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1215,7 +1215,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:1045
+#: rpm.c:1050
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
@@ -1224,7 +1224,7 @@ msgstr ""
 "--test ne peut être spécifié que lors de l'installation ou désinstallation "
 "d'un package"
 
-#: rpm.c:1049
+#: rpm.c:1054
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -1233,130 +1233,130 @@ msgstr ""
 "--root (-r) ne peut être spécifié que lors de l'installation, de la "
 "désinstallation ou de l'interrogation d'un package"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage ne peut être spécifié que lors de mises à jour"
 
-#: rpm.c:1072
+#: rpm.c:1077
 #, fuzzy
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1082
+#: rpm.c:1087
 #, fuzzy
 msgid "--nopgp may only be used during signature checking"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "La vérification du mot de passe a échoué\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Mot de passe correct.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign ne peut être spécifié que lors de la construction d'un package"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "La construction a échoué.\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "aucun package n'a été spécifié pour la vérification de signature"
 
-#: rpm.c:1208
+#: rpm.c:1217
 #, fuzzy
 msgid "no packages given for signing"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "aucun package n'a été spécifié pour la reconstruction"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "aucun package n'a été spécifié pour la construction"
 
-#: rpm.c:1285
+#: rpm.c:1294
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "aucun package n'a été spécifié pour la construction"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: rpm.c:1374
+#: rpm.c:1383
 #, fuzzy
 msgid "extra arguments given for query of all packages"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "aucun argument n'a été fourni pour la requête"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "aucun argument n'a été fourni pour la vérification"
 
@@ -1557,58 +1557,53 @@ msgstr ""
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "aucun package n'a été spécifié pour la désinstallation"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "La construction a échoué.\n"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -2462,85 +2457,85 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3010,7 +3005,7 @@ msgstr ""
 msgid "opening database mode 0x%x in %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3264,7 +3259,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3579,27 +3574,27 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -3631,6 +3626,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "aucun package n'a été spécifié pour la désinstallation"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "impossible d'ouvrir: %s\n"
 
index d2e1d7f..67d5c93 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm-3.0.2\n"
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\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"
@@ -91,7 +91,7 @@ msgstr "wymu
 msgid "override build root"
 msgstr "wymu¶ build root"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "usuñ budowane drzewo po skoñczeniu"
 
@@ -111,7 +111,7 @@ msgstr "usu
 msgid "remove specfile when done"
 msgstr "usuñ speca po zakoñczeniu"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "przejd¼ od razu do podanego etapu (tylko dla c,i)"
 
@@ -167,500 +167,500 @@ msgstr "nie znaleziono pakietu w bazie danych"
 msgid "no copyright!\n"
 msgstr "brak praw autorskich!\n"
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM wersja %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 #, fuzzy
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Program mo¿e byæ swobodnie rozpowszechniany na warunkach licencji GNU"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "U¿ycie: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <katalog>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <katalog>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <plik>] [--ignorearch] [--dbpath <katalog>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <katalog>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--httpproxy <host>] [--httpport <port>] "
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 "                        [--noorder] [--relocate stara-¶cie¿ka=nowa-¶cie¿ka]"
 
-#: rpm.c:230
+#: rpm.c:232
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--badreloc] [--notriggers] [--excludepath <¶cie¿ka>]"
 
-#: rpm.c:231
+#: rpm.c:233
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--ignoresize] plik1.rpm ... plikN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                        [--oldpackage] [--root <katalog>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <plik>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <katalog>] [--prefix "
 "<katalog>] "
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <port>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: rpm.c:240
+#: rpm.c:242
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                        [--badreloc] [--excludepath <¶cie¿ka>] [--ignoresize]"
 
-#: rpm.c:241
+#: rpm.c:243
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        plik1.rpm ... plikN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <katalog>] [--rcfile <plik>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                        [--whatprovides] [--whatrequires] [--requires]"
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 
-#: rpm.c:248
+#: rpm.c:250
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--changelog] [--dbpath <katalog>] [cele]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <katalog>] [--rcfile <plik>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <katalog>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [cele]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [cel]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [cel]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        plik1.rpm ... plikN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <katalog>] [--noscripts] [--rcfile <plik>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <katalog>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] [--notriggers] pakiet1 ... pakietN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile <plik>]"
 
-#: rpm.c:259
+#: rpm.c:261
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 
-#: rpm.c:260
+#: rpm.c:262
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--target=platforma1[,platforma2...]]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "                        [--rmsource] plik_spec"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <plik>] [-v] plik_spec"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <plik>] [-v] ¼ród³owy1.rpm ... ¼ród³owyN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <plik>] [-v] ¼ród³owy1.rpm ... "
 "¼ród³owyN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <plik>] pakiet1 pakiet2 ... pakietN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <plik>] pakiet1 pakiet2 ... pakietN"
 
-#: rpm.c:267
+#: rpm.c:269
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <plik>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           pakiet1 ... pakietN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <plik>] [--dbpath <katalog>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "u¿ycie:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "wy¶wietl ten tekst"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "wy¶wietl wersjê u¿ywanego rpm-a"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   wszystkie tryby pracy pozwalaj± u¿yæ nastêpuj±cych argumentów:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <plik>     "
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "u¿yj <plik> zamiast /etc/rpmrc i $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "wy¶wietlaj nieco wiêcej komunikatów"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "wy¶wietlaj BARDZO du¿o komunikatów (dla odpluskwiania)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "tryb odpytywania"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr "      --root <katalog>        "
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "u¿yj <katalogu> jako katalogu najwy¿szego poziomu"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <katalog>      "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "u¿yj <katalog> jako katalogu bazy pakietów"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <format zapytania>"
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "u¿yj <format zapytania> jako formatu nag³ówka (dotyczy -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   instalacja, uaktualnianie i odpytywanie (z opcj± -p) pozwalaj± u¿yæ URL'a "
 "ftp zamiast"
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr "   nazwy pliku tak jak i nastêpuj±cych opcji:"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <host>   "
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "nazwa lub numer IP maszyny bêd±cej ftp proksy"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "numer portu serwera ftp (lub proksy)"
 
-#: rpm.c:330
+#: rpm.c:332
 msgid "      --httpproxy <host>   "
 msgstr "      --httpproxy <host>   "
 
-#: rpm.c:331
+#: rpm.c:333
 msgid "hostname or IP of http proxy"
 msgstr "nazwa lub IP hosta bêd±cego http proksy"
 
-#: rpm.c:332
+#: rpm.c:334
 msgid "      --httpport <port>    "
 msgstr "      --httpport <port>    "
 
-#: rpm.c:333
+#: rpm.c:335
 msgid "port number of http server (or proxy)"
 msgstr "numer portu serwera http (albo proksy)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Opcje selekcjonuj±ce pakiety:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "odpytuj wszystkie pakiety"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr "        -f <plik>+        "
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "zapytaj do jakiego pakietu nale¿y <plik>"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr "        -p <nazwa pakietu>+ "
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "odpytaj (niezainstalowany) pakiet <nazwa pakietu>"
 
-#: rpm.c:341
+#: rpm.c:343
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <pakiet>"
 
-#: rpm.c:342
+#: rpm.c:344
 msgid "query packages triggered by <pkg>"
 msgstr "odpytaj pakiety zahaczane przez <pakiet>"
 
-#: rpm.c:343
+#: rpm.c:345
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <zas>"
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr "odszukaj pakiety udostêpniaj±ce zasób <zas>"
 
-#: rpm.c:345
+#: rpm.c:347
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <zas>"
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr "odszukaj pakiety wymagaj±ce zasobu <zas>"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Opcje odpytuj±ce pakiety:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "wy¶wietl informacjê o pakiecie"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "wy¶wietl wykaz zmian dokonanych w pakiecie"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "wy¶wietl listê plików zawartych w pakiecie"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "poka¿ statusy plików (dotyczy -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "wy¶wietl tylko pliki dokumentacji (dotyczy -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "wy¶wietl tylko pliki konfiguracyjne (dotyczy -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 "poka¿ wszystkie informacje o ka¿dym pliku (musi byæ u¿yte z -l, -c lub -d)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "wypisz zasoby udostêpniane przez pakiet"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr "        --requires"
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "wypisz zale¿no¶ci pakietu"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "wy¶wietl skrypty [de]instalacyjne"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr "wy¶wietl trigger skrypty zawarte w pakiecie"
 
-#: rpm.c:374
+#: rpm.c:376
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <komenda>      "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "przeka¿ standartowe wyj¶cie do <komenda>"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "sprawd¼ stan pakietu (u¿ywa tych samych opcji co -q)"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "nie sprawdzaj sum kontrolnych md5 plików"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "nie sprawdzaj atrybutów plików"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -668,7 +668,7 @@ msgstr ""
 "ustaw prawa dostêpu takie jak zapisano w bazie pakietów (u¿ywa tych samych "
 "opcji co -q)"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -676,125 +676,125 @@ msgstr ""
 "ustaw w³a¶ciciela i grupê takie jak zapisano w bazie pakietów (u¿ywa tych "
 "samych opcji co -q)"
 
-#: rpm.c:397
+#: rpm.c:399
 msgid "    --install <packagefile>"
 msgstr "    --install <nazwa pakietu>"
 
-#: rpm.c:398
+#: rpm.c:400
 msgid "    -i <packagefile>      "
 msgstr "    -i <nazwa pakietu>      "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "instaluj pakiet"
 
-#: rpm.c:400
+#: rpm.c:402
 msgid "      --excludepath <path>"
 msgstr "      --excludepath <¶cie¿ka>"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
 
-#: rpm.c:402
+#: rpm.c:404
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "przesuñ pliki nawet gdy pakiet na to nie pozwala"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <katalog>      "
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "nie instaluj dokumentacji"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 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"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "nie sprawdzaj architektury systemu"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "zainstaluj dokumentacjê"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "wy¶wietlaj stan instalacji w procentach"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <nazwa pakietu>"
 
-#: rpm.c:450
+#: rpm.c:452
 msgid "    -U <packagefile>      "
 msgstr "    -U <nazwa pakietu>      "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "uaktualnij pakiet (te same opcje jak --install, plus)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -802,15 +802,15 @@ msgstr ""
 "uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
 "uaktualniania)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr "    --erase <pakiet>"
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "usuñ (odinstaluj) pakiet"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -818,89 +818,89 @@ msgstr ""
 "usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
 "wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<etap> <plik-spec>  "
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etap> <plik-tar>   "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "buduj pakiet, gdzie <etap> to:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "preparuj (rozpakuj ¼ród³a i na³ó¿ ³aty)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 "sprawdzanie z listy (wykonuje kilka podstawowych weryfikacji na %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "kompiluj (preparuj i kompiluj)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "instaluj (preparuj, kompiluj i instaluj)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "pakiet binarny (preparuj, kompiluj, instaluj, pakiet)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "pakiet binarny/¼ród³owy (preparuj, kompiluj, instaluj, pakiet)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "usuñ ¼ród³a i plik spec po skoñczeniu"
 
-#: rpm.c:497
+#: rpm.c:499
 msgid "generate PGP/GPG signature"
 msgstr "generuj sygnaturê PGP/GPG"
 
-#: rpm.c:498
+#: rpm.c:500
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <katalog>"
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "u¿yj <katalog> jako korzeñ budowanego drzewa"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "buduj pakiety dla platform docelowych platforma1...platformaN."
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: rpm.c:504
+#: rpm.c:506
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <sekundy>"
 
-#: rpm.c:505
+#: rpm.c:507
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "ustaw sprawdzanie czasu do ilo¶ci <sekund> (0 wy³±cza)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <pkt_¼ród³> "
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -908,221 +908,221 @@ msgstr ""
 "instaluj pakiet ¼ród³owy, buduj pakiet binarny i usuñ plik spec, ¼ród³a, "
 "³aty i ikony"
 
-#: rpm.c:509
+#: rpm.c:511
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <plik spec>"
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "usuñ plik spec i ¼ród³a"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <pkt_¼ród³>"
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "jak --rebuild, ale nie buduj ¿adnych pakietów"
 
-#: rpm.c:513
+#: rpm.c:515
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pakiet>+    "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "podpisz pakiet (porzuæ bierz±c± sygnaturê)"
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pakiet>+   "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "dodaj sygnaturê do pakietu"
 
-#: rpm.c:518
+#: rpm.c:520
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pakiet>+  "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "pomiñ wszelkie sygnatury PGP"
 
-#: rpm.c:523
+#: rpm.c:525
 msgid "skip any GPG signatures"
 msgstr "pomiñ wszelkie sygnatury GPG"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "pomiñ wszelkie sygnatury MD5"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "wypisz etykiety w³asno¶ci, o które mo¿na zapytaæ"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "upewnij siê, ¿e poprawna baza istnieje"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "przebuduj istniej±c± bazê"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "tylko jeden g³ówny tryb pracy mo¿e byæ podany"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u i --uninstall nie s± ju¿ obs³ugiwane i nie pracuj±.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "U¿yj -e lub --erase\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) wymaga koniecznie jednego z a,b,i,c,p,l"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--tarbuild (-t) wymaga koniecznie jednego z a,b,i,c,p,l"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "tylko jeden typ odpytywania/sprawdzania mo¿na wykonaæ na raz"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenty dla --dbpath musz± zaczynaæ sie od /"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "drzewa przesuniêæ musz± zaczynaæ sie od /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ ="
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ / po ="
 
-#: rpm.c:883
+#: rpm.c:888
 msgid "exclude paths must begin with a /"
 msgstr "¶cie¿ki wy³±czeñ musz± siê zaczynaæ od /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "B³±d wewnêtrzny w przetwarzaniu argumentu (%d) :-(\n"
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath podano dla operacji nie u¿ywaj±cej bazy"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck mo¿na u¿ywaæ tylko w trakcie budowania pakietów"
 
-#: rpm.c:950
+#: rpm.c:955
 msgid "unexpected query flags"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpm.c:953
+#: rpm.c:958
 msgid "unexpected query format"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "b³êdna konstrukcja argumentów odpytywania"
 
-#: rpm.c:962
+#: rpm.c:967
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "tylko instalacjê, uaktualnienie i usuwanie ¼róde³ mo¿na wymusiæ"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "przesuwania plików mo¿na dokonaæ tylko w trakcie instalacji"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --prefix i --relocate"
 
-#: rpm.c:971
+#: rpm.c:976
 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"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¿na u¿yæ tylko w trakcie instalacji nowych pakietów"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty dla --prefix musz± siê rozpoczynaæ od /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "nie mo¿na jednocze¶nie u¿yæ --excludedocs i --includedocs"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:1016
+#: rpm.c:1021
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¿na u¿yæ tylko w trakcie usuwania pakietów"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¿na u¿yæ tylko w trakcie instalacji pakietów"
 
-#: rpm.c:1028
+#: rpm.c:1033
 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"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1130,7 +1130,7 @@ msgstr ""
 "--noscripts mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub sprawdzania "
 "pakietów"
 
-#: rpm.c:1037
+#: rpm.c:1042
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1138,7 +1138,7 @@ msgstr ""
 "--notriggers mo¿na u¿yæ tylko w trakcie instalacji, usuwania lub sprawdzania "
 "pakietów"
 
-#: rpm.c:1041
+#: rpm.c:1046
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
@@ -1146,14 +1146,14 @@ msgstr ""
 "--nodeps mo¿na u¿yæ tylko w trakcie budowania, instalacji, usuwania lub "
 "sprawdzania pakietów"
 
-#: rpm.c:1045
+#: rpm.c:1050
 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"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1161,120 +1161,120 @@ msgstr ""
 "--root (-r) mo¿na u¿yæ tylko w trakcie instalacji, usuwania, sprawdzania "
 "pakietów lub przebudowywania bazy"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty dla --root (-r) musz± siê rozpoczynaæ od /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage mo¿na u¿yæ tylko podczas aktualizacji"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "opcje ftp mo¿na u¿yæ tylko podczas zapytañ, instalacji i akualizacji"
 
-#: rpm.c:1078
+#: rpm.c:1083
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "opcje http mo¿na u¿yæ tylko podczas zapytañ, instalacji i akualizacji"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp mo¿na u¿yæ tylko w trakcie sprawdzania sygnatury"
 
-#: rpm.c:1085
+#: rpm.c:1090
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg mo¿na u¿yæ tylko podczas sprawdzania sygnatury"
 
-#: rpm.c:1088
+#: rpm.c:1093
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nomd5 mo¿na u¿yæ tylko podczas sprawdzania sygnatury i weryfkiacji pakietu"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "brak dostêpu do pliku %s\n"
 
-#: rpm.c:1132
+#: rpm.c:1141
 msgid "pgp not found: "
 msgstr "nie znaleziono pgp: "
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr "Podaj has³o: "
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Weryfikacja has³a nieudana\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Has³o jest prawid³owe.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "B³êdny %%_signature spec w pliku makra.\n"
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign mo¿na u¿yæ tylko w trakcie budowania pakietu"
 
-#: rpm.c:1167
+#: rpm.c:1176
 msgid "exec failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "nieoczekiwane argumenty dla --querytags "
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "nie podano nazwy pakietu do sprawdzenia sygnatury"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "nie podano nazwy pakietu do podpisania"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "nie podano nazw pakietów do przebudowania"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "nie podano nazw plików spec do budowania"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "nie podano nazw plików tar do budowania"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "nie podano nazw plików do usuniêcia"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "zbyt wiele argumentów dla odpytywania wszystkich pakietów"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "nie podano argumentów dla trybu zapytañ"
 
-#: rpm.c:1396
+#: rpm.c:1405
 msgid "extra arguments given for verify of all packages"
 msgstr "zbyt wiele argumentów dla weryfikacji wszystkich pakietów"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "nie podano argumentów dla sprawdzania"
 
@@ -1477,58 +1477,53 @@ msgstr "Plik %4d: 0%o %s.%s\t %s\n"
 msgid "File needs leading \"/\": %s"
 msgstr "Plik musi siê zaczynaæ od \"/\": %s"
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Nie znaleziono pliku: %s"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "Nie mo¿na otworzyæ %%files pliku: %s"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr "linia: %s"
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr "B³êdny u¿ytkownik/grupa: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "Nie mo¿na uruchomiæ %s"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Nie mo¿na wykonaæ fork na %s"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, c-format
 msgid "%s failed"
 msgstr "%s nie powiod³o siê"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, c-format
 msgid "failed to write all data to %s"
 msgstr "zapisanie wszystkich danych do %s nie powiod³o siê"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Wyszukiwanie wymaganych zasobów...\n"
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "Wyszukiwanie nie powiod³o siê"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Przetwarzanie plików: %s\n"
@@ -2377,84 +2372,84 @@ msgstr "uruchamianie skryptu postinstall (je
 msgid "cannot read header at %d for lookup"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktywny %d pusty %d\n"
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(pusty)"
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(pusty)\n"
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s ma niezakoñczon± strukturê"
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s ma niedozwolon± nazwê (%%define)"
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s ma niezakoñczone opcje"
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s nie zawiera ¿adnych poleceñ"
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr "Rozwiniêcie makra %%%s nie powiod³o siê"
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s ma niedozwolon± nazwê (%%undefine)"
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nie by³o u¿yte poni¿ej poziomu %d"
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Nieznana opcja %c in %s(%s)"
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "G³êboko¶æ(%d) rekursji wiêksza mi¿ maks(%d)"
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Niezakoñczone %c: %s"
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr "Napotkano nieprzetwarzalne makro po %%"
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Nie znaleziono makra %%%.*s, makro pominiête"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr "Przepe³nienie bufora docelowego"
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, c-format
 msgid "File %s: %s"
 msgstr "Plik %s: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Plik %s jest mniejszy ni¿ %d bajtów"
@@ -2910,7 +2905,7 @@ msgstr "OK"
 msgid "opening database mode 0x%x in %s\n"
 msgstr "otwiernie bazê danych w trybie 0x%x w %s\n"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
@@ -3163,7 +3158,7 @@ msgstr "Przerywanie ..."
 msgid "Unknown or unexpected error"
 msgstr "Nieznany lub nieoczekiwany b³±d"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "logowanie do %s jako %s, has³o %s\n"
@@ -3474,27 +3469,27 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Has³o dla %s@%s: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "b³±d: %sport musi byæ liczb±\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr "port musi byæ liczb±\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "utworzenie %s nie powiod³o siê\n"
@@ -3529,6 +3524,10 @@ msgstr "Niespe
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: rpmdbOpen() nie powiod³o siê\n"
 
+#, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Nie znaleziono pliku: %s"
+
 #~ msgid "cannot create %s"
 #~ msgstr "nie mo¿na utworzyæ %s"
 
index 2df3dca..cfb2cf3 100644 (file)
@@ -2,7 +2,7 @@
 # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
 #
 msgid ""
-msgstr "POT-Creation-Date: 1999-12-12 11:59-0500\n"
+msgstr "POT-Creation-Date: 1999-12-12 15:51-0500\n"
 
 #: build.c:25 lib/rpminstall.c:248 lib/rpminstall.c:422
 #, c-format
@@ -88,7 +88,7 @@ msgstr "n
 msgid "override build root"
 msgstr "use s como o root da construção"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "remova a árvore de construção quando terminar"
 
@@ -111,7 +111,7 @@ msgstr "remova a 
 msgid "remove specfile when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "pule direto para o estágio especificado (somente para c,i)"
 
@@ -166,7 +166,7 @@ msgstr "n
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
@@ -179,148 +179,148 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM versão %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 "Este Software pode ser livremente redistribuido sob os termos da Licensa "
 "Pública GNU (GPL)"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "uso: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr ""
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <diretório>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <diretório>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <arquivo>] [--ignorearch] [--dbpath "
 "<diretório>]"
 
-#: rpm.c:226
+#: rpm.c:228
 #, fuzzy
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr "                        [--prefix <diretório>] [--ignoreos] [--nodeps]"
 
-#: rpm.c:227
+#: rpm.c:229
 #, fuzzy
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <porta>]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <host>] [--ftpport <porta>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 #, fuzzy
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] arquivo.rpm ... arquivoN.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        arquivo.rpm ... arquivoN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                        [--oldpackage] [--root <diretório>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <arquivo>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix "
 "<diretório>]"
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <porta>]"
 
-#: rpm.c:238
+#: rpm.c:240
 #, fuzzy
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                        [--provides] [--dump] [--dbpath <diretório>] [alvos]"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        arquivo.rpm ... arquivoN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <diretório>] [--rcfile <arquivo>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
@@ -328,7 +328,7 @@ msgstr ""
 "                        [--ftpuseport] [--ftpproxy <host>] [--ftpport "
 "<porta>]"
 
-#: rpm.c:247
+#: rpm.c:249
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -336,322 +336,322 @@ msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr ""
 "                        [--provides] [--dump] [--dbpath <diretório>] [alvos]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <diretório>] [--rcfile <arquivo>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [alvo]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [alvo]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        arquivo.rpm ... arquivoN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 #, fuzzy
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e] [--root <diretório>] [--noscripts] [--rcfile "
 "<arquivo>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 "                        [--dbpath <diretório>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                           pacote1 ... pacoteN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<arquivo>]"
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <S>] arquivo-spec"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <S>] arquivo-spec"
 
-#: rpm.c:262
+#: rpm.c:264
 #, fuzzy
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 "       rpm {--recompile} [--rcfile <arquivo>] [-v] fonte1.rpm ... fonteN.rpm"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <arquivo>] [-v] fonte1.rpm ... fonteN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <arquivo>] [-v] fonte1.rpm ... fonteN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <arquivo>] pacote1 pacote2 ... pacoteN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 "       rpm {--addsign} [--rcfile <arquivo>] pacote1 pacote2 ... pacoteN"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <arquivo>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           pacote1 ... pacoteN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <arquivo>] [--dbpath <diretório>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "uso:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "mostra esta mensagem"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "mostra a versão do programa rpm sendo usado"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   todos os modos suportam os seguintes argumentos:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "use <arquivo> no lugar de /etc/rpmrc e $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "seja um pouco mais detalhado"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "seja _muito_ mais detalhado (para depuração)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "modo pesquisa"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "use <diretório> como diretório raiz"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "use <diretório> como diretório para o banco de dados"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "use s como formato do cabeçalho (implica -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "  Instale, atualize e pesquise (com -p) permitem que sejam usadas URLs ftp "
 "no lugar"
 
-#: rpm.c:325
+#: rpm.c:327
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   de nomes de arquivos bem como as seguintes opções:\n"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "nome do host ou IP do proxy ftp"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "número da porta do servidor ftp (ou proxy)"
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:331
+#: rpm.c:333
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "nome do host ou IP do proxy ftp"
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:333
+#: rpm.c:335
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "número da porta do servidor ftp (ou proxy)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Opcões para especificação de pacotes:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "pesquise todos os pacotes"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "pesquise pacote (não instalado) <arquivo-pacote>"
 
-#: rpm.c:341
+#: rpm.c:343
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: rpm.c:343
+#: rpm.c:345
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: rpm.c:344
+#: rpm.c:346
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "pesquise pacotes que fornecem a capacidade <i>"
 
-#: rpm.c:345
+#: rpm.c:347
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: rpm.c:346
+#: rpm.c:348
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "pesquise pacotes que requerem capacidade <i>"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Opcões de selecão de informação"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "mostre informação do pacote"
 
-#: rpm.c:351
+#: rpm.c:353
 #, fuzzy
 msgid "display the package's change log"
 msgstr "mostre a lista de arquivos do pacote"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "mostre a lista de arquivos do pacote"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "mostre estados dos arquivos (implica -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "liste somente os arquivos de documentação (implica -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "liste somente os arquivos de configuração (implica -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -659,37 +659,37 @@ msgstr ""
 "mostre todas as informações verificáveis para cada arquivo (deve ser usado "
 "com -l, -c ou -d)"
 
-#: rpm.c:363
+#: rpm.c:365
 #, fuzzy
 msgid "list capabilities package provides"
 msgstr "lista as capacidades que o pacote fornece"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr ""
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "lista dependências do pacote"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "mostra as várias scripts de [des]instalação"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "envia a saida padrão para <cmd>"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -697,19 +697,19 @@ msgstr ""
 "verifique uma instalação de pacote usando as mesmas opções de especificação "
 "de pacote do -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "não verifique as dependências do pacote"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "não verifique os checksums md5 do arquivo"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "não verifique os atributos dos arquivos"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -717,7 +717,7 @@ msgstr ""
 "atribua as permissões dos arquivos para aquelas no banco de dados de pacotes "
 "usando as mesmas opções de especificação de pacote do -q"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -725,130 +725,130 @@ msgstr ""
 "atribua dono e grupo dos arquivos para aquelas no banco de dados de pacotes "
 "usando as mesmas opções de especificação de pacote do -q"
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "instale pacote"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "instale pacote"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "realoque o pacote para <diretório>, se realocável"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "não instale documentação"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "aliás para --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:421
+#: rpm.c:423
 #, fuzzy
 msgid "don't verify package architecture"
 msgstr "não verifique a arquitetura do pacote"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "não verifique o sistema operacional do pacote"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "instale documentação"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 #, fuzzy
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "não verifique as dependências do pacote"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "não execute nenhuma script de instalação"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "instale mesmo que o pacote substitua arquivos já instalados"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "reinstale se o pacote já estiver presente"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "não instale, mas diga se a instalação funcionará ou não"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "atualize pacote (mesmas opcões em --install, mais"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -856,15 +856,15 @@ msgstr ""
 "atualize para uma versão mais velha do pacote (--force em atualizações não "
 "faz isto automaticamente)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "apague (desinstale) pacote"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -872,96 +872,96 @@ msgstr ""
 "remova todos os pacotes iguais a <pacote> (normalmente um erro é gerado se "
 "<pacote> especificou múltiplos pacotes)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "não execute nenhuma script específica do pacote"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:476
+#: rpm.c:478
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "Constroi pacote, onde <estágio> é um dos seguintes:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (descompacte fontes e aplique patches)"
 
 # , c-format
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "cheque lista (faça algumas checagens em %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "compile (prep e compile)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "instale (prep, compile, instale)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "pacote binário (prep, compile, instale, pacote)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "pacote bin/src (prep, compile, instale, pacote)"
 
-#: rpm.c:495
+#: rpm.c:497
 #, fuzzy
 msgid "remove sources and spec file when done"
 msgstr "remova a árvore de construção quando terminar"
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "gere assinatura PGP"
 
-#: rpm.c:498
+#: rpm.c:500
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:499
+#: rpm.c:501
 #, fuzzy
 msgid "use <dir> as the build root"
 msgstr "use s como o root da construção"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "não execute nenhum estágio"
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "atribua S segundos ao tempo de checagem (0 o desabilita)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -969,247 +969,247 @@ msgstr ""
 "instale pacote fonte, construa pacote binário e remova o arquivo spec, "
 "fontes, patches e ícones."
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr ""
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "como --rebuild, mas não construa nenhum pacote"
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "assine um pacote (descarte a assinatura corrente)"
 
-#: rpm.c:515
+#: rpm.c:517
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "adicione uma assinatura a um pacote"
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<estágio> <spec>    "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "verifique a assinatura do pacote"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "desconsidere quaisquer assinaturas PGP"
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "desconsidere quaisquer assinaturas PGP"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "desconsidere quaisquer assinaturas MD5"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "liste as etiquetas que podem ser usadas em um formato de pesquisa"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "certifique que um banco de dados válido existe"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "somente um modo principal pode ser especificado"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u e --uninstall foram descontinuados e não funcionam mais.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Use -e ou --erase no lugar.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) requer um único argumento do tipo a,b,i,c,p,l"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--tarbuild (-t) requer um único argumento do tipo a,b,i,c,p,l"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "um tipo de pesquisa/verificação pode ser feita por vez"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: rpm.c:869
+#: rpm.c:874
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "argumentos para o --dbpath devem começar com uma /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath passado para uma operação que não usa um banco de dados"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck somente pode ser usado durante a construção de pacotes"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "fonte de pesquisa não esperado"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "fonte de pesquisa não esperado"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "fonte de pesquisa não esperado"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "somente instalação e atualização podem ser forçadas"
 
-#: rpm.c:965
+#: rpm.c:970
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:968
+#: rpm.c:973
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpm.c:971
+#: rpm.c:976
 #, 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"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 "--prefix somente pode ser usada quando se está instalando novos pacotes"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumentos para --prefix devem começar com uma /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 "--hash (-h) somente podem ser especificado durante instalações de pacotes"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 "--replacepkgs somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 "--excludedocs somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 "--includedocs somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "somente um entre --excludedocs e --includedocs pode ser especificado"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 "--ignorearch somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 "--ignoreos somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 "--ignoreos somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 "--allmatches somente pode ser especificado durante desinstalações de pacotes"
 
-#: rpm.c:1024
+#: rpm.c:1029
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--percent somente pode ser especificado durante instalações de pacotes"
 
-#: rpm.c:1028
+#: rpm.c:1033
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1217,7 +1217,7 @@ msgstr ""
 "--noscripts somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: rpm.c:1037
+#: rpm.c:1042
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1226,7 +1226,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1235,7 +1235,7 @@ msgstr ""
 "--nodeps somente pode ser especificado durante [des]instalações e "
 "verificações de pacotes"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1243,7 +1243,7 @@ msgstr ""
 "--test somente pode ser especificado durante [des]instalações e construções "
 "de pacotes"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1251,22 +1251,22 @@ msgstr ""
 "--root (-r) somente pode ser especificado durante [des]instalações, "
 "pesquisas e reconstrução de bancos de dados"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumentos para --root (-r) devem começar com uma /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage somente pode ser usado durante a atualização de pacotes"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "opções ftp somente podem ser usadas durante pesquisas, instalações e "
 "atualizações de pacotes"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1274,16 +1274,16 @@ msgstr ""
 "opções ftp somente podem ser usadas durante pesquisas, instalações e "
 "atualizações de pacotes"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp somente pode ser usado durante checagem de assinaturas"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
@@ -1291,91 +1291,91 @@ msgstr ""
 "--nopgp somente pode ser usado durante checagem de assinaturas e verificação "
 "de pacotes"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "não foi passado pacote para desinstalação"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Checagem de pass phrase falhou\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Pass phrase ok.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign somente pode ser usado durante a construção de pacotes"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Construção falhou.\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "argumentos não esperados em --querytags"
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "nenhum pacote informado para checagem de assinatura"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "não foram passados pacotes para assinatura"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "não foram passados pacotes para reconstrução"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "não foi passado arquivo spec para construção"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "não foram passados arquivos tar para construção"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "não foi passado pacote para desinstalação"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "não foi passado pacote para instalação"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "não foi passado argumento para pesquisa"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "foram passados argumentos em excesso para pesquisa em todos os pacotes"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "não foi passado argumento para verificação"
 
@@ -1592,63 +1592,58 @@ msgstr ""
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "não foi passado pacote para desinstalação"
-
 # , c-format
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 # , c-format
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
 # , c-format
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "Construção falhou.\n"
 
 # , c-format
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "Não consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
 # , c-format
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "Não consegui abrir o pipe tar: %s\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -2528,86 +2523,86 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3080,7 +3075,7 @@ msgid "opening database mode 0x%x in %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
 # , c-format
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
@@ -3347,7 +3342,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3684,28 +3679,28 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "Não consegui abrir o pipe tar: %s\n"
@@ -3737,6 +3732,10 @@ msgstr ""
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
+#, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "não foi passado pacote para desinstalação"
+
 # , c-format
 #, fuzzy
 #~ msgid "cannot create %s"
index f8b4af2..997a651 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\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"
@@ -89,7 +89,7 @@ msgstr ""
 msgid "override build root"
 msgstr ""
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr ""
 
@@ -109,7 +109,7 @@ msgstr ""
 msgid "remove specfile when done"
 msgstr ""
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
 
@@ -163,1056 +163,1056 @@ msgstr ""
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr ""
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr ""
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr ""
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr ""
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr ""
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 
-#: rpm.c:230
+#: rpm.c:232
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 
-#: rpm.c:231
+#: rpm.c:233
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr ""
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr ""
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: rpm.c:240
+#: rpm.c:242
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 
-#: rpm.c:241
+#: rpm.c:243
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr ""
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 
-#: rpm.c:248
+#: rpm.c:250
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr ""
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr ""
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr ""
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr ""
 
-#: rpm.c:254
+#: rpm.c:256
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr ""
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 
-#: rpm.c:257
+#: rpm.c:259
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 
-#: rpm.c:259
+#: rpm.c:261
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 
-#: rpm.c:260
+#: rpm.c:262
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr ""
 
-#: rpm.c:261
+#: rpm.c:263
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr ""
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr ""
 
-#: rpm.c:267
+#: rpm.c:269
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr ""
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr ""
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr ""
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr ""
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr ""
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr ""
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr ""
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr ""
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr ""
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr ""
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr ""
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr ""
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr ""
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr ""
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr ""
 
-#: rpm.c:330
+#: rpm.c:332
 msgid "      --httpproxy <host>   "
 msgstr ""
 
-#: rpm.c:331
+#: rpm.c:333
 msgid "hostname or IP of http proxy"
 msgstr ""
 
-#: rpm.c:332
+#: rpm.c:334
 msgid "      --httpport <port>    "
 msgstr ""
 
-#: rpm.c:333
+#: rpm.c:335
 msgid "port number of http server (or proxy)"
 msgstr ""
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr ""
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr ""
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr ""
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr ""
 
-#: rpm.c:341
+#: rpm.c:343
 msgid "        --triggeredby <pkg>"
 msgstr ""
 
-#: rpm.c:342
+#: rpm.c:344
 msgid "query packages triggered by <pkg>"
 msgstr ""
 
-#: rpm.c:343
+#: rpm.c:345
 msgid "        --whatprovides <cap>"
 msgstr ""
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr ""
 
-#: rpm.c:345
+#: rpm.c:347
 msgid "        --whatrequires <cap>"
 msgstr ""
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr ""
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr ""
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr ""
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr ""
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr ""
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr ""
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr ""
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr ""
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr ""
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr ""
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr ""
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr ""
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 msgid "    --pipe <cmd>          "
 msgstr ""
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr ""
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:397
+#: rpm.c:399
 msgid "    --install <packagefile>"
 msgstr ""
 
-#: rpm.c:398
+#: rpm.c:400
 msgid "    -i <packagefile>      "
 msgstr ""
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr ""
 
-#: rpm.c:400
+#: rpm.c:402
 msgid "      --excludepath <path>"
 msgstr ""
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr ""
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr ""
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 msgid "    -U <packagefile>      "
 msgstr ""
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr ""
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr ""
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr ""
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr ""
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr ""
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr ""
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr ""
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr ""
 
-#: rpm.c:497
+#: rpm.c:499
 msgid "generate PGP/GPG signature"
 msgstr ""
 
-#: rpm.c:498
+#: rpm.c:500
 msgid "      --buildroot <dir>   "
 msgstr ""
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr ""
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr ""
 
-#: rpm.c:504
+#: rpm.c:506
 msgid "      --timecheck <secs>  "
 msgstr ""
 
-#: rpm.c:505
+#: rpm.c:507
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr ""
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
 msgstr ""
 
-#: rpm.c:509
+#: rpm.c:511
 msgid "    --rmsource <spec>     "
 msgstr ""
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr ""
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
-#: rpm.c:513
+#: rpm.c:515
 msgid "    --resign <pkg>+       "
 msgstr ""
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr ""
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr ""
 
-#: rpm.c:518
+#: rpm.c:520
 msgid "    --checksig <pkg>+     "
 msgstr ""
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:523
+#: rpm.c:525
 msgid "skip any GPG signatures"
 msgstr ""
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr ""
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr ""
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr ""
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr ""
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr ""
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr ""
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr ""
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:883
+#: rpm.c:888
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr ""
 
-#: rpm.c:950
+#: rpm.c:955
 msgid "unexpected query flags"
 msgstr ""
 
-#: rpm.c:953
+#: rpm.c:958
 msgid "unexpected query format"
 msgstr ""
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr ""
 
-#: rpm.c:962
+#: rpm.c:967
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr ""
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr ""
 
-#: rpm.c:971
+#: rpm.c:976
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr ""
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr ""
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:1016
+#: rpm.c:1021
 msgid "--ignoresize may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr ""
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr ""
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
 msgstr ""
 
-#: rpm.c:1037
+#: rpm.c:1042
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
 msgstr ""
 
-#: rpm.c:1041
+#: rpm.c:1046
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
 msgstr ""
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
 msgstr ""
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr ""
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 
-#: rpm.c:1078
+#: rpm.c:1083
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:1085
+#: rpm.c:1090
 msgid "--nogpg may only be used during signature checking"
 msgstr ""
 
-#: rpm.c:1088
+#: rpm.c:1093
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:1132
+#: rpm.c:1141
 msgid "pgp not found: "
 msgstr ""
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr ""
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr ""
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr ""
 
-#: rpm.c:1167
+#: rpm.c:1176
 msgid "exec failed\n"
 msgstr ""
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr ""
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr ""
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr ""
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr ""
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr ""
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr ""
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr ""
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr ""
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr ""
 
-#: rpm.c:1396
+#: rpm.c:1405
 msgid "extra arguments given for verify of all packages"
 msgstr ""
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr ""
 
@@ -1412,57 +1412,52 @@ msgstr ""
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, c-format
-msgid "File not found by glob: %s"
-msgstr ""
-
-#: build/files.c:1207
+#: build/files.c:1154
 msgid "Could not open %%files file %s: %s"
 msgstr ""
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, c-format
 msgid "Couldn't exec %s: %s"
 msgstr ""
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, c-format
 msgid "Couldn't fork %s: %s"
 msgstr ""
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, c-format
 msgid "%s failed"
 msgstr ""
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, c-format
 msgid "failed to write all data to %s"
 msgstr ""
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, c-format
 msgid "Failed to find %s:"
 msgstr ""
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -2309,84 +2304,84 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -2838,7 +2833,7 @@ msgstr ""
 msgid "opening database mode 0x%x in %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -3089,7 +3084,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3398,27 +3393,27 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 763b30a..6f2b017 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=koi8-r\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -83,7 +83,7 @@ msgstr "
 msgid "override build root"
 msgstr "ÐÅÒÅÏÐÒÅÄÅÌÉÔØ build root"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ×"
 
@@ -103,7 +103,7 @@ msgstr "
 msgid "remove specfile when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ spec-ÆÁÊÌ"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "ÐÅÒÅÊÔÉ ÎÅÐÏÓÒÅÄÓÔ×ÅÎÎÏ Ë ÕËÁÚÁÎÎÏÍÕ ÜÔÁÐÕ (ÔÏÌØËÏ ÄÌÑ c,i)"
 
@@ -159,445 +159,445 @@ msgstr "
 msgid "no copyright!\n"
 msgstr "ÎÅÔ ËÏÐÉÒÁÊÔÁ!\n"
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM ×ÅÒÓÉÑ %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "íÏÖÅÔ Ó×ÏÂÏÄÎÏ ÒÁÓÐÒÏÓÔÒÁÎÑÔØÓÑ ÎÁ ÕÓÌÏ×ÉÑÈ GNU GPL."
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr ""
 "éÓÐÏÌØÚÏ×ÁÎÉÅ:\n"
 "       rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <ËÁÔÁÌÏÇ>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <ËÁÔÁÌÏÇ>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <ËÁÔÁÌÏÇ>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <ËÁÔ.>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <host>] [--ftpport <ÐÏÒÔ>] [--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--httpproxy <host>] [--httpport <ÐÏÒÔ>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate oldpath=newpath]"
 
-#: rpm.c:230
+#: rpm.c:232
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                        [--badreloc] [--notriggers] [--excludepath <ÐÕÔØ>]"
 
-#: rpm.c:231
+#: rpm.c:233
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--ignoresize] file1.rpm ... fileN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                        [--oldpackage] [--root <ËÁÔÁÌÏÇ>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <ÆÁÊÌ>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <ËÁÔ.>] [--prefix <ËÁÔ.>] "
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <host>] [--ftpport <ÐÏÒÔ>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: rpm.c:240
+#: rpm.c:242
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                        [--badreloc] [--excludepath <ÐÕÔØ>] [--ignoresize]"
 
-#: rpm.c:241
+#: rpm.c:243
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        file1.rpm ... fileN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <ËÁÔÁÌÏÇ>] [--rcfile <ÆÁÊÌ>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                        [--whatprovides] [--whatrequires] [--requires]"
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 
-#: rpm.c:248
+#: rpm.c:250
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--changelog] [--dbpath <ËÁÔÁÌÏÇ>] [ÃÅÌÉ]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <ËÁÔÁÌÏÇ>] [--rcfile <ÆÁÊÌ>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <ËÁÔ>] [--nodeps] [--nofiles] [--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [ÃÅÌÉ]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [ÃÅÌØ]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [ÃÅÌØ]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        file1.rpm ... fileN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e} [--root <ËÁÔÁÌÏÇ>] [--noscripts] [--rcfile <ÆÁÊÌ>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <ËÁÔÁÌÏÇ>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 "                        [--justdb] [--notriggers] package1 ... packageN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <ÆÁÊÌ>]"
 
-#: rpm.c:259
+#: rpm.c:261
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 
-#: rpm.c:260
+#: rpm.c:262
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [--target=platform1[,platform2...]]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "                        [--rmsource] specfile"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <ÆÁÊÌ>] [-v] specfile"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <ÆÁÊÌ>] [-v] source1.rpm ... sourceN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <ÆÁÊÌ>] [-v] source1.rpm ... sourceN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <ÆÁÊÌ>] ÐÁËÅÔ1 ÐÁËÅÔ2 ... ÐÁËÅÔN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <ÆÁÊÌ>] ÐÁËÅÔ1 ÐÁËÅÔ2 ... ÐÁËÅÔN"
 
-#: rpm.c:267
+#: rpm.c:269
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <ÆÁÊÌ>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           ÐÁËÅÔ1 ... ÐÁËÅÔN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <ÆÁÊÌ>] [--dbpath <ËÁÔÁÌÏÇ>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÎÉÅ:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "×Ù×ÅÓÔÉ ÜÔÏ ÓÏÏÂÝÅÎÉÅ"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "×Ù×ÅÓÔÉ ×ÅÒÓÉÀ ÉÓÐÏÌØÚÕÅÍÏÇÏ rpm"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   ×ÓÅ ÒÅÖÉÍÙ ÐÏÄÄÅÒÖÉ×ÁÀÔ ÓÌÅÄÕÀÝÉÅ ÁÒÇÕÍÅÎÔÙ:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <ÆÁÊÌ>     "
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ÆÁÊÌ> ×ÍÅÓÔÏ /etc/rpmrc É $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "ÂÙÔØ ÎÅÍÎÏÇÏ ÒÁÚÇÏ×ÏÒÞÉ×ÅÅ"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "ÂÙÔØ ïþåîø ÒÁÚÇÏ×ÏÒÞÉ×ÙÍ (ÄÌÑ ÏÔÌÁÄËÉ)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "ÒÅÖÉÍ ÚÁÐÒÏÓÁ"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr "      --root <ËÁÔÁÌÏÇ>    "
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <ËÁÔÁÌÏÇ>  "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÁÔÁÌÏÇ ÄÌÑ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <qfmt>"
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <qfmt> ËÁË ÆÏÒÍÁÔ ÈÅÄÅÒÁ (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ É ÚÁÐÒÏÓ (Ó -p) ÄÏÐÕÓËÁÀÔ ÉÓÐÏÌØÚÏ×ÁÎÉÅ ftp URL "
 "×ÍÅÓÔÏ"
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr "   ÉÍÅΠÆÁÊÌÏ× Á ÔÁËÖÅ ÓÌÅÄÕÀÝÉÅ ÏÐÃÉÉ:"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <host>   "
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "ÉÍÑ ÉÌÉ IP-ÁÄÒÅÓ ftp proxy"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <ÐÏÒÔ>    "
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "ÎÏÍÅÒ ÐÏÒÔÁ ftp-ÓÅÒ×ÅÒÁ (ÉÌÉ proxy)"
 
-#: rpm.c:330
+#: rpm.c:332
 msgid "      --httpproxy <host>   "
 msgstr "      --httpproxy <host>   "
 
-#: rpm.c:331
+#: rpm.c:333
 msgid "hostname or IP of http proxy"
 msgstr "ÉÍÑ ÉÌÉ IP-ÁÄÒÅÓ http proxy"
 
-#: rpm.c:332
+#: rpm.c:334
 msgid "      --httpport <port>    "
 msgstr "      --httpport <ÐÏÒÔ>    "
 
-#: rpm.c:333
+#: rpm.c:335
 msgid "port number of http server (or proxy)"
 msgstr "ÎÏÍÅÒ ÐÏÒÔÁ http-ÓÅÒ×ÅÒÁ (ÉÌÉ proxy)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      ïÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "ÚÁÐÒÏÓÉÔØ ×ÓÅ ÐÁËÅÔÙ"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr "        -f <ÆÁÊÌ>+        "
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "ÎÁÊÔÉ ÐÁËÅÔ, ËÏÔÏÒÏÍÕ ÐÒÉÎÁÄÌÅÖÉÔ <ÆÁÊÌ>"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr "        -p <ÆÁÊÌ ÐÁËÅÔÁ>+ "
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "ÚÁÐÒÏÓÉÔØ (ÎÅÕÓÔÁÎÏ×ÌÅÎÎÙÊ) ÐÁËÅÔ <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: rpm.c:341
+#: rpm.c:343
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <pkg>"
 
-#: rpm.c:342
+#: rpm.c:344
 msgid "query packages triggered by <pkg>"
 msgstr "ÚÁÐÒÏÓÉÔØ ÐÁËÅÔÙ Ó ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÁÍÉ ÎÁ ÐÁËÅÔ <pkg>"
 
-#: rpm.c:343
+#: rpm.c:345
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <cap>"
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÐÒÅÄÏÓÔÁ×ÌÑÀÝÉÅ ÓÅÒ×ÉÓ <cap>"
 
-#: rpm.c:345
+#: rpm.c:347
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <cap>"
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr "ÎÁÊÔÉ ÐÁËÅÔÙ, ÔÒÅÂÕÀÝÉÅ ÓÅÒ×ÉÓÁ <cap>"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      ïÐÃÉÉ ×ÙÂÏÒÁ ÉÎÆÏÒÍÁÃÉÉ:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "×Ù×ÅÓÔÉ ÉÎÆÏÒÍÁÃÉÀ Ï ÐÁËÅÔÅ"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "×Ù×ÅÓÔÉ ÐÒÏÔÏËÏÌ ÉÚÍÅÎÅÎÉÊ ÐÁËÅÔÁ"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "×Ù×ÅÓÔÉ ÓÐÉÓÏË ÆÁÊÌÏ× ÐÁËÅÔÁ"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "ÐÏËÁÚÁÔØ ÓÏÓÔÏÑÎÉÅ ÆÁÊÌÏ× (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "×Ù×ÅÓÔÉ ÔÏÌØËÏ ÆÁÊÌÙ ÄÏËÕÍÅÎÔÁÃÉÉ (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "×Ù×ÅÓÔÉ ÔÏÌØËÏ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ ÆÁÊÌÙ (ÐÏÄÒÁÚÕÍÅ×ÁÅÔ -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -605,35 +605,35 @@ msgstr ""
 "ÐÏËÁÚÁÔØ ×ÓÀ ËÏÎÔÒÏÌØÎÕÀ ÉÎÆÏÒÍÁÃÉÀ ÄÌÑ ËÁÖÄÏÇÏ ÆÁÊÌÁ (ÄÏÌÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ "
 "Ó -l, -c ÉÌÉ -d)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "ÐÏËÁÚÁÔØ ÓÅÒ×ÉÓÙ, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÅ ÐÁËÅÔÏÍ"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr "        --requires"
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "ÐÏËÁÚÁÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "×Ù×ÅÓÔÉ ÒÁÚÎÏÏÂÒÁÚÎÙÅ [ÄÅ]ÉÎÓÔÁÌÌÑÃÉÏÎÎÙÅ ÓËÒÉÐÔÙ"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr "ÐÏËÁÚÁÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÙ, ÓÏÄÅÒÖÁÝÉÅÓÑ × ÐÁËÅÔÅ"
 
-#: rpm.c:374
+#: rpm.c:376
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <cmd>          "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "ÐÏÓÌÁÔØ ÓÔÁÎÄÁÒÔÎÙÊ ×Ù×ÏÄ × <cmd>"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -641,19 +641,19 @@ msgstr ""
 "×ÅÒÉÆÉÃÉÒÏ×ÁÔØ ÉÎÓÔÁÌÌÑÃÉÀ ÐÁËÅÔÁ, ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ "
 "ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÅÊ ÐÁËÅÔÁ"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ËÏÎÔÒÏÌØÎÙÅ md5-ÓÕÍÍÙ ÆÁÊÌÏ×"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÔÔÒÉÂÕÔÙ ÆÁÊÌÏ×"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -661,7 +661,7 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ ÐÒÁ×Á ÄÏÓÔÕÐÁ ÆÁÊÌÏ× ÔÁËÉÅ ÖÅ, ËÁË × ÂÁÚÅ ÄÁÎÎÙÈ ÐÁËÅÔÁ, "
 "ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -669,125 +669,125 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ ÈÏÚÑÉÎÁ É ÇÒÕÐÐÕ ÆÁÊÌÏ× ÔÁËÉÅ ÖÅ, ËÁË × ÂÁÚÅ ÄÁÎÎÙÈ ÐÁËÅÔÁ, "
 "ÉÓÐÏÌØÚÕÑ ÔÅ ÖÅ ÏÐÃÉÉ ÓÐÅÃÉÆÉËÁÃÉÉ ÐÁËÅÔÁ, ÞÔÏ É -q"
 
-#: rpm.c:397
+#: rpm.c:399
 msgid "    --install <packagefile>"
 msgstr "    --install <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: rpm.c:398
+#: rpm.c:400
 msgid "    -i <packagefile>      "
 msgstr "    -i <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ"
 
-#: rpm.c:400
+#: rpm.c:402
 msgid "      --excludepath <path>"
 msgstr "      --excludepath <ÐÕÔØ>"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
 
-#: rpm.c:402
+#: rpm.c:404
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <oldpath>=<newpath>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ <oldpath> × <newpath>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÎÅ×ÚÉÒÁÑ ÎÁ ÔÏ, ÞÔÏ ÐÁËÅÔ ÜÔÏÇÏ ÎÅ ÐÏÚ×ÏÌÑÅÔ"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <ËÁÔÁÌÏÇ>  "
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÷óå ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
 "ÐÒÏÐÕÝÅÎÙ"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ËÁËÉÈ-ÌÉÂÏ ÕÓÔÁÎÏ×ÏÞÎÙÈ ÓËÒÉÐÔÏ×"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓËÒÉÐÔÏ×, ×Ú×ÅÄÅÎÎÙÈ ÎÁ ÜÔÏÔ ÐÁËÅÔ"
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <ÆÁÊÌ ÐÁËÅÔÁ>"
 
-#: rpm.c:450
+#: rpm.c:452
 msgid "    -U <packagefile>      "
 msgstr "    -U <ÆÁÊÌ ÐÁËÅÔÁ>      "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "ÏÂÎÏ×ÌÅÎÉÅ ÐÁËÅÔÁ (ÔÅ ÖÅ ÏÐÃÉÉ, ÞÔÏ É Ó --install, ÐÌÀÓ)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -795,15 +795,15 @@ msgstr ""
 "ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÄÌÑ ÏÂÎÏ×ÌÅÎÉÑ ÄÅÌÁÅÔ ÜÔÏ "
 "Á×ÔÏÍÁÔÉÞÅÓËÉ)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr "    --erase <ÐÁËÅÔ>  "
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -811,89 +811,89 @@ msgstr ""
 "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
 "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓËÒÉÐÔÏ×, ÓÐÅÃÉÆÉÞÎÙÈ ÄÌÑ ÐÁËÅÔÁ"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<stage> <spec>      "
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<stage> <tarball>   "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "ÓÏÂÒÁÔØ ÐÁËÅÔ, ÇÄÅ <stage> - ÏÄÎÏ ÉÚ:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "prep (ÉÓÐÏÌÎÉÔØ %prep)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "list check (ÐÒÏÉÚ×ÅÓÔÉ ÐÒÏ×ÅÒËÕ ÓÅËÃÉÉ %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "compile (ÉÓÐÏÌÎÉÔØ %prep É %build)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "install (ÉÓÐÏÌÎÉÔØ %prep, %build É %install)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "binary package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install É ÓÏÚÄÁÔØ RPM)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "bin/src package (ÉÓÐÏÌÎÉÔØ %prep, %build, %install, ÓÏÚÄÁÔØ RPM É SRPM)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "ÐÏÓÌÅ ÚÁ×ÅÒÛÅÎÉÑ ÕÄÁÌÉÔØ ÄÅÒÅ×Ï ÉÓÈÏÄÎÉËÏ× É spec-ÆÁÊÌ"
 
-#: rpm.c:497
+#: rpm.c:499
 msgid "generate PGP/GPG signature"
 msgstr "ÇÅÎÅÒÉÒÏ×ÁÔØ PGP/GPG-ÐÏÄÐÉÓØ"
 
-#: rpm.c:498
+#: rpm.c:500
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <ËÁÔ.>  "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔ.> ËÁË ËÏÒÎÅ×ÏÊ ÄÌÑ ÐÏÓÔÒÏÅÎÉÑ ÐÁËÅÔÁ"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr "      --target=<ÐÌÁÔÆÏÒÍÁ>+"
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "ÐÏÓÔÒÏÉÔØ ÐÁËÅÔÙ ÄÌÑ ÃÅÌÅ×ÙÈ ÐÌÁÔÆÏÒÍ ÐÌÁÔÆÏÒÍÁ1...ÐÌÁÔÆÏÒÍÁN"
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÜÔÁÐÏ×"
 
-#: rpm.c:504
+#: rpm.c:506
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <secs>  "
 
-#: rpm.c:505
+#: rpm.c:507
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÒÏ×ÅÒËÕ ×ÒÅÍÅÎÉ × <secs> ÓÅËÕÎÄ (0 ÏÔÍÅÎÑÅÔ ÅÅ)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <src_pkg>   "
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -901,229 +901,229 @@ msgstr ""
 "ÕÓÔÁÎÏ×ÉÔØ SRPM, ÓÏÂÒÁÔØ RPM É ÕÄÁÌÉÔØ spec-ÆÁÊÌ, ÆÁÊÌÙ Ó ÉÓÈÏÄÎÙÍÉ "
 "ÔÅËÓÔÁÍÉ, ÐÁÔÞÉ É ÐÉËÔÏÇÒÁÍÍÙ."
 
-#: rpm.c:509
+#: rpm.c:511
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <spec>     "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "ÕÄÁÌÉÔØ ÉÓÈÏÄÎÉËÉ É spec-ÆÁÊÌ"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <src_pkg> "
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "ËÁË --rebuild, ÎÏ ÎÅ ÓÏÂÉÒÁÅÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×"
 
-#: rpm.c:513
+#: rpm.c:515
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <pkg>+       "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "ÐÏÄÐÉÓÁÔØ ÐÁËÅÔ (ÕÄÁÌÉ× ÔÅËÕÝÕÀ ÐÏÄÐÉÓØ)"
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <pkg>+      "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "ÄÏÂÁ×ÉÔØ ÐÏÄÐÉÓØ Ë ÐÁËÅÔÕ"
 
-#: rpm.c:518
+#: rpm.c:520
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pkg>+     "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ PGP-ÐÏÄÐÉÓÉ"
 
-#: rpm.c:523
+#: rpm.c:525
 msgid "skip any GPG signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ GPG-ÐÏÄÐÉÓÉ"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "ÐÒÏÐÕÓÔÉÔØ ×ÓÅ MD5-ÐÏÄÐÉÓÉ"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "×Ù×ÅÓÔÉ ÔÜÇÉ, ËÏÔÏÒÙÅ ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ × ÆÏÒÍÁÔÅ ÚÁÐÒÏÓÁ"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "ÕÂÅÄÉÔØÓÑ, ÞÔÏ ÓÕÝÅÓÔ×ÕÅÔ ÐÒÁ×ÉÌØÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "ÐÅÒÅÓÔÒÏÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ ÉÚ ÓÕÝÅÓÔ×ÕÀÝÅÊ ÂÁÚÙ"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁΠÔÏÌØËÏ ÏÄÉΠÉÚ ÏÓÎÏ×ÎÙÈ ÒÅÖÉÍÏ×"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "ÏÐÃÉÉ -u É --uninstall ÕÓÔÁÒÅÌÉ É ÂÏÌØÛÅ ÎÅ ÒÁÂÏÔÁÀÔ.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "÷ÍÅÓÔÏ ÎÉÈ ÉÓÐÏÌØÚÕÊÔÅ -e ÉÌÉ --erase.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "ÏÐÃÉÑ --build (-b) ÔÒÅÂÕÅÔ a,b,i,c,p,l × ËÁÞÅÓÔ×Å ÅÄÉÎÓÔ×ÅÎÎÏÇÏ ÁÒÇÕÍÅÎÔÁ"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "ÏÐÃÉÑ --tarbuild (-t) ÔÒÅÂÕÅÔ a,b,i,c,p,l × ËÁÞÅÓÔ×Å ÅÄÉÎÓÔ×ÅÎÎÏÇÏ ÁÒÇÕÍÅÎÔÁ"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "ÚÁ ÏÄÉΠÒÁÚ ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌÎÅΠÔÏÌØËÏ ÏÄÉΠÔÉРÐÒÏ×ÅÒËÉ ÉÌÉ ÚÁÐÒÏÓÁ"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --dbpath ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ ="
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÉÍÅÔØ / ÐÏÓÌÅ ="
 
-#: rpm.c:883
+#: rpm.c:888
 msgid "exclude paths must begin with a /"
 msgstr "ÉÓËÌÀÞÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ ÐÒÉ ÏÂÒÁÂÏÔËÅ ÁÒÇÕÍÅÎÔÏ× (%d) :-(\n"
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "ÏÐÃÉÑ --dbpath ÚÁÄÁÎÁ ÄÌÑ ÏÐÅÒÁÃÉÉ, ÎÅ ÉÓÐÏÌØÚÕÀÝÅÊ ÂÁÚÕ ÄÁÎÎÙÈ"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "ÏÐÃÉÑ --timecheck ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "ÎÅÏÖÉÄÁÎÎÙÊ ÉÓÔÏÞÎÉË ÚÁÐÒÏÓÁ"
 
-#: rpm.c:962
+#: rpm.c:967
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr ""
 "ÐÒÉÎÕÄÉÔÅÌØÎÙÍÉ ÍÏÇÕÔ ÂÙÔØ ÔÏÌØËÏ ÕÓÔÁÎÏ×ËÁ, ÏÂÎÏ×ÌÅÎÉÅ, ÕÄÁÌÅÎÉÅ ÉÓÈÏÄÎÉËÏ× "
 "É spec-ÆÁÊÌÁ"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "ÆÁÊÌÙ ÍÏÇÕÔ ÂÙÔØ ÐÅÒÅÍÅÝÅÎÙ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ÉÚ ÏÐÃÉÊ --prefix ÉÌÉ --relocate"
 
-#: rpm.c:971
+#: rpm.c:976
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr ""
 "ÏÐÃÉÉ --relocate É --excludepath ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ "
 "ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "ÏÐÃÉÀ --prefix ÍÏÖÎÏ ÉÓÐÏÌØÚÏ×ÁÔØ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÎÏ×ÙÈ ÐÁËÅÔÏ×"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --prefix ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --hash (-h) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --percent ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --replacefiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --replacepkgs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --excludedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --includedocs ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÏÄÎÁ ÉÚ ÏÐÃÉÊ --excludedocs ÉÌÉ --includedocs"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignorearch ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignoreos ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:1016
+#: rpm.c:1021
 msgid "--ignoresize may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --ignoresize ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "ÏÐÃÉÑ --allmatches ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "ÏÐÃÉÑ --allfiles ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÐÁËÅÔÁ"
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr ""
 "ÏÐÃÉÑ --justdb ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ ÉÌÉ ÕÄÁÌÅÎÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1131,7 +1131,7 @@ msgstr ""
 "ÏÐÃÉÑ --noscripts ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1037
+#: rpm.c:1042
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1139,7 +1139,7 @@ msgstr ""
 "ÏÐÃÉÑ --notriggers ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1041
+#: rpm.c:1046
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
@@ -1147,7 +1147,7 @@ msgstr ""
 "ÏÐÃÉÑ --nodeps ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ, ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÏ×"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1155,7 +1155,7 @@ msgstr ""
 "ÏÐÃÉÑ --test ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ É ÓÂÏÒËÅ "
 "ÐÁËÅÔÁ"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1163,126 +1163,126 @@ msgstr ""
 "ÏÐÃÉÑ --root (-r) ÍÏÖÅÔ ÂÙÔØ ÕËÁÚÁÎÁ ÔÏÌØËÏ ÐÒÉ ÕÓÔÁÎÏ×ËÅ, ÕÄÁÌÅÎÉÉ, "
 "ÚÁÐÒÏÓÁÈ ÐÁËÅÔÁ É ÐÅÒÅÓÔÒÏÅÎÉÉ ÂÁÚÙ ÄÁÎÎÙÈ"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "ÁÒÇÕÍÅÎÔÙ ÄÌÑ --root (-r) ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr ""
 "ÏÐÃÉÑ --oldpackage ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ÏÐÃÉÉ ftp ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ ÔÏÌØËÏ ÐÒÉ ÚÁÐÒÏÓÁÈ, ÕÓÔÁÎÏ×ËÅ É "
 "ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: rpm.c:1078
+#: rpm.c:1083
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ÏÐÃÉÉ http ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ ÔÏÌØËÏ ÐÒÉ ÚÁÐÒÏÓÁÈ, ÕÓÔÁÎÏ×ËÅ É "
 "ÏÂÎÏ×ÌÅÎÉÉ ÐÁËÅÔÏ×"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "ÏÐÃÉÑ --nopgp ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:1085
+#: rpm.c:1090
 msgid "--nogpg may only be used during signature checking"
 msgstr "ÏÐÃÉÑ --nogpg ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:1088
+#: rpm.c:1093
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "ÏÐÃÉÑ --nomd5 ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÐÒÏ×ÅÒËÅ ÐÏÄÐÉÓÉ É "
 "×ÅÒÉÆÉËÁÃÉÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "ÎÅÔ ÄÏÓÔÕÐÁ Ë ÆÁÊÌÕ %s\n"
 
-#: rpm.c:1132
+#: rpm.c:1141
 msgid "pgp not found: "
 msgstr "pgp ÎÅ ÎÁÊÄÅÎ: "
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr "÷×ÅÄÉÔÅ ÐÁÒÏÌØ: "
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "îÅ×ÅÒÎÙÊ ÐÁÒÏÌØ\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "ðÁÒÏÌØ ÐÒÉÎÑÔ.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ.\n"
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "ÏÐÃÉÑ --sign ÍÏÖÅÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÁ ÔÏÌØËÏ ÐÒÉ ÓÂÏÒËÅ ÐÁËÅÔÏ×"
 
-#: rpm.c:1167
+#: rpm.c:1176
 msgid "exec failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "ÎÅÏÖÉÄÁÎÎÙÅ ÁÒÇÕÍÅÎÔÙ ÄÌÑ --querytags "
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÒÏ×ÅÒËÉ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÏÄÐÉÓÉ"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÐÅÒÅÓÂÏÒËÉ"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "ÎÅ ÚÁÄÁΠspec-ÆÁÊÌ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "ÎÅ ÚÁÄÁÎÙ tar-ÆÁÊÌÙ ÄÌÑ ÓÂÏÒËÉ ÐÁËÅÔÁ"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÄÁÌÅÎÉÑ"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "× ÚÁÐÒÏÓÅ ËÏ ×ÓÅÍ ÐÁËÅÔÁÍ ÚÁÄÁÎÙ ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÚÁÐÒÏÓÁ"
 
-#: rpm.c:1396
+#: rpm.c:1405
 msgid "extra arguments given for verify of all packages"
 msgstr "× ÚÁÐÒÏÓÅ ×ÅÒÉÆÉËÁÃÉÉ ×ÓÅÈ ÐÁËÅÔÏ× ÚÁÄÁÎÙ ÌÉÛÎÉÅ ÁÒÇÕÍÅÎÔÙ"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "ÎÅ ÚÁÄÁÎÙ ÁÒÇÕÍÅÎÔÙ ÄÌÑ ×ÅÒÉÆÉËÁÃÉÉ"
 
@@ -1485,58 +1485,53 @@ msgstr "
 msgid "File needs leading \"/\": %s"
 msgstr "æÁÊÌ ÄÏÌÖÅΠÎÁÞÉÎÁÔØÓÑ Ó \"/\": %s"
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "îÅ ÍÏÇÕ ÏÔËÒÙÔØ ÆÁÊÌ %%files: %s"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr "ÓÔÒÏËÁ: %s"
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr "îÅ×ÅÒÎÁÑ ÐÁÒÁ ÈÏÚÑÉÎ/ÇÒÕÐÐÁ: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ %s"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "îÅ ÍÏÇÕ ÆÏÒËÎÕÔØ %s"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, c-format
 msgid "%s failed"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, c-format
 msgid "failed to write all data to %s"
 msgstr "ÚÁÐÉÓØ ×ÓÅÈ ÄÁÎÎÙÈ × %s ÎÅ ÕÄÁÌÁÓØ"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "ïÐÒÅÄÅÌÑÀ ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ...\n"
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "ïÛÉÂËÁ ÏÐÒÅÄÅÌÅÎÉÑ ÓÅÒ×ÉÓÏ×, ÐÒÅÄÏÓÔÁ×ÌÑÅÍÙÈ ÐÁËÅÔÏÍ"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "ïÂÒÁÂÁÔÙ×ÁÀ ÆÁÊÌÙ: %s\n"
@@ -2384,84 +2379,84 @@ msgstr "
 msgid "cannot read header at %d for lookup"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== ÁËÔÉ×Π%d ÐÕÓÔ. %d\n"
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(ÐÕÓÔÏ)"
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(ÐÕÓÔÏ)\n"
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÏÅ ÔÅÌÏ"
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%define)"
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr "íÁËÒÏÓ %%%s ÓÏÄÅÒÖÉÔ ÎÅÚÁËÒÙÔÙÅ ÏÐÃÉÉ"
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÐÕÓÔÏÅ ÔÅÌÏ"
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr "íÁËÒÏÓ %%%s ÒÁÓËÒÙÔØ ÎÅ ÕÄÁÌÏÓØ"
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "íÁËÒÏÓ %%%s ÉÍÅÅÔ ÎÅÄÏÐÕÓÔÉÍÏÅ ÉÍÑ (%%undefine)"
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "íÁËÒÏÓ %%%s (%s) ÎÅ ÂÙÌ ÉÓÐÏÌØÚÏ×ÁΠÎÉÖÅ ÕÒÏ×ÎÑ %d"
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÏÐÃÉÑ %c × %s(%s)"
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "çÌÕÂÉÎÁ ÒÅËÕÒÓÉÉ(%d) ÂÏÌØÛÅ max(%d)"
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "îÅÚÁËÒÙÔÁÑ %c: %s"
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr "%% Ó ÐÏÓÌÅÄÕÀÝÉÍ ÎÅÒÁÚÂÉÒÁÅÍÙÍ ÍÁËÒÏÓÏÍ"
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 msgid "Macro %%%.*s not found, skipping"
 msgstr "íÁËÒÏÓ %s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ"
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, c-format
 msgid "File %s: %s"
 msgstr "æÁÊÌ %s: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "æÁÊÌ %s ÍÅÎØÛÅ %d ÂÁÊÔ"
@@ -2914,7 +2909,7 @@ msgstr "Ok"
 msgid "opening database mode 0x%x in %s\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÂÁÚÕ × ÒÅÖÉÍÅ 0x%x × %s\n"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s: %s"
@@ -3167,7 +3162,7 @@ msgstr "
 msgid "Unknown or unexpected error"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n"
@@ -3481,27 +3476,27 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "ðÁÒÏÌØ ÄÌÑ %s@%s: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "ÏÛÉÂËÁ: %sport ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr "url port ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s\n"
@@ -3532,6 +3527,10 @@ msgstr "
 msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmVerify: ÎÅÕÄÁÞÁ rpmdbOpen()\n"
 
+#, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅÎ: %s"
+
 #~ msgid "cannot create %s"
 #~ msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
index 743437e..2d6cb03 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 2.93\n"
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\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"
@@ -85,7 +85,7 @@ msgstr "predefinova
 msgid "override build root"
 msgstr "predefinova» adresár pre zostavenie balíka"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "po ukonèení odstráni» adresár, v ktorom sa balík zostavoval"
 
@@ -107,7 +107,7 @@ msgstr "po ukon
 msgid "remove specfile when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "preskoèi» priamo k urèenej etape (iba pre c, i)"
 
@@ -161,455 +161,455 @@ msgstr "bal
 msgid "no copyright!\n"
 msgstr "¾iadny copyright!\n"
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr "rpm: %s\n"
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzia %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Program mô¾e by» voµne redistribuovaný v súlade s podmienkami GNU GPL"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "pou¾itie: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr "          rpm {--version}"
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "          rpm {--initdb}   [--dbpath <adresár>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "          rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                           [--replacepkgs] [--replacefiles] [--root "
 "<adresár>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 "                           [--excludedocs] [--includedocs] [--noscripts]"
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                           [--rcfile <súbor>] [--ignorearch] [--dbpath "
 "<adresár>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                           [--prefix <adresár>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                           [--ftpproxy <poèítaè>] [--ftpport <port>] "
 "[--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                           [--httproxy <poèítaè>] [--httpport <port>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 "                           [--noorder] [--relocate stará_cesta=nová_cesta]"
 
-#: rpm.c:230
+#: rpm.c:232
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr ""
 "                           [--badreloc] [--notriggers] [--excludepath <path>]"
 
-#: rpm.c:231
+#: rpm.c:233
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                           [--ignoresize] súbor1.rpm ... súborN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "          rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 "                           [--oldpackage] [--root <adresár>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                           [--excludedocs] [--includedocs] [--rcfile <súbor>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                           [--ignorearch]  [--dbpath <adresár>] [--prefix "
 "<adresár>] "
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                           [--ftpproxy <poèítaè>] [--ftpport <port>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                           [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: rpm.c:240
+#: rpm.c:242
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr ""
 "                           [--badreloc] [--excludepath <path>] [--ignoresize]"
 
-#: rpm.c:241
+#: rpm.c:243
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                           súbor1.rpm ... súborN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "          rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                           [--scripts] [--root <adresár>] [--rcfile <súbor>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 "                           [--whatprovides] [--whatrequires] [--requires]"
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 "                           [--triggeredby] [--ftpuseport] [--ftpproxy "
 "<poèítaè>]"
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 "                           [--ftpport <port>] [--provides] [--triggers] "
 "[--dump]"
 
-#: rpm.c:248
+#: rpm.c:250
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr ""
 "                           [--changelog] [--dbpath <adresár>] [targets]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "          rpm {--verify -V -y} [-afpg] [--root <adresár>] [--rcfile <súbor>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                           [--dbpath <adresár>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                           [--nomd5] [ciele]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "          rpm {--setperms} [-afpg] [cieµ]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "          rpm {--setugids} [-afpg] [cieµ]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                           súbor1.rpm ... súborN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "          rpm {--erase -e} [--root <adresár>] [--noscripts] [--rcfile "
 "<súbor>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 "                           [--dbpath <adresár>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                           [--justdb] [--notriggers] balík1 ... balíkN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "          rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<súbor>]"
 
-#: rpm.c:259
+#: rpm.c:261
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                           [--sign] [--nobuild] [--timecheck <s>] ]"
 
-#: rpm.c:260
+#: rpm.c:262
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                           [--target=platform1[,platform2...]]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "                           [--rmsource] specsúbor"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "          rpm {--rmsource} [--rcfile <súbor>] [-v] specsúbor"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "          rpm {--rebuild}  [--rcfile <súbor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "          rpm {--recompile} [--rcfile <súbor>] [-v] zdroj1.rpm ... zdrojN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "          rpm {--resign}   [--rcfile <súbor>] balík1 balík2 ... balíkN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "          rpm {--addsign}  [--rcfile <súbor>] balík1 balík2 ... balíkN"
 
-#: rpm.c:267
+#: rpm.c:269
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr ""
 "          rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile "
 "<súbor>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                              balík1 ... balíkN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "          rpm {--rebuilddb} [--rcfile <súbor>] [--dbpath <adresár>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr "          rpm {--querytags}"
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "pou¾itie:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "vypísa» túto správu"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "vypísa» verziu pou¾ívaného rpm"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   v¹etky re¾imy podporujú nasledovné argumenty:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr "      --rcfile <file>     "
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "pou¾i» <súbor> namiesto /etc/rpmrc a $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "o nieèo popisnej¹í re¾im"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "veµmi popisný re¾im (pre odlaïovanie)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "re¾im otázok"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr "      --root <dir>        "
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr "      --dbpath <dir>      "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "pou¾i» <adresár> ako adresár pre databázu"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr "      --queryformat <qfmt>"
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "pou¾i» <qfmt> ako hlavièkový formát (implikuje -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr "   in¹talácia, aktualizácia a otázky (s -p) umo¾òujú pou¾i» ftp URL"
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr "   namiesto názvov súborov, ako aj nasledujúce voµby:"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr "      --ftpproxy <poèítaè>"
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "názov poèítaèa alebo IP adresa ftp proxy"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr "      --ftpport <port>    "
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "èíslo portu ftp servera (alebo proxy)"
 
-#: rpm.c:330
+#: rpm.c:332
 msgid "      --httpproxy <host>   "
 msgstr "      --httpproxy <poèítaè>"
 
-#: rpm.c:331
+#: rpm.c:333
 msgid "hostname or IP of http proxy"
 msgstr "názov poèítaèa alebo IP adresa http proxy"
 
-#: rpm.c:332
+#: rpm.c:334
 msgid "      --httpport <port>    "
 msgstr "      --httpport <port>   "
 
-#: rpm.c:333
+#: rpm.c:335
 msgid "port number of http server (or proxy)"
 msgstr "èíslo portu http servera (alebo proxy)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Voµby pre ¹pecifikáciu balíkov"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "opýta» sa na v¹etky balíky"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr "        -f <súbor>+       "
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "opýta» sa na balík vlastniaci <súbor>"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr "        -p <súbor_balíku>+"
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "opýta» sa (nenain¹talovaného) balíku <súbor_balíku>"
 
-#: rpm.c:341
+#: rpm.c:343
 msgid "        --triggeredby <pkg>"
 msgstr "        --triggeredby <balík>"
 
-#: rpm.c:342
+#: rpm.c:344
 msgid "query packages triggered by <pkg>"
 msgstr "opýta» sa na balíky spustené balíkom <balík>"
 
-#: rpm.c:343
+#: rpm.c:345
 msgid "        --whatprovides <cap>"
 msgstr "        --whatprovides <schopnos»>"
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr "opýta» sa na balíky poskytujúce schopnos» <schopnos»>"
 
-#: rpm.c:345
+#: rpm.c:347
 msgid "        --whatrequires <cap>"
 msgstr "        --whatrequires <schopnos»>"
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr "opýta» sa na balíky vy¾adujúce schopnos» <schopnos»>"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Voµby pre výber po¾adovanej informácie:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "zobrazi» informácie o balíku"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "zobrazi» históriu zmien balíka"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "zobrazi» zoznam súborov balíka"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "zobrazi» stavy súborov (implikuje -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "zobrazi» len súbory obsahujúce dokumentáciu (implikuje -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "zobrazi» iba konfiguraèné súbory (implikuje -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -617,35 +617,35 @@ msgstr ""
 "zobrazi» v¹etky overiteµné údaje pre ka¾dý súbor (musí by» pou¾ité s -l, -c "
 "alebo -d)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "zobrazi» schopnosti poskytované balíkom"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr "        --requires"
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "zobrazi» závislosti balíka"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "vypísa» rôzne [od]in¹talaèné skripty"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr "zobrazi» spú¹»acie skripty obsiahnuté v balíku"
 
-#: rpm.c:374
+#: rpm.c:376
 msgid "    --pipe <cmd>          "
 msgstr "    --pipe <príkaz>       "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "posla» ¹tandardný výstup do <príkazu>"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
@@ -653,19 +653,19 @@ msgstr ""
 "overi» in¹taláciu balíka s pou¾itím rovnakých volieb ¹pecifikácia balíka ako "
 "pre -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "neoverova» md5 kontrolné súèty súborov"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "neoverova» atribúty súborov"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -673,7 +673,7 @@ msgstr ""
 "nastavi» prístupové práva súborov podµa údajov v databáze balíkov s pou¾itím "
 "rovnakých volieb ¹pecifikácia balíka ako pre -q"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -681,125 +681,125 @@ msgstr ""
 "nastavi» vlastníka a skupinu súborov podµa údajov v databáze balíkov s "
 "pou¾itím rovnakých volieb ¹pecifikácia balíka ako pre -q"
 
-#: rpm.c:397
+#: rpm.c:399
 msgid "    --install <packagefile>"
 msgstr "    --install <súbor_balíku>"
 
-#: rpm.c:398
+#: rpm.c:400
 msgid "    -i <packagefile>      "
 msgstr "    -i <súbor_balíku>      "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "in¹talova» balík"
 
-#: rpm.c:400
+#: rpm.c:402
 msgid "      --excludepath <path>"
 msgstr "      --excludepath <cesta>"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr "vynecha» súbory v ceste <cesta>"
 
-#: rpm.c:402
+#: rpm.c:404
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "presunú» súbory napriek tomu, ¾e to balík nedovoµuje"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr "      --prefix <adresár>  "
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "nein¹talova» dokumentáciu"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skratka pre --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 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é"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "neoverova» architektúru balíka"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "neoverova» operaèný systém balíka"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "in¹talova» dokumentáciu"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "aktualizova» databázu bez zmeny súborového systému"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "vypisova» percentá poèas in¹talácie balíka"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "prein¹talova», pokiaµ u¾ balík existuje"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <súbor_balíka>"
 
-#: rpm.c:450
+#: rpm.c:452
 msgid "    -U <packagefile>      "
 msgstr "    -U <súbor_balíka>     "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "aktualizova» balík (rovnaké voµby ako --install, a k tomu)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -807,15 +807,15 @@ msgstr ""
 "aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
 "automaticky)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr "    --erase <package>"
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "odin¹talova» balík"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -823,88 +823,88 @@ msgstr ""
 "odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
 "¹pecifikuje viac ako jeden balík)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<etapa> <spec>      "
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr "    -t<etapa> <tar_súbor> "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "zostavi» balík, kde <etapa> je jedna z:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "príprava (rozbali» zdrojové súbory a aplikova» záplaty)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrola zoznamu (vykona» niektoré zbe¾né kontroly sekcie %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "kompilácia (príprava a kompilácia)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "in¹talácia (príprava, kompilácia, in¹talácia)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "binárny balík (príprava, kompilácia, in¹talácia, zabalenie)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "binárny a zdrojový balík (príprava, kompilácia, in¹talácia, zabalenie)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "po ukonèení odstráni» zdrojové súbory a spec-súbor"
 
-#: rpm.c:497
+#: rpm.c:499
 msgid "generate PGP/GPG signature"
 msgstr "vytvori» PGP/GPG podpis"
 
-#: rpm.c:498
+#: rpm.c:500
 msgid "      --buildroot <dir>   "
 msgstr "      --buildroot <adresár>   "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "pou¾i» <adresár> pre zostavenie balíka"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr "      --target=<platforma>+"
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr "vytvori» balíky pre ciele platforma1...platformaN."
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "nevykona» ¾iadne etapy"
 
-#: rpm.c:504
+#: rpm.c:506
 msgid "      --timecheck <secs>  "
 msgstr "      --timecheck <sekúnd>"
 
-#: rpm.c:505
+#: rpm.c:507
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "nastavi» kontrolu èasu na <sekúnd> sekúnd (0 pre deaktiváciu)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <zdroj_balík>"
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -912,224 +912,224 @@ msgstr ""
 "in¹talova» zdrojový balík, vytvori» binárny balík a odstráni» spec-súbor, "
 "zdroje, záplaty a ikony"
 
-#: rpm.c:509
+#: rpm.c:511
 msgid "    --rmsource <spec>     "
 msgstr "    --rmsource <spec>     "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "odstráni» zdroje a spec-súbor"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr "    --recompile <src_pkg> "
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "ako --rebuild, ale nezostavi» ¾iadny balík"
 
-#: rpm.c:513
+#: rpm.c:515
 msgid "    --resign <pkg>+       "
 msgstr "    --resign <balík>+     "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "podpísa» balík (znièi» aktuálny podpis)"
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr "    --addsign <balík>+    "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "prida» podpis balíku"
 
-#: rpm.c:518
+#: rpm.c:520
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <balík>+   "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "overi» podpis balíka"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "vynecha» akékoµvek PGP podpisy"
 
-#: rpm.c:523
+#: rpm.c:525
 msgid "skip any GPG signatures"
 msgstr "vynecha» akékoµvek GPG podpisy"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "vynecha» akékoµvek MD5 podpisy"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "vypísa» príznaky, ktoré mô¾u by» pou¾ité vo formáte otázky"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "uisti» sa, ¾e existuje platná databáza"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "znovu vytvori» databázu z existujúcej"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "mô¾e by» pou¾itý iba jeden hlavný re¾im"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u a --uninstall sú zastaralé a u¾ nefungujú.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Namiesto nich pou¾ite -e alebo --erase.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) vy¾aduje jedno z a,b,i,c,p,l ako jediný argument"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--tarbuild (-t) vy¾aduje jedno z a,b,i,c,p,l ako jediný argument"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "naraz mô¾e by» vykonaný jeden typ otázky alebo overenia"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenty pre --dbpath musia zaèína» /"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "presunutia musia zaèína» znakom /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "presunutia musia obsahova» znak ="
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "presunutia musia ma» za znakom = znak /"
 
-#: rpm.c:883
+#: rpm.c:888
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musia zaèína» znakom /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr "Vnútorná chyba pri spracovaní argumentu (%d) :-(\n"
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath zadané pre operáciu nepou¾ívajúcu databázu"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck mô¾e by» pou¾ité iba pri zostavovaní balíka"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "neoèakávaný zdroj pre otázku"
 
-#: rpm.c:962
+#: rpm.c:967
 #, 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é"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "súbory mô¾u by» presunuté iba poèas inètalácie balíka"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "mo¾e by» pou¾itá iba jedna z volieb --prefix a --relocate"
 
-#: rpm.c:971
+#: rpm.c:976
 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"
 
-#: rpm.c:974
+#: rpm.c:979
 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"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenty pre --prefix musia zaèína» znakom /"
 
-#: rpm.c:980
+#: rpm.c:985
 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"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "mô¾e by» pou¾itá iba jedna voµba z --excludedocs a --includedocs"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:1016
+#: rpm.c:1021
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoresize mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mô¾e by» pou¾ité iba poèas odstránenia balíkov"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mô¾e by» pou¾ité iba poèas in¹talácie balíka"
 
-#: rpm.c:1028
+#: rpm.c:1033
 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"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1137,7 +1137,7 @@ msgstr ""
 "--noscripts mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo "
 "overenia balíka"
 
-#: rpm.c:1037
+#: rpm.c:1042
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
@@ -1145,7 +1145,7 @@ msgstr ""
 "--notriggers mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo "
 "overenia balíka"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1154,7 +1154,7 @@ msgstr ""
 "--nodeps mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo overenia "
 "balíka"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
@@ -1162,7 +1162,7 @@ msgstr ""
 "--test mô¾e by» pou¾ité iba poèas in¹talácie, odstránenia alebo zostavenia "
 "balíka"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1170,122 +1170,122 @@ 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"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenty pre --root (-r) musia zaèína» znakom /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage mô¾e by» pou¾íté iba poèas aktualizácie"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "ftp voµby mô¾e by» pou¾íté iba poèas otázok, in¹talácie alebo aktualizácie"
 
-#: rpm.c:1078
+#: rpm.c:1083
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "http voµby mô¾e by» pou¾íté iba poèas otázok, in¹talácie alebo aktualizácie"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp mô¾e by» pou¾íté iba poèas overenia podpisu"
 
-#: rpm.c:1085
+#: rpm.c:1090
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nogpg mô¾e by» pou¾íté iba poèas overenia podpisu"
 
-#: rpm.c:1088
+#: rpm.c:1093
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nomd5 mô¾e by» pou¾íté iba poèas overenia podpisu alebo balíka"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr "nie je mo¾né pracova» so súborom %s\n"
 
-#: rpm.c:1132
+#: rpm.c:1141
 msgid "pgp not found: "
 msgstr "pgp nebolo nájdené: "
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Kontrola hesla zlyhala\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Heslo je v poriadku.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr "Chybná ¹pecifikácia %%_signature v makro-súbore.\n"
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign mô¾e by» pou¾íté iba poèas zostavenia balíka"
 
-#: rpm.c:1167
+#: rpm.c:1176
 msgid "exec failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "neoèakávané argumenty pre --querytags"
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "neboli zadané ¾iadne balíky pre overenie podpisu"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "neboli zadané ¾iadne balíky na podpis"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "neboli zadané ¾iadne balíky pre znovuzostavenie"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "neboli zadané ¾iadne spec-súbory pre zostavenie"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "neboli zadané ¾iadne tar-súbory pre zostavenie"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "neboli zadané ¾iadne balíky pre odin¹talovanie"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "boli zadané nadbytoèné argumenty otázky pre v¹etky balíky"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "neboli zadané ¾iadne argumenty pre otázku"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "boli zadané nadbytoèné argumenty otázky pre v¹etky balíky"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "neboli zadané ¾iadne argumenty pre overenie"
 
@@ -1489,58 +1489,53 @@ msgstr "S
 msgid "File needs leading \"/\": %s"
 msgstr "Súbor potrebuje na zaèiatku \"/\": %s"
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Súbor nebol nájdený: %s"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "chybe: nie je mo¾né otvori» %%files súbor: %s"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr "riadok: %s"
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr "Chybný vlastník/skupina: %s"
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "Nie je mo¾né spusti» %s"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Nie je mo¾né vytvori» proces %s"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, c-format
 msgid "%s failed"
 msgstr "%s zlyhalo"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, c-format
 msgid "failed to write all data to %s"
 msgstr "nepodarilo sa zapísa» v¹etky dáta do %s"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, fuzzy, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr "Zis»ujú sa po¾adované vlastnosti...\n"
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "Nepodarilo sa zisti» poskytované vlastnosti"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "Spracovávajú sa súbory: %s\n"
@@ -2388,84 +2383,84 @@ msgstr "vykon
 msgid "cannot read header at %d for lookup"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr "======================== aktívnych %d prázdnych %d\n"
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr "%3d>%*s(prázdne)"
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr "%3d<%*s(prázdne)\n"
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr "Makro %%%s obsahuje neukonèené telo"
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr "Makro %%%s obsahuje chybný názov (%%define)"
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr "Makro %%%s obsahuje neukonèené voµby"
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr "Makro %%%s obsahuje prázdne telo"
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr "Makro %%%s sa nepodarilo expandova»"
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr "Makro %%%s obsahuje chybný názov (%%undefine)"
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr "Makro %%%s (%s) nebolo pou¾ité pod úrovòou %d "
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr "Neznáma voµba %c v %s(%s)"
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr "Håbka rekurzie (%d) väè¹ia ako maximálna (%d)"
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr "Neukonèené %c: %s"
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 msgid "Macro %%%.*s not found, skipping"
 msgstr "balík %%%.*s nebol nájdený, vynecháva sa"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr "Preplnenie cieµovej vyrovnávacej pamäti"
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, c-format
 msgid "File %s: %s"
 msgstr "Súbor %s: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Súbor %s je men¹í ako %d bajtov"
@@ -2919,7 +2914,7 @@ msgstr "V PORIADKU"
 msgid "opening database mode 0x%x in %s\n"
 msgstr "otvára sa databáza s právami 0x%x v %s\n"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
@@ -3172,7 +3167,7 @@ msgstr "Zru
 msgid "Unknown or unexpected error"
 msgstr "Neznáma alebo neoèakávaná chyba"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "prihlasuje sa na %s ako %s, heslo %s\n"
@@ -3483,27 +3478,27 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Heslo pre %s@%s: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "chyba: %sport musí by» èíslo\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr "url port musí by» èíslo\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "nepodarilo sa vytvori» %s\n"
@@ -3541,6 +3536,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "rpmQuery: rpmdbOpen() zlyhalo\n"
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Súbor nebol nájdený: %s"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "nie je mo¾né zapísa» do %s: "
 
index d48ec9d..87d118c 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 "From: Erik Troan <ewt@lacrosse.redhat.com>\n"
@@ -97,7 +97,7 @@ msgstr "nemoj proveravati operativni sistem za paket"
 msgid "override build root"
 msgstr "koristi <dir> kao korenski katalog kod kreiranja"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "ukloni stablo direktorijuma po zavr¹etku"
 
@@ -120,7 +120,7 @@ msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr
 msgid "remove specfile when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "idi pravo do odreðene faze (samo za k,i)"
 
@@ -176,441 +176,441 @@ msgstr "paket %s nije na
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM verzija %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr ""
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Mo¾ete slobodno distribuirati dalje pod odredbama GNU GPL"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "kori¹æenje: {rpm --help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr ""
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr ""
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr ""
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr ""
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr ""
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr ""
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr ""
 
-#: rpm.c:247
+#: rpm.c:249
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr ""
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr ""
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr ""
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr ""
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr ""
 
-#: rpm.c:257
+#: rpm.c:259
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "\t\t\t[--badreloc] datoteka1.rpm ... datotekaN.rpm"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "\trpm {--resign} [--rcfile <datoteka>] paket1 paket2 ... paketN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "\trpm {--addsign} [--rcfile <datoteka>] paket1 paket2 ... paketN"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "\trpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <datoteka>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "\t\t\t   paket1 ...paketN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr ""
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "kori¹æenje:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "¹tampaj ovu poruku"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "napi¹i verziju rpm-a koja se koristi"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   svi re¾imi podr¾avaju sledeæe argumente:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "koristi <datoteku> umesto /etc/rpmrc i $HOME/.rpmrc"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "budi malko prièljiviji"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "budi neverovatno prièljiv (zbog nala¾enja gre¹aka)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "re¾im upita"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "koristi <dir> kao direktorijum baze podataka"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "koristi s kao format zaglavlja (povlaèi -i)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   instaliranje, pobolj¹avanja i upit (sa -p) dozvoljavaju kori¹æenje URL-ova"
 
-#: rpm.c:325
+#: rpm.c:327
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   na mestu imena datoteka kao i sledeæe opcije:\n"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "ime hosta ili IP ftp proxy-ja"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "broj porta FTP servera (ili proxy)"
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:331
+#: rpm.c:333
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "ime hosta ili IP ftp proxy-ja"
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:333
+#: rpm.c:335
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "broj porta FTP servera (ili proxy)"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Opcije odrednice paketa:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "upit nad svim paketima"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "upit za (deinstaliran) paket <paketdatoteka>"
 
-#: rpm.c:341
+#: rpm.c:343
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: rpm.c:343
+#: rpm.c:345
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: rpm.c:344
+#: rpm.c:346
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "upit za pakete koji omoguæavaju <i> svojstvo"
 
-#: rpm.c:345
+#: rpm.c:347
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: rpm.c:346
+#: rpm.c:348
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "upit za pakete koji zahtevaju <i> svojstvo"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Opcije za selekciju informacije:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "prika¾i informacije o paketu"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "prika¾i dnevnik promene paketa"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "prika¾i listu datoteka u paketu"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "prika¾i stanja datoteka (povlaèi -i)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "prika¾i samo datoteke iz dokumentacije (povlaèi -i)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr "prika¾i samo konfiguracione datoteke (povlaèi -i)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -618,36 +618,36 @@ msgstr ""
 "poka¾i sve informacije koje se mogu proveriti za svaku datoteku (mora se "
 "koristiti sa -l, -c ili -d)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "poka¾i koja svojstva donosi paket"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr ""
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "poka¾i zavisnosti paketa"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "ispi¹i razne skriptove za [de]instalaciju"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "po¹alji standardni izlaz u <komandu>"
 
-#: rpm.c:377
+#: rpm.c:379
 #, fuzzy
 msgid ""
 "verify a package installation using the same same package specification "
@@ -655,19 +655,19 @@ msgid ""
 msgstr ""
 "proveri instalaciju paketa koristeæi iste opcije za odreðenje paketa kao i -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "nemoj proveravati md5 kontrolne sume datoteke"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "nemoj proveravati atribute datoteke"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -675,7 +675,7 @@ msgstr ""
 "postavi dozvole datoteke kao one u bazi podataka paketa koristeæi iste "
 "opcije za odreðenje datoteka kao i -q"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -683,145 +683,145 @@ msgstr ""
 "postavi vlasnika i grupu datoteke kao i one u bazi podataka paketa koristeæi "
 "iste opcije za odreðenje datoteka kao i -q"
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "instaliraj paket"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "instaliraj paket"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "premesti datoteke èak iako paket to ne dozvoljava"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "nemoj da instalira¹ dokumentaciju"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skraæenica za --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 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)"
 
-#: rpm.c:418
+#: rpm.c:420
 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"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "instaliraj dokumentaciju"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "pi¹i procente instalacije paketa"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "ponovo instaliraj ako je paket veæ prisutan"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "a¾uriraj paket (iste opcije kao --install, plus)"
 
-#: rpm.c:453
+#: rpm.c:455
 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)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (deinstaliraj) paket"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -829,93 +829,93 @@ msgstr ""
 "ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
 "<paket> oznaèava vi¹e paketa)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:476
+#: rpm.c:478
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "napravi paket, gde je <faza> jedna od:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "priprema (raspakuj izvorne datoteke i primeni zakrpe)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "provera liste (mala provera na %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "kompilacija (priprema i kompilacija)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "instalacija (priprema, kompilacija, instalacija)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr "binarni paket (priprema, kompilacija, instalacija, pakovanje)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr "bin/src paket (priprema, kompilacija, instalacija, pakovanje)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije po zavr¹etku"
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "napravi PGP potpis"
 
-#: rpm.c:498
+#: rpm.c:500
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "koristi <dir> kao korenski katalog kod kreiranja"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "postavi vremensku proveru na S sekundi (0 je deaktivira)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -923,231 +923,231 @@ msgstr ""
 "instaliraj izvorni paket, napravi binarni paket i ukloni specifikaciju, "
 "izvorne datoteke, zakrpe i ikone."
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "ukloni izvorne datoteke i datoteku specifikacije"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "kao i --rebuild, samo nemoj praviti nikakav paket"
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "potpi¹i paket (ukloni tekuæi potpis)"
 
-#: rpm.c:515
+#: rpm.c:517
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "dodaj potpis u paket"
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<faza> <spec>\t "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "proveri potpis u paketu"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "preskoèi sve PGP potpise"
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "preskoèi sve PGP potpise"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "preskoèi sve MD5 potpise"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "ispi¹i tag-ove koji mogu biti kori¹æeni u formatu upita"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "uveri se da postoji ispravna baza podataka"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "samo jedan glavni re¾im mo¾e biti naveden"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u i --uninstall nisu vi¹e podr¾ani i ne rade vi¹e.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Koristite -e ili --erase.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) zahteva jedan od sledeæih podargumenata: a,b,i,c,p ili l"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) zahteva jedan od sledeæih podargumenata: a,b,c,i,p ili l"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "samo jedan tip upita/provere mo¾e biti uraðen odjednom"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argumenti za --dbpath moraju poèeti znakom '/'"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "preme¹tanja moraju imati znak ="
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "preme¹tanja moraju imati / praæeno sa ="
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath je naveden za operaciju koja ne koristi bazu podataka"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck se mo¾e koristiti samo kod kreiranja paketa"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "neoèekivan izvor upita"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "neoèekivan izvor upita"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "neoèekivan izvor upita"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "samo instalacija i a¾uriranje mogu biti forsirane"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "datoteke mogu biti preme¹tene samo tokom instalacije paketa"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "samo jedno mo¾ete koristiti: --prefix ili --relocate"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate mo¾ete koristiti samo kad instalirate novi paket"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix mo¾ete koristiti samo kod instalacije novog paketa"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "argumenti za --prefix moraju poèeti znakom /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includecocs mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "samo jedno mo¾ete da navedete: --excludedocs ili --includedocs"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches mo¾ete koristiti samo kod brisanja paketa"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles mo¾ete koristiti samo kod instalacije paketa"
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb mo¾ete koristiti samo kod instalacije i brisanja paketa"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
@@ -1155,7 +1155,7 @@ msgstr ""
 "--noscripsts mo¾ete koristiti samo kod instalacije, uklanjanja ili provere "
 "paketa"
 
-#: rpm.c:1037
+#: rpm.c:1042
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1163,7 +1163,7 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1171,14 +1171,14 @@ msgid ""
 msgstr ""
 "--nodeps mo¾ete koristiti samo kod instalacije, uklanjanja ili provere paketa"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr ""
 "--test mo¾ete koristiti samo kod instalacije, uklanjanja ili kreiranja paketa"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1186,22 +1186,22 @@ msgstr ""
 "--root (-r) mo¾ete navesti samo kod instalacije, uklanjanja, upita ili "
 "rekreiranja baze podataka"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argumenti za --root (-r) moraju poèeti znakom /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage se mo¾e koristiti samo tokom a¾uriranja paketa"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr ""
 "opcije za FTP se mogu koristiti samo kod upita, instalacije ili a¾uriranja "
 "paketa"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
@@ -1209,106 +1209,106 @@ msgstr ""
 "opcije za FTP se mogu koristiti samo kod upita, instalacije ili a¾uriranja "
 "paketa"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp se mo¾e koristiti samo prilikom provere potpisa"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp se mo¾e koristiti samo prilikom provere potpisa"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--nopgp se mo¾e koristiti samo kod provere potpisa ili paketa"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Neuspela provera lozinke\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Lozinka je dobra.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign se mo¾e koristiti samo kod kreiranja paketa"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "neoèekivani argumenti za --querytags"
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "nedostaje paket za proveru potpisa"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "nedostaje paket za potpisivanje"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "nedosataje paket za rekreiranje"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "nedostaje specifikacije za kreiranje"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "nedostaju 'tar' datoteke za kreiranje"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "neodstaje paket za deinstalaciju"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "nedostaje paket za instalaciju"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "suvi¹ni argumenti su navedeni za upit nad svim paketima"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "nedostaju argumenti za upit"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "suvi¹ni argumenti su navedeni za upit nad svim paketima"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "nedostaju argumenti za proveru"
 
@@ -1515,58 +1515,53 @@ msgstr "neuspelo otvaranje %s: %s"
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Datoteka nije pronaðena na serveru"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "gre¹ka: ne mogu da otvorim datoteku %s\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Ne mogu da proèitam 'sigtarget'"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "PGP omanuo"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "neuspelo kreiranje %s\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -2422,85 +2417,85 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paket %s nije naðen u %s"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -2968,7 +2963,7 @@ msgstr ""
 msgid "opening database mode 0x%x in %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -3232,7 +3227,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr "Neoèekivana ili nepoznata FTP gre¹ka"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3553,28 +3548,28 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Lozinka za %s@%s: "
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "neuspelo kreiranje %s\n"
@@ -3608,6 +3603,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Datoteka nije pronaðena na serveru"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "Ne mogu da otvorim datoteku %s: "
 
index 543da69..d344bad 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,5 +1,5 @@
 msgid ""
-msgstr "POT-Creation-Date: 1999-12-12 11:59-0500\n"
+msgstr "POT-Creation-Date: 1999-12-12 15:51-0500\n"
 
 #: build.c:25 lib/rpminstall.c:248 lib/rpminstall.c:422
 #, c-format
@@ -78,7 +78,7 @@ msgstr ""
 msgid "override build root"
 msgstr ""
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 #, fuzzy
 msgid "remove build tree when done"
 msgstr ""
@@ -107,7 +107,7 @@ msgstr ""
 "      --clean           - tag bort biblioteket där filerna kompilerades när "
 "det är klart"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 #, fuzzy
 msgid "skip straight to specified stage (only for c,i)"
 msgstr ""
@@ -164,686 +164,686 @@ msgstr "inga paket angivna f
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
 
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM version %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 #, fuzzy
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1995 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Den här programvaran kan distribueras fritt med hänsyn till GNU GPL"
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "använd: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:223
+#: rpm.c:225
 #, fuzzy
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: rpm.c:224
+#: rpm.c:226
 #, fuzzy
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: rpm.c:225
+#: rpm.c:227
 #, fuzzy
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: rpm.c:226
+#: rpm.c:228
 #, fuzzy
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr "                        [--sign] [--test] [--time-check <s>] specfil"
 
-#: rpm.c:227
+#: rpm.c:229
 #, fuzzy
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 #, fuzzy
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "                          [--root <dir>] file1.rpm ... filen.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                          file1.rpm ... fileN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 #, fuzzy
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrage -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:233
+#: rpm.c:235
 #, fuzzy
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: rpm.c:234
+#: rpm.c:236
 #, fuzzy
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: rpm.c:235
+#: rpm.c:237
 #, fuzzy
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: rpm.c:236
+#: rpm.c:238
 #, fuzzy
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:238
+#: rpm.c:240
 #, fuzzy
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                          file1.rpm ... fileN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 #, fuzzy
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afFpP] [-i] [-l] [-s] [-d] [-c] [-v] "
 
-#: rpm.c:243
+#: rpm.c:245
 #, fuzzy
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr "                          [--root <dir>] file1.rpm ... filen.rpm"
 
-#: rpm.c:244
+#: rpm.c:246
 #, fuzzy
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: rpm.c:245
+#: rpm.c:247
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
 msgstr "                          [--search] [--oldpackage] [--root <dir>]"
 
-#: rpm.c:247
+#: rpm.c:249
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:249
+#: rpm.c:251
 #, fuzzy
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: rpm.c:250
+#: rpm.c:252
 #, fuzzy
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr "                          [--replacepkgs] [--replacefiles] [--search]"
 
-#: rpm.c:251
+#: rpm.c:253
 #, fuzzy
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:252
+#: rpm.c:254
 #, fuzzy
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: rpm.c:253
+#: rpm.c:255
 #, fuzzy
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                          file1.rpm ... fileN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 #, fuzzy
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr "       rpm {--erase -e] [--root <dir>] paket1 paket2 ... paketN"
 
-#: rpm.c:256
+#: rpm.c:258
 #, fuzzy
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:257
+#: rpm.c:259
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr ""
 "                        - installera källkods paket, tillverka binär paket,"
 
-#: rpm.c:258
+#: rpm.c:260
 #, fuzzy
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b}[plciba] [-v] [--short-circuit] [--clean] [--keep-temps]"
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr "                        [--sign] [--test] [--time-check <s>] specfil"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "        -i                - visa paket information"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr ""
 
-#: rpm.c:263
+#: rpm.c:265
 #, fuzzy
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr "       rpm {--rebuild} [-v] source1.rpm source2.rpm ... sourceN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 #, fuzzy
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr "       rpm {--rebuild} [-v] source1.rpm source2.rpm ... sourceN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 #, fuzzy
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--erase -e] [--root <dir>] paket1 paket2 ... paketN"
 
-#: rpm.c:266
+#: rpm.c:268
 #, fuzzy
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--erase -e] [--root <dir>] paket1 paket2 ... paketN"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--verify -V -y] [-afFpP] [--root <dir>] [targets]"
 
-#: rpm.c:268
+#: rpm.c:270
 #, fuzzy
 msgid "                           package1 ... packageN"
 msgstr "                          som matchar <pkg>"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr ""
 
-#: rpm.c:270
+#: rpm.c:272
 #, fuzzy
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--version}"
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "använd:"
 
-#: rpm.c:306
+#: rpm.c:308
 #, fuzzy
 msgid "print this message"
 msgstr "   --help\t\t- visa det här meddelandet"
 
-#: rpm.c:308
+#: rpm.c:310
 #, fuzzy
 msgid "print the version of rpm being used"
 msgstr "   --version\t\t- visa vilken version av rpm som används"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr ""
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr ""
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr ""
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr ""
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr ""
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 #, fuzzy
 msgid "use <dir> as the top level directory"
 msgstr "      --root <dir>\t- använd <dir> som start bibliotek"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 msgid "      --dbpath <dir>      "
 msgstr ""
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr ""
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr ""
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 
-#: rpm.c:325
+#: rpm.c:327
 msgid "   of file names as well as the following options:"
 msgstr ""
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr ""
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr ""
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    --rebuild <källkods_paket>"
 
-#: rpm.c:331
+#: rpm.c:333
 msgid "hostname or IP of http proxy"
 msgstr ""
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    --rebuild <källkods_paket>"
 
-#: rpm.c:333
+#: rpm.c:335
 msgid "port number of http server (or proxy)"
 msgstr ""
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Paket urvals parametrar:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr ""
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 #, fuzzy
 msgid "query package owning <file>"
 msgstr "        -f <fil>+         - undersök paket som äger <fil>"
 
-#: rpm.c:339
+#: rpm.c:341
 #, fuzzy
 msgid "        -p <packagefile>+ "
 msgstr "    --upgrade <paketfil>"
 
-#: rpm.c:340
+#: rpm.c:342
 #, fuzzy
 msgid "query (uninstalled) package <packagefile>"
 msgstr "        -p <paketfil>+    - undersök (uninstalled) paket <packagefile>"
 
-#: rpm.c:341
+#: rpm.c:343
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "    --erase <paket>"
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "        -f <fil>+         - undersök paket som äger <fil>"
 
-#: rpm.c:343
+#: rpm.c:345
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "       rpm {--version}"
 
-#: rpm.c:344
+#: rpm.c:346
 msgid "query packages which provide <cap> capability"
 msgstr ""
 
-#: rpm.c:345
+#: rpm.c:347
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "       rpm {--version}"
 
-#: rpm.c:346
+#: rpm.c:348
 msgid "query packages which require <cap> capability"
 msgstr ""
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Information urvals parametrar:"
 
-#: rpm.c:349
+#: rpm.c:351
 #, fuzzy
 msgid "display package information"
 msgstr "        -i                - visa paket information"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr ""
 
-#: rpm.c:353
+#: rpm.c:355
 #, fuzzy
 msgid "display package file list"
 msgstr "        -l                - visa paketets fil lista"
 
-#: rpm.c:355
+#: rpm.c:357
 #, fuzzy
 msgid "show file states (implies -l)"
 msgstr "        -s                - visa filers status (implicerar -l)"
 
-#: rpm.c:357
+#: rpm.c:359
 #, fuzzy
 msgid "list only documentation files (implies -l)"
 msgstr ""
 "        -d                - visa enbart dokumentation filer (implicerar -l)"
 
-#: rpm.c:359
+#: rpm.c:361
 #, fuzzy
 msgid "list only configuration files (implies -l)"
 msgstr ""
 "        -c                - visa enbart konfiguration filer (implicerar -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
 msgstr ""
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr ""
 
-#: rpm.c:364
+#: rpm.c:366
 #, fuzzy
 msgid "        --requires"
 msgstr "       rpm {--version}"
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr ""
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr ""
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    --checksig <pkg>+  - verifiera PGP signatur"
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr ""
 
-#: rpm.c:377
+#: rpm.c:379
 #, fuzzy
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "\t\t\t  samma paket urvals parametrar som -q"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr ""
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr ""
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
 msgstr ""
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "    --upgrade <paketfil>"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    --upgrade <paketfil>"
 
-#: rpm.c:399
+#: rpm.c:401
 #, fuzzy
 msgid "install package"
 msgstr "    --install <paketfil>"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "                        [--root <dir>] [targets]"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr ""
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr ""
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr ""
 
-#: rpm.c:413
+#: rpm.c:415
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - förkortning för --replacepkgs --replacefiles"
 
-#: rpm.c:416
+#: rpm.c:418
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - skriv ut brädgårdar eftersom paketet installeras "
 "(bra tillsammans med -v)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr ""
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr ""
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr ""
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr ""
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr "      --percent         - skriv procent eftersom paketet installeras"
 
-#: rpm.c:441
+#: rpm.c:443
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installera även om paketet som det byter ut "
 "installerade filer"
 
-#: rpm.c:443
+#: rpm.c:445
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr ""
 "      --replacepkgs      - installera om ifall paketet redan är installerat"
 
-#: rpm.c:447
+#: rpm.c:449
 #, fuzzy
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 "      --test            - installera inte, men tala om ifall det skulle "
 "fungera eller inte"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr "    --upgrade <paketfil>"
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    --upgrade <paketfil>"
 
-#: rpm.c:451
+#: rpm.c:453
 #, fuzzy
 msgid "upgrade package (same options as --install, plus)"
 msgstr ""
 "    -U <paketfil>\t- upgradera paket (samma argument som --install, samt)"
 
-#: rpm.c:453
+#: rpm.c:455
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -852,116 +852,116 @@ msgstr ""
 "      --oldpackage      - upgradera till en gammal version av paketet "
 "(--force"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr "    --erase <paket>"
 
-#: rpm.c:457
+#: rpm.c:459
 #, fuzzy
 msgid "erase (uninstall) package"
 msgstr "    --install <paketfil>"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr ""
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr ""
 
-#: rpm.c:476
+#: rpm.c:478
 msgid "    -t<stage> <tarball>   "
 msgstr ""
 
-#: rpm.c:477
+#: rpm.c:479
 #, fuzzy
 msgid "build package, where <stage> is one of:"
 msgstr "    -b<steg> <spec>    - tillverka paket, där <steg> är något av:"
 
-#: rpm.c:479
+#: rpm.c:481
 #, fuzzy
 msgid "prep (unpack sources and apply patches)"
 msgstr "\t\t\t  p - förbered (packa upp källkod samt applicera patchar)"
 
-#: rpm.c:481
+#: rpm.c:483
 #, fuzzy, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "\t\t\t  l - kontrollera (gör några enkla kontroller på %files)"
 
-#: rpm.c:483
+#: rpm.c:485
 #, fuzzy
 msgid "compile (prep and compile)"
 msgstr "\t\t\t  c - kompilera (förbered och kompilera)"
 
-#: rpm.c:485
+#: rpm.c:487
 #, fuzzy
 msgid "install (prep, compile, install)"
 msgstr "\t\t\t  i - installera (förbered, kompilera, installera)"
 
-#: rpm.c:487
+#: rpm.c:489
 #, fuzzy
 msgid "binary package (prep, compile, install, package)"
 msgstr "\t\t\t  b - binär paketera (förbered, kompilera, installera, paketera)"
 
-#: rpm.c:489
+#: rpm.c:491
 #, fuzzy
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "\t\t\t  a - bin/src paketera (förbered, kompilera, installera, paketera)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr ""
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "      --sign            - tillverka en PGP signatur"
 
-#: rpm.c:498
+#: rpm.c:500
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    --rebuild <källkods_paket>"
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr ""
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr ""
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    --erase <paket>"
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr ""
 "      --time-check <s>  - sätt tidskontrollen till S sekunder (0 slår av den)"
 
-#: rpm.c:507
+#: rpm.c:509
 #, fuzzy
 msgid "    --rebuild <src_pkg>   "
 msgstr "    --rebuild <källkods_paket>"
 
-#: rpm.c:508
+#: rpm.c:510
 #, fuzzy
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
@@ -970,275 +970,275 @@ msgstr ""
 "                          och ta bort spec filen, källkoden, patchar, och "
 "ikoner."
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    --erase <paket>"
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr ""
 
-#: rpm.c:511
+#: rpm.c:513
 #, fuzzy
 msgid "    --recompile <src_pkg> "
 msgstr "    --rebuild <källkods_paket>"
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr ""
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    --checksig <pkg>+  - verifiera PGP signatur"
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr ""
 
-#: rpm.c:515
+#: rpm.c:517
 msgid "    --addsign <pkg>+      "
 msgstr ""
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr ""
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    --checksig <pkg>+  - verifiera PGP signatur"
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr ""
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr ""
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "      --sign            - tillverka en PGP signatur"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr ""
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr ""
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr ""
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr ""
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "enbart ett läge kan specifieras"
 
-#: rpm.c:701
+#: rpm.c:703
 #, fuzzy
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u och --uninstall är föråldrade och vill snart bli borttagna.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Använd -e eller --erase istället.\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) kräver en av a,b,i,c,p,l som dess enda argument"
 
-#: rpm.c:723
+#: rpm.c:725
 #, fuzzy
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr "--build (-b) kräver en av a,b,i,c,p,l som dess enda argument"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "en typ av undersökning/verifiering kan utföras åt gången"
 
-#: rpm.c:832
+#: rpm.c:834
 #, fuzzy
 msgid "arguments to --dbpath must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpm.c:869
+#: rpm.c:874
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr ""
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr ""
 
-#: rpm.c:947
+#: rpm.c:952
 #, fuzzy
 msgid "--timecheck may only be used during package builds"
 msgstr "--clean kan enbart användas vid paket tillverkning"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "oväntad undersöknings källa"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "oväntad undersöknings källa"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "oväntad undersöknings källa"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "enbart installation och upgradering kan bli tvingade"
 
-#: rpm.c:965
+#: rpm.c:970
 #, fuzzy
 msgid "files may only be relocated during package installation"
 msgstr "--replacefiles kan enbart användas vid paket installation"
 
-#: rpm.c:968
+#: rpm.c:973
 #, fuzzy
 msgid "only one of --prefix or --relocate may be used"
 msgstr "enbart ett läge kan specifieras"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--clean kan enbart användas vid paket tillverkning"
 
-#: rpm.c:974
+#: rpm.c:979
 #, fuzzy
 msgid "--prefix may only be used when installing new packages"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:977
+#: rpm.c:982
 #, fuzzy
 msgid "arguments to --prefix must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) kan enbart användas vid paket installation"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paket installation"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs kan enbart användas vid paket installation"
 
-#: rpm.c:996
+#: rpm.c:1001
 #, fuzzy
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: rpm.c:1000
+#: rpm.c:1005
 #, fuzzy
 msgid "--includedocs may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: rpm.c:1004
+#: rpm.c:1009
 #, fuzzy
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr "enbart ett läge kan specifieras"
 
-#: rpm.c:1008
+#: rpm.c:1013
 #, fuzzy
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: rpm.c:1012
+#: rpm.c:1017
 #, fuzzy
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--percent kan enbart användas vid paket installation"
 
-#: rpm.c:1020
+#: rpm.c:1025
 #, fuzzy
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--replacepkgs kan enbart användas vid paket installation"
 
-#: rpm.c:1024
+#: rpm.c:1029
 #, fuzzy
 msgid "--allfiles may only be specified during package installation"
 msgstr "--replacefiles kan enbart användas vid paket installation"
 
-#: rpm.c:1028
+#: rpm.c:1033
 #, fuzzy
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: rpm.c:1033
+#: rpm.c:1038
 #, fuzzy
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: rpm.c:1037
+#: rpm.c:1042
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
 "verification"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
 "erasure, and verification"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: rpm.c:1045
+#: rpm.c:1050
 #, fuzzy
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test kan enbart användas vid paket installation och avinstallation"
 
-#: rpm.c:1049
+#: rpm.c:1054
 #, fuzzy
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
@@ -1247,130 +1247,130 @@ msgstr ""
 "--root (-r) kan enbart användas vid paket installation, avinstallation, och "
 "undersökning"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "argument till --root (-r) måste börja med /"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage kan enbart användas vid paket uppgraderingar"
 
-#: rpm.c:1072
+#: rpm.c:1077
 #, fuzzy
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:1082
+#: rpm.c:1087
 #, fuzzy
 msgid "--nopgp may only be used during signature checking"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, c-format
 msgid "cannot access file %s\n"
 msgstr ""
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "inga paket angivna för avinstallation"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Kontrollen av Id-strängen misslyckades\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Id strängen är ok.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign kan enbart användas vid paket tillverkning"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "Tillverkningen misslyckades.\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr ""
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "inga paket angivna för signatur kontroll"
 
-#: rpm.c:1208
+#: rpm.c:1217
 #, fuzzy
 msgid "no packages given for signing"
 msgstr "inga paket angivna för avinstallation"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "inga paket filer angivna för omtillverkning"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "ingen spec filer angivna för tillverkning"
 
-#: rpm.c:1285
+#: rpm.c:1294
 #, fuzzy
 msgid "no tar files given for build"
 msgstr "ingen spec filer angivna för tillverkning"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "inga paket angivna för avinstallation"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "inga paket angivna för installation"
 
-#: rpm.c:1374
+#: rpm.c:1383
 #, fuzzy
 msgid "extra arguments given for query of all packages"
 msgstr "inga parametrar angivna för undersökning"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "inga parametrar angivna för undersökning"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "inga parametrar angivna för undersökning"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "inga parametrar angivna för verifiering"
 
@@ -1571,58 +1571,53 @@ msgstr ""
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "inga paket angivna för avinstallation"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "Tillverkningen misslyckades.\n"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "kan inte öppna: %s\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "kan inte öppna: %s\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr ""
@@ -2476,85 +2471,85 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr ""
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "inga paket angivna för avinstallation"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "kan inte öppna: %s\n"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3020,7 +3015,7 @@ msgstr ""
 msgid "opening database mode 0x%x in %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "kan inte öppna: %s\n"
@@ -3275,7 +3270,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3590,27 +3585,27 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: lib/url.c:419
+#: lib/url.c:402
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "kan inte öppna: %s\n"
@@ -3643,6 +3638,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr ""
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "inga paket angivna för avinstallation"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "kan inte öppna: %s\n"
 
index e87b2c5..346d38c 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 1999-12-12 11:59-0500\n"
+"POT-Creation-Date: 1999-12-12 15:51-0500\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"
@@ -94,7 +94,7 @@ msgstr "paketin ait oldu
 msgid "override build root"
 msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
 
-#: build.c:382 rpm.c:493
+#: build.c:382 rpm.c:495
 msgid "remove build tree when done"
 msgstr "iþlem sonunda paket yaratma yapýsýný siler"
 
@@ -117,7 +117,7 @@ msgstr "i
 msgid "remove specfile when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: build.c:392 rpm.c:491
+#: build.c:392 rpm.c:493
 msgid "skip straight to specified stage (only for c,i)"
 msgstr "doðrudan belirtilen adýma atlar (sadece c ve i için)"
 
@@ -173,7 +173,7 @@ msgstr "%s pakedi %s i
 msgid "no copyright!\n"
 msgstr ""
 
-#: rpm.c:195
+#: rpm.c:197
 #, c-format
 msgid "rpm: %s\n"
 msgstr ""
@@ -191,142 +191,142 @@ msgstr ""
 # May 5, 1998 
 #
 # , c-format
-#: rpm.c:206
+#: rpm.c:208
 #, c-format
 msgid "RPM version %s\n"
 msgstr "RPM Sürüm %s\n"
 
-#: rpm.c:210
+#: rpm.c:212
 msgid "Copyright (C) 1998 - Red Hat Software"
 msgstr "Copyright (C) 1998 - Red Hat Software"
 
-#: rpm.c:211
+#: rpm.c:213
 msgid "This may be freely redistributed under the terms of the GNU GPL"
 msgstr "Bu ðrogram GNU GPL uyarýnca serbestçe daðýtýlabilir."
 
-#: rpm.c:219
+#: rpm.c:221
 msgid "usage: rpm {--help}"
 msgstr "Kullaným: rpm {--help}"
 
-#: rpm.c:220
+#: rpm.c:222
 msgid "       rpm {--version}"
 msgstr "       rpm {--version}"
 
-#: rpm.c:221
+#: rpm.c:223
 msgid "       rpm {--initdb}   [--dbpath <dir>]"
 msgstr "       rpm {--initdb}   [--dbpath <dizin>]"
 
-#: rpm.c:222
+#: rpm.c:224
 msgid ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--install -i} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:223
+#: rpm.c:225
 msgid "                        [--replacepkgs] [--replacefiles] [--root <dir>]"
 msgstr ""
 "                        [--replacepkgs] [--replacefiles] [--root <dizin>]"
 
-#: rpm.c:224
+#: rpm.c:226
 msgid "                        [--excludedocs] [--includedocs] [--noscripts]"
 msgstr "                        [--excludedocs] [--includedocs] [--noscripts]"
 
-#: rpm.c:225
+#: rpm.c:227
 msgid ""
 "                        [--rcfile <file>] [--ignorearch] [--dbpath <dir>]"
 msgstr ""
 "                        [--rcfile <dosya>] [--ignorearch] [--dbpath <dizin>]"
 
-#: rpm.c:226
+#: rpm.c:228
 msgid ""
 "                        [--prefix <dir>] [--ignoreos] [--nodeps] [--allfiles]"
 msgstr ""
 "                        [--prefix <dizin>] [--ignoreos] [--nodeps] "
 "[--allfiles]"
 
-#: rpm.c:227
+#: rpm.c:229
 msgid ""
 "                        [--ftpproxy <host>] [--ftpport <port>] [--justdb]"
 msgstr ""
 "                        [--ftpproxy <sunucu>] [--ftpport <port>] [--justdb]"
 
-#: rpm.c:228 rpm.c:237 rpm.c:246
+#: rpm.c:230 rpm.c:239 rpm.c:248
 #, fuzzy
 msgid "                        [--httpproxy <host>] [--httpport <port>] "
 msgstr "                        [--ftpproxy <sunucu>] [--ftpport <port>]"
 
-#: rpm.c:229 rpm.c:239
+#: rpm.c:231 rpm.c:241
 msgid "                        [--noorder] [--relocate oldpath=newpath]"
 msgstr "                        [--noorder] [--relocate eskidizin=yenidizin]"
 
-#: rpm.c:230
+#: rpm.c:232
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--notriggers] [--excludepath <path>]"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: rpm.c:231
+#: rpm.c:233
 #, fuzzy
 msgid "                        [--ignoresize] file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: rpm.c:232
+#: rpm.c:234
 msgid ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 msgstr ""
 "       rpm {--upgrade -U} [-v] [--hash -h] [--percent] [--force] [--test]"
 
-#: rpm.c:233
+#: rpm.c:235
 msgid "                        [--oldpackage] [--root <dir>] [--noscripts]"
 msgstr "                        [--oldpackage] [--root <dizin>] [--noscripts]"
 
-#: rpm.c:234
+#: rpm.c:236
 msgid ""
 "                        [--excludedocs] [--includedocs] [--rcfile <file>]"
 msgstr ""
 "                        [--excludedocs] [--includedocs] [--rcfile <dosya>]"
 
-#: rpm.c:235
+#: rpm.c:237
 msgid ""
 "                        [--ignorearch]  [--dbpath <dir>] [--prefix <dir>] "
 msgstr ""
 "                        [--ignorearch]  [--dbpath <dizin>] [--prefix "
 "<dizin>] "
 
-#: rpm.c:236
+#: rpm.c:238
 msgid "                        [--ftpproxy <host>] [--ftpport <port>]"
 msgstr "                        [--ftpproxy <sunucu>] [--ftpport <port>]"
 
-#: rpm.c:238
+#: rpm.c:240
 msgid "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 msgstr ""
 "                        [--ignoreos] [--nodeps] [--allfiles] [--justdb]"
 
-#: rpm.c:240
+#: rpm.c:242
 #, fuzzy
 msgid ""
 "                        [--badreloc] [--excludepath <path>] [--ignoresize]"
 msgstr "                        [--nomd5] [targets]"
 
-#: rpm.c:241
+#: rpm.c:243
 #, fuzzy
 msgid "                        file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: rpm.c:242
+#: rpm.c:244
 msgid "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 msgstr "       rpm {--query -q} [-afpg] [-i] [-l] [-s] [-d] [-c] [-v] [-R]"
 
-#: rpm.c:243
+#: rpm.c:245
 msgid "                        [--scripts] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "                        [--scripts] [--root <dizin>] [--rcfile <dosya>]"
 
-#: rpm.c:244
+#: rpm.c:246
 msgid "                        [--whatprovides] [--whatrequires] [--requires]"
 msgstr ""
 
-#: rpm.c:245
+#: rpm.c:247
 #, fuzzy
 msgid ""
 "                        [--triggeredby] [--ftpuseport] [--ftpproxy <host>]"
@@ -334,7 +334,7 @@ msgstr ""
 "                        [--ftpuseport] [--ftpproxy <sunucu>] [--ftpport "
 "<port>]"
 
-#: rpm.c:247
+#: rpm.c:249
 #, fuzzy
 msgid ""
 "                        [--ftpport <port>] [--provides] [--triggers] [--dump]"
@@ -342,314 +342,314 @@ msgstr ""
 "                        [--dbpath <dizin>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:248
+#: rpm.c:250
 #, fuzzy
 msgid "                        [--changelog] [--dbpath <dir>] [targets]"
 msgstr "                        [--nomd5] [targets]"
 
-#: rpm.c:249
+#: rpm.c:251
 msgid "       rpm {--verify -V -y} [-afpg] [--root <dir>] [--rcfile <file>]"
 msgstr ""
 "       rpm {--verify -V -y} [-afpg] [--root <dizin>] [--rcfile <dosya>]"
 
-#: rpm.c:250
+#: rpm.c:252
 msgid ""
 "                        [--dbpath <dir>] [--nodeps] [--nofiles] [--noscripts]"
 msgstr ""
 "                        [--dbpath <dizin>] [--nodeps] [--nofiles] "
 "[--noscripts]"
 
-#: rpm.c:251
+#: rpm.c:253
 msgid "                        [--nomd5] [targets]"
 msgstr "                        [--nomd5] [targets]"
 
-#: rpm.c:252
+#: rpm.c:254
 msgid "       rpm {--setperms} [-afpg] [target]"
 msgstr "       rpm {--setperms} [-afpg] [target]"
 
-#: rpm.c:253
+#: rpm.c:255
 msgid "       rpm {--setugids} [-afpg] [target]"
 msgstr "       rpm {--setugids} [-afpg] [target]"
 
-#: rpm.c:254
+#: rpm.c:256
 #, fuzzy
 msgid "       rpm {--freshen -F} file1.rpm ... fileN.rpm"
 msgstr "                        [--badreloc] dosya1.rpm ... dosyaN.rpm"
 
-#: rpm.c:255
+#: rpm.c:257
 msgid "       rpm {--erase -e} [--root <dir>] [--noscripts] [--rcfile <file>]"
 msgstr ""
 "       rpm {--erase -e] [--root <dizin>] [--noscripts] [--rcfile <dosya>]"
 
-#: rpm.c:256
+#: rpm.c:258
 msgid "                        [--dbpath <dir>] [--nodeps] [--allmatches]"
 msgstr "                        [--dbpath <dizin>] [--nodeps] [--allmatches]"
 
-#: rpm.c:257
+#: rpm.c:259
 #, fuzzy
 msgid ""
 "                        [--justdb] [--notriggers] rpackage1 ... packageN"
 msgstr "                        [--justdb] paket1 ... paketN"
 
-#: rpm.c:258
+#: rpm.c:260
 msgid ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  <file>]"
 msgstr ""
 "       rpm {-b|t}[plciba] [-v] [--short-circuit] [--clean] [--rcfile  "
 "<dosya>]"
 
-#: rpm.c:259
+#: rpm.c:261
 #, fuzzy
 msgid "                        [--sign] [--nobuild] [--timecheck <s>] ]"
 msgstr ""
 "                        [--sign] [--test] [--timecheck <s>] [--buildos <os>]"
 
-#: rpm.c:260
+#: rpm.c:262
 #, fuzzy
 msgid "                        [--target=platform1[,platform2...]]"
 msgstr "                        [targets]"
 
-#: rpm.c:261
+#: rpm.c:263
 #, fuzzy
 msgid "                        [--rmsource] [--rmspec] specfile"
 msgstr ""
 "                        [--buildarch <mimari>] [--rmsource] specdosyasý"
 
-#: rpm.c:262
+#: rpm.c:264
 msgid "       rpm {--rmsource} [--rcfile <file>] [-v] specfile"
 msgstr "       rpm {--rmsource} [--rcfile <dosya>] [-v] specdosyasý"
 
-#: rpm.c:263
+#: rpm.c:265
 msgid ""
 "       rpm {--rebuild} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--rebuild} [--rcfile <dosya>] [-v] kaynak1.rpm ... kaynakN.rpm"
 
-#: rpm.c:264
+#: rpm.c:266
 msgid ""
 "       rpm {--recompile} [--rcfile <file>] [-v] source1.rpm ... sourceN.rpm"
 msgstr ""
 "       rpm {--recompile} [--rcfile <dosya>] [-v] kaynak1.rpm ... kaynakN.rpm"
 
-#: rpm.c:265
+#: rpm.c:267
 msgid "       rpm {--resign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--resign} [--rcfile <dosya>] paket1 paket2 ... paketN"
 
-#: rpm.c:266
+#: rpm.c:268
 msgid "       rpm {--addsign} [--rcfile <file>] package1 package2 ... packageN"
 msgstr "       rpm {--addsign} [--rcfile <dosya>] paket1 paket2 ... paketN"
 
-#: rpm.c:267
+#: rpm.c:269
 #, fuzzy
 msgid ""
 "       rpm {--checksig -K} [--nopgp] [--nogpg] [--nomd5] [--rcfile <file>]"
 msgstr "       rpm {--checksig -K} [--nopgp] [--nomd5] [--rcfile <dosya>]"
 
-#: rpm.c:268
+#: rpm.c:270
 msgid "                           package1 ... packageN"
 msgstr "                           paket1 ... paketN"
 
-#: rpm.c:269
+#: rpm.c:271
 msgid "       rpm {--rebuilddb} [--rcfile <file>] [--dbpath <dir>]"
 msgstr "       rpm {--rebuilddb} [--rcfile <dosya>] [--dbpath <dizin>]"
 
-#: rpm.c:270
+#: rpm.c:272
 msgid "       rpm {--querytags}"
 msgstr "       rpm {--querytags}"
 
-#: rpm.c:304
+#: rpm.c:306
 msgid "usage:"
 msgstr "Kullaným:"
 
-#: rpm.c:306
+#: rpm.c:308
 msgid "print this message"
 msgstr "Bu bilgiyi verir"
 
-#: rpm.c:308
+#: rpm.c:310
 msgid "print the version of rpm being used"
 msgstr "Kullanýlan RPM sürümünü verir"
 
-#: rpm.c:309
+#: rpm.c:311
 msgid "   all modes support the following arguments:"
 msgstr "   tüm kipler aþaðýdaki argümanlarý kabul ederler:"
 
-#: rpm.c:310
+#: rpm.c:312
 msgid "      --rcfile <file>     "
 msgstr ""
 
-#: rpm.c:311
+#: rpm.c:313
 msgid "use <file> instead of /etc/rpmrc and $HOME/.rpmrc"
 msgstr "/etc/rpmrc ve $HOME/.rpmrc yerine <dosya> kullanýn"
 
-#: rpm.c:313
+#: rpm.c:315
 msgid "be a little more verbose"
 msgstr "daha çok açýklama verir"
 
-#: rpm.c:315
+#: rpm.c:317
 msgid "be incredibly verbose (for debugging)"
 msgstr "çok fazla açýklama verir (hata ayýklama için)"
 
-#: rpm.c:317
+#: rpm.c:319
 msgid "query mode"
 msgstr "Sorgulama kipi"
 
-#: rpm.c:318 rpm.c:380 rpm.c:444 rpm.c:472
+#: rpm.c:320 rpm.c:382 rpm.c:446 rpm.c:474
 msgid "      --root <dir>        "
 msgstr ""
 
-#: rpm.c:319 rpm.c:381 rpm.c:445 rpm.c:473 rpm.c:535
+#: rpm.c:321 rpm.c:383 rpm.c:447 rpm.c:475 rpm.c:537
 msgid "use <dir> as the top level directory"
 msgstr "kök (baþlangýç) dizini olarak <dizin> kullanýlýr"
 
-#: rpm.c:320 rpm.c:378 rpm.c:408 rpm.c:460 rpm.c:532
+#: rpm.c:322 rpm.c:380 rpm.c:410 rpm.c:462 rpm.c:534
 #, fuzzy
 msgid "      --dbpath <dir>      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:321 rpm.c:379 rpm.c:409 rpm.c:461 rpm.c:533
+#: rpm.c:323 rpm.c:381 rpm.c:411 rpm.c:463 rpm.c:535
 msgid "use <dir> as the directory for the database"
 msgstr "Veritabaný dizini olarak <dizin> kullanýlýr"
 
-#: rpm.c:322
+#: rpm.c:324
 msgid "      --queryformat <qfmt>"
 msgstr ""
 
-#: rpm.c:323
+#: rpm.c:325
 #, fuzzy
 msgid "use <qfmt> as the header format (implies -i)"
 msgstr "'header format' olarak s kullanýlýr (-i'yi gerektirir)"
 
-#: rpm.c:324
+#: rpm.c:326
 msgid ""
 "   install, upgrade and query (with -p) allow ftp URL's to be used in place"
 msgstr ""
 "   yükleme, güncelleme ve sorgulama (-p ile) iþlemlerimde dosya isimleri "
 
-#: rpm.c:325
+#: rpm.c:327
 #, fuzzy
 msgid "   of file names as well as the following options:"
 msgstr "   yerine FTP adreslerini aþaðýdaki seçeneklerle kabul eder:\n"
 
-#: rpm.c:326
+#: rpm.c:328
 msgid "      --ftpproxy <host>   "
 msgstr ""
 
-#: rpm.c:327
+#: rpm.c:329
 msgid "hostname or IP of ftp proxy"
 msgstr "Makina ismi veya FTP-Proxy'nin IP numarasý"
 
-#: rpm.c:328
+#: rpm.c:330
 msgid "      --ftpport <port>    "
 msgstr ""
 
-#: rpm.c:329
+#: rpm.c:331
 msgid "port number of ftp server (or proxy)"
 msgstr "FTP sunucusunun (ya da Proxy'nin) port numarasý"
 
-#: rpm.c:330
+#: rpm.c:332
 #, fuzzy
 msgid "      --httpproxy <host>   "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:331
+#: rpm.c:333
 #, fuzzy
 msgid "hostname or IP of http proxy"
 msgstr "Makina ismi veya FTP-Proxy'nin IP numarasý"
 
-#: rpm.c:332
+#: rpm.c:334
 #, fuzzy
 msgid "      --httpport <port>    "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:333
+#: rpm.c:335
 #, fuzzy
 msgid "port number of http server (or proxy)"
 msgstr "FTP sunucusunun (ya da Proxy'nin) port numarasý"
 
-#: rpm.c:334
+#: rpm.c:336
 msgid "      Package specification options:"
 msgstr "      Paket seçim seçenekleri:"
 
-#: rpm.c:336
+#: rpm.c:338
 msgid "query all packages"
 msgstr "Tüm paketleri sorgulama"
 
-#: rpm.c:337
+#: rpm.c:339
 msgid "        -f <file>+        "
 msgstr ""
 
-#: rpm.c:338
+#: rpm.c:340
 msgid "query package owning <file>"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: rpm.c:339
+#: rpm.c:341
 msgid "        -p <packagefile>+ "
 msgstr ""
 
-#: rpm.c:340
+#: rpm.c:342
 msgid "query (uninstalled) package <packagefile>"
 msgstr "(henüz yüklenmemiþ) <paket dosyasý> paketi sorgulama"
 
-#: rpm.c:341
+#: rpm.c:343
 #, fuzzy
 msgid "        --triggeredby <pkg>"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: rpm.c:342
+#: rpm.c:344
 #, fuzzy
 msgid "query packages triggered by <pkg>"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: rpm.c:343
+#: rpm.c:345
 #, fuzzy
 msgid "        --whatprovides <cap>"
 msgstr "        --requires"
 
-#: rpm.c:344
+#: rpm.c:346
 #, fuzzy
 msgid "query packages which provide <cap> capability"
 msgstr "<i> yeteneði olan paketleri sorgulama"
 
-#: rpm.c:345
+#: rpm.c:347
 #, fuzzy
 msgid "        --whatrequires <cap>"
 msgstr "        --requires"
 
-#: rpm.c:346
+#: rpm.c:348
 #, fuzzy
 msgid "query packages which require <cap> capability"
 msgstr "<i> yeteneðine ihtiyaç duyan paketleri sorgulama"
 
-#: rpm.c:347
+#: rpm.c:349
 msgid "      Information selection options:"
 msgstr "      Bilgilendirme seçenekleri:"
 
-#: rpm.c:349
+#: rpm.c:351
 msgid "display package information"
 msgstr "Paket bilgisini gösterme"
 
-#: rpm.c:351
+#: rpm.c:353
 msgid "display the package's change log"
 msgstr "Paketin 'Change Log' (deðiþiklik) bilgisini gösterme"
 
-#: rpm.c:353
+#: rpm.c:355
 msgid "display package file list"
 msgstr "Paketin içerdiði dosyalarý gösterme"
 
-#: rpm.c:355
+#: rpm.c:357
 msgid "show file states (implies -l)"
 msgstr "dosyalarýn durumunu gösterir (-l gerektirir)"
 
-#: rpm.c:357
+#: rpm.c:359
 msgid "list only documentation files (implies -l)"
 msgstr "sadece belge dosyalarýný gösterir (-l gerektirir)"
 
-#: rpm.c:359
+#: rpm.c:361
 msgid "list only configuration files (implies -l)"
 msgstr ""
 "sadece yapýlandýrma (configuration) dosyalarýný gösterir (impliziert -l)"
 
-#: rpm.c:361
+#: rpm.c:363
 msgid ""
 "show all verifiable information for each file (must be used with -l, -c, or "
 "-d)"
@@ -657,54 +657,54 @@ msgstr ""
 "her dosya için doðrulanabilir bilgileri göster (-l, -c veya -d ile "
 "kullanýlmalý)"
 
-#: rpm.c:363
+#: rpm.c:365
 msgid "list capabilities package provides"
 msgstr "paketin saðladýðý yetenekleri sýralar"
 
-#: rpm.c:364
+#: rpm.c:366
 msgid "        --requires"
 msgstr "        --requires"
 
-#: rpm.c:366
+#: rpm.c:368
 msgid "list package dependencies"
 msgstr "paketin baðýmlýlýklarýný (gerektirdiði paketleri) gösterir"
 
-#: rpm.c:368
+#: rpm.c:370
 msgid "print the various [un]install scripts"
 msgstr "paketin çeþitli yükleme, silme betiklerini (scripts) gösterir"
 
-#: rpm.c:370
+#: rpm.c:372
 msgid "show the trigger scripts contained in the package"
 msgstr ""
 
-#: rpm.c:374
+#: rpm.c:376
 #, fuzzy
 msgid "    --pipe <cmd>          "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:375
+#: rpm.c:377
 msgid "send stdout to <cmd>"
 msgstr "standart çýktýyý <KOMUT>'a gönderir"
 
-#: rpm.c:377
+#: rpm.c:379
 msgid ""
 "verify a package installation using the same same package specification "
 "options as -q"
 msgstr "paketi -q ile belirtilen paket parametrelerini kullanarak doðrula"
 
-#: rpm.c:383 rpm.c:431 rpm.c:465
+#: rpm.c:385 rpm.c:433 rpm.c:467
 msgid "do not verify package dependencies"
 msgstr "paket baðýmlýlýklarýný doðrulamaz"
 
-#: rpm.c:385
+#: rpm.c:387
 msgid "do not verify file md5 checksums"
 msgstr "dosyalarýn 'md5-checksum' larýný doðrulamaz"
 
-#: rpm.c:387
+#: rpm.c:389
 msgid "do not verify file attributes"
 msgstr "dosya özelliklerini doðrulamaz"
 
-#: rpm.c:390
+#: rpm.c:392
 msgid ""
 "set the file permissions to those in the package database using the same "
 "package specification options as -q"
@@ -712,7 +712,7 @@ msgstr ""
 "dosya eriþim haklarýný veri tabanýnda yer alanlarla -q ile belirtilen paket "
 "parametrelerini kullanarak güncelle"
 
-#: rpm.c:393
+#: rpm.c:395
 msgid ""
 "set the file owner and group to those in the package database using the same "
 "package specification options as -q"
@@ -720,144 +720,144 @@ msgstr ""
 "dosya kullanýcý ve grup bilgilerini veri tabanýnda yer alanlarla -q ile "
 "belirtilen paket parametrelerini kullanarak güncelle"
 
-#: rpm.c:397
+#: rpm.c:399
 #, fuzzy
 msgid "    --install <packagefile>"
 msgstr "paket yüklemek"
 
-#: rpm.c:398
+#: rpm.c:400
 #, fuzzy
 msgid "    -i <packagefile>      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:399
+#: rpm.c:401
 msgid "install package"
 msgstr "paket yüklemek"
 
-#: rpm.c:400
+#: rpm.c:402
 #, fuzzy
 msgid "      --excludepath <path>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpm.c:401
+#: rpm.c:403
 msgid "skip files in path <path>"
 msgstr ""
 
-#: rpm.c:402
+#: rpm.c:404
 #, fuzzy
 msgid "      --relocate <oldpath>=<newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpm.c:403
+#: rpm.c:405
 msgid "relocate files from <oldpath> to <newpath>"
 msgstr "dosyalarý <eskidizin> den <yenidizin> e relocate et"
 
-#: rpm.c:405
+#: rpm.c:407
 msgid "relocate files even though the package doesn't allow it"
 msgstr "paket desteklemese bile dosyalarý relocate et"
 
-#: rpm.c:406
+#: rpm.c:408
 msgid "      --prefix <dir>      "
 msgstr ""
 
-#: rpm.c:407
+#: rpm.c:409
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "paketin yerini (eðer deðitirilebiliyorsa) <dizin>'e deðiþtirir"
 
-#: rpm.c:411
+#: rpm.c:413
 msgid "do not install documentation"
 msgstr "yazýlýmýn belgelerini yüklemez"
 
-#: rpm.c:413
+#: rpm.c:415
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs --replacefiles'ýn kýsaltmasý"
 
-#: rpm.c:416
+#: rpm.c:418
 msgid "print hash marks as package installs (good with -v)"
 msgstr "yükleme sýrasýnda bir gösterge çýkarýr (-v seçeneði ile iyi)"
 
-#: rpm.c:418
+#: rpm.c:420
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "tüm dosyalarý, hatta normal olarak atlanabilecek yapýlandýrmalarý bile,yükler"
 
-#: rpm.c:421
+#: rpm.c:423
 msgid "don't verify package architecture"
 msgstr "paket mimarisini doðrulamaz"
 
-#: rpm.c:423
+#: rpm.c:425
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: rpm.c:425
+#: rpm.c:427
 msgid "don't verify package operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: rpm.c:427
+#: rpm.c:429
 msgid "install documentation"
 msgstr "paket ile gelen belgeleri de yükler"
 
-#: rpm.c:429 rpm.c:463
+#: rpm.c:431 rpm.c:465
 msgid "update the database, but do not modify the filesystem"
 msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
 
-#: rpm.c:433 rpm.c:467
+#: rpm.c:435 rpm.c:469
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "paket yükleme sýrasýný baðýmlýlýklara göre düzenleme"
 
-#: rpm.c:435
+#: rpm.c:437
 msgid "don't execute any installation scripts"
 msgstr "yükleme betiklerini (scripts) çalýþtýrmaz."
 
-#: rpm.c:437 rpm.c:471
+#: rpm.c:439 rpm.c:473
 msgid "don't execute any scripts triggered by this package"
 msgstr ""
 
-#: rpm.c:439
+#: rpm.c:441
 msgid "print percentages as package installs"
 msgstr "yükleme sýrasýnda geliþme yüzde olarak gösterilir"
 
-#: rpm.c:441
+#: rpm.c:443
 msgid "install even if the package replaces installed files"
 msgstr "paket mevcut dosyalarý silse bile paketi yükler"
 
-#: rpm.c:443
+#: rpm.c:445
 msgid "reinstall if the package is already present"
 msgstr "paket mevcutsa yeniden yükler"
 
-#: rpm.c:447
+#: rpm.c:449
 msgid "don't install, but tell if it would work or not"
 msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
 
-#: rpm.c:449
+#: rpm.c:451
 msgid "    --upgrade <packagefile>"
 msgstr ""
 
-#: rpm.c:450
+#: rpm.c:452
 #, fuzzy
 msgid "    -U <packagefile>      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:451
+#: rpm.c:453
 msgid "upgrade package (same options as --install, plus)"
 msgstr "Paketi günceller (seçenekler --install ile ayný, ek olarak)"
 
-#: rpm.c:453
+#: rpm.c:455
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 "pakedin eski bir sürüme güncellenmesini saðlar (--force ayný iþi görür)"
 
-#: rpm.c:455
+#: rpm.c:457
 msgid "    --erase <package>"
 msgstr ""
 
-#: rpm.c:457
+#: rpm.c:459
 msgid "erase (uninstall) package"
 msgstr "paketi siler (uninstall)"
 
-#: rpm.c:459
+#: rpm.c:461
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -865,97 +865,97 @@ msgstr ""
 "<paket> ile eþlenen tüm paketleri siler (birden fazla paket eþlenirse bir "
 "hata mesajý çýkmasý gerekir)"
 
-#: rpm.c:469
+#: rpm.c:471
 msgid "do not execute any package specific scripts"
 msgstr "pakete ait hiçbir betik (Script) çalýþtýrýlmaz"
 
-#: rpm.c:475
+#: rpm.c:477
 msgid "    -b<stage> <spec>      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:476
+#: rpm.c:478
 #, fuzzy
 msgid "    -t<stage> <tarball>   "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:477
+#: rpm.c:479
 msgid "build package, where <stage> is one of:"
 msgstr "paket yaratýr, <adým> aþaðýdaki harflerden biridir:"
 
-#: rpm.c:479
+#: rpm.c:481
 msgid "prep (unpack sources and apply patches)"
 msgstr "hazýrlama (kaynaklar açýlýr ve yamalar uygulanýr)"
 
 # , c-format
-#: rpm.c:481
+#: rpm.c:483
 #, c-format
 msgid "list check (do some cursory checks on %files)"
 msgstr "kontrol ( %files üstünkörü bir kontrol edilir)"
 
-#: rpm.c:483
+#: rpm.c:485
 msgid "compile (prep and compile)"
 msgstr "derleme (hazýrlama ve derleme)"
 
-#: rpm.c:485
+#: rpm.c:487
 msgid "install (prep, compile, install)"
 msgstr "yükleme (hazýrlama, derleme, yükleme)"
 
-#: rpm.c:487
+#: rpm.c:489
 msgid "binary package (prep, compile, install, package)"
 msgstr ""
 "çalýþtýrýlabilir paket yaratma (hazýrlama, derleme, yükleme, paketleme)"
 
-#: rpm.c:489
+#: rpm.c:491
 msgid "bin/src package (prep, compile, install, package)"
 msgstr ""
 "çalýþtýrýlabilir ve Kaynak paket yaratmak (hazýrlama, derleme, yükleme "
 "vepaketleme)"
 
-#: rpm.c:495
+#: rpm.c:497
 msgid "remove sources and spec file when done"
 msgstr "iþlem sonunda kaynaklarý ve spec dosyasýný siler"
 
-#: rpm.c:497
+#: rpm.c:499
 #, fuzzy
 msgid "generate PGP/GPG signature"
 msgstr "PGP-imzasý yaratýr"
 
-#: rpm.c:498
+#: rpm.c:500
 #, fuzzy
 msgid "      --buildroot <dir>   "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:499
+#: rpm.c:501
 msgid "use <dir> as the build root"
 msgstr "paket yaratýlýrken <dizin> baþlangýç dizini olarak kullanýlýr"
 
-#: rpm.c:500
+#: rpm.c:502
 msgid "      --target=<platform>+"
 msgstr ""
 
-#: rpm.c:501
+#: rpm.c:503
 msgid "build the packages for the build targets platform1...platformN."
 msgstr ""
 
-#: rpm.c:503
+#: rpm.c:505
 msgid "do not execute any stages"
 msgstr "adýmlarýn hiçbirini çalýþtýrmaz"
 
-#: rpm.c:504
+#: rpm.c:506
 #, fuzzy
 msgid "      --timecheck <secs>  "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:505
+#: rpm.c:507
 #, fuzzy
 msgid "set the time check to <secs> seconds (0 disables)"
 msgstr "zaman kontrolünü S saniyeye ayarlar (0 ile tümüyle kaldýrýr)"
 
-#: rpm.c:507
+#: rpm.c:509
 msgid "    --rebuild <src_pkg>   "
 msgstr ""
 
-#: rpm.c:508
+#: rpm.c:510
 msgid ""
 "install source package, build binary package and remove spec file, sources, "
 "patches, and icons."
@@ -963,239 +963,239 @@ msgstr ""
 "kaynak paketini yükler, çalýþýr paketi oluþturur ve spec dosyasý, kaynaklar "
 "ile yamalarý siler"
 
-#: rpm.c:509
+#: rpm.c:511
 #, fuzzy
 msgid "    --rmsource <spec>     "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:510
+#: rpm.c:512
 msgid "remove sources and spec file"
 msgstr "kaynak dosyalarýný ve spec dosyasýný siler"
 
-#: rpm.c:511
+#: rpm.c:513
 msgid "    --recompile <src_pkg> "
 msgstr ""
 
-#: rpm.c:512
+#: rpm.c:514
 msgid "like --rebuild, but don't build any package"
 msgstr "--rebuild gibi, ama paket yaratmaz"
 
-#: rpm.c:513
+#: rpm.c:515
 #, fuzzy
 msgid "    --resign <pkg>+       "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:514
+#: rpm.c:516
 msgid "sign a package (discard current signature)"
 msgstr "paketi imzalar (mevcut imza kaldýrýlýr)"
 
-#: rpm.c:515
+#: rpm.c:517
 #, fuzzy
 msgid "    --addsign <pkg>+      "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:516
+#: rpm.c:518
 msgid "add a signature to a package"
 msgstr "pakete bir imza ekler"
 
-#: rpm.c:518
+#: rpm.c:520
 #, fuzzy
 msgid "    --checksig <pkg>+     "
 msgstr "    -b<adým> <spec>      "
 
-#: rpm.c:519
+#: rpm.c:521
 msgid "verify package signature"
 msgstr "paket imzasýný doðrular"
 
-#: rpm.c:521
+#: rpm.c:523
 msgid "skip any PGP signatures"
 msgstr "tüm PGP imzalarýný atlar"
 
-#: rpm.c:523
+#: rpm.c:525
 #, fuzzy
 msgid "skip any GPG signatures"
 msgstr "tüm PGP imzalarýný atlar"
 
-#: rpm.c:525
+#: rpm.c:527
 msgid "skip any MD5 signatures"
 msgstr "tüm MD5 imzalarýný atlar"
 
-#: rpm.c:527
+#: rpm.c:529
 msgid "list the tags that can be used in a query format"
 msgstr "sorgulama sýrasýnda kullanýlabilecek 'Tag'leri sýralar"
 
-#: rpm.c:529
+#: rpm.c:531
 msgid "make sure a valid database exists"
 msgstr "geçerli bir veri tabaný olmasýný saðlar"
 
-#: rpm.c:531
+#: rpm.c:533
 msgid "rebuild database from existing database"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: rpm.c:680 rpm.c:686 rpm.c:693 rpm.c:699 rpm.c:708 rpm.c:715 rpm.c:762
-#: rpm.c:768 rpm.c:802 rpm.c:808 rpm.c:814 rpm.c:822 rpm.c:863 rpm.c:918
-#: rpm.c:925
+#: rpm.c:682 rpm.c:688 rpm.c:695 rpm.c:701 rpm.c:710 rpm.c:717 rpm.c:764
+#: rpm.c:770 rpm.c:804 rpm.c:810 rpm.c:816 rpm.c:824 rpm.c:868 rpm.c:923
+#: rpm.c:930
 msgid "only one major mode may be specified"
 msgstr "sadece bir ana kip (major mode) belirtilebilir"
 
-#: rpm.c:701
+#: rpm.c:703
 msgid "-u and --uninstall are deprecated and no longer work.\n"
 msgstr "-u ve --uninstall komutlarý eskidirler ve çalýþmamaktadýrlar.\n"
 
-#: rpm.c:703
+#: rpm.c:705
 msgid "Use -e or --erase instead.\n"
 msgstr "Yerine  -e veya --erase komutunu kullanýn\n"
 
-#: rpm.c:719
+#: rpm.c:721
 msgid "--build (-b) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--build (-b) tek argüman olarak a,b,i,c,p,l harflerinden birini kabul eder"
 
-#: rpm.c:723
+#: rpm.c:725
 msgid "--tarbuild (-t) requires one of a,b,i,c,p,l as its sole argument"
 msgstr ""
 "--tarbuild (-t) tek argüman olarak a,b,i,c,p,l harflerinden birini kabul eder"
 
-#: rpm.c:775 rpm.c:781 rpm.c:788 rpm.c:795 rpm.c:932
+#: rpm.c:777 rpm.c:783 rpm.c:790 rpm.c:797 rpm.c:937
 msgid "one type of query/verify may be performed at a time"
 msgstr "bir anda sadece bir tarz sorgulama veya doðrulama yapýlabilir"
 
-#: rpm.c:832
+#: rpm.c:834
 msgid "arguments to --dbpath must begin with a /"
 msgstr "--dbpath için verilen argümanlar '/' ile baþlamalý"
 
-#: rpm.c:869
+#: rpm.c:874
 msgid "relocations must begin with a /"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: rpm.c:871
+#: rpm.c:876
 msgid "relocations must contain a ="
 msgstr "relocate satýrýnda = bulunmalý"
 
-#: rpm.c:874
+#: rpm.c:879
 msgid "relocations must have a / following the ="
 msgstr "relocate için = den sonra bir / gerekir"
 
-#: rpm.c:883
+#: rpm.c:888
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "relocate iþlemi / ile baþlamalý"
 
-#: rpm.c:892
+#: rpm.c:897
 #, c-format
 msgid "Internal error in argument processing (%d) :-(\n"
 msgstr ""
 
-#: rpm.c:943
+#: rpm.c:948
 msgid "--dbpath given for operation that does not use a database"
 msgstr "--dbpath veritabaný kullanýlmayan bir iþlemde belirtildi"
 
-#: rpm.c:947
+#: rpm.c:952
 msgid "--timecheck may only be used during package builds"
 msgstr "--timecheck sadece paket oluþturulurken kullanýlabilir"
 
-#: rpm.c:950
+#: rpm.c:955
 #, fuzzy
 msgid "unexpected query flags"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: rpm.c:953
+#: rpm.c:958
 #, fuzzy
 msgid "unexpected query format"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: rpm.c:956
+#: rpm.c:961
 msgid "unexpected query source"
 msgstr "beklenmeyen sorgulama kaynaðý girildi"
 
-#: rpm.c:962
+#: rpm.c:967
 #, fuzzy
 msgid "only installation, upgrading, rmsource and rmspec may be forced"
 msgstr "sadece yükleme ve güncelleme zorlanabilir (force edilebilir)"
 
-#: rpm.c:965
+#: rpm.c:970
 msgid "files may only be relocated during package installation"
 msgstr "dosyalar sadece paket yüklemesi sýrasýnda relocate edilebilir"
 
-#: rpm.c:968
+#: rpm.c:973
 msgid "only one of --prefix or --relocate may be used"
 msgstr "--prefix ve --relocate seçeneklerinden sadece biri kullanýlabilir"
 
-#: rpm.c:971
+#: rpm.c:976
 #, fuzzy
 msgid ""
 "--relocate and --excludepath may only be used when installing new packages"
 msgstr "--relocate sadece yeni paketler yüklenirken kullanýlýr"
 
-#: rpm.c:974
+#: rpm.c:979
 msgid "--prefix may only be used when installing new packages"
 msgstr "--prefix sadece yeni paketlerin yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:977
+#: rpm.c:982
 msgid "arguments to --prefix must begin with a /"
 msgstr "--prefix komutunun argümanlarý '/' ile baþlamalý"
 
-#: rpm.c:980
+#: rpm.c:985
 msgid "--hash (-h) may only be specified during package installation"
 msgstr "--hash (-h) sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:984
+#: rpm.c:989
 msgid "--percent may only be specified during package installation"
 msgstr "--percent sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:988
+#: rpm.c:993
 msgid "--replacefiles may only be specified during package installation"
 msgstr "--replacefiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:992
+#: rpm.c:997
 msgid "--replacepkgs may only be specified during package installation"
 msgstr "--replacepkgs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:996
+#: rpm.c:1001
 msgid "--excludedocs may only be specified during package installation"
 msgstr "--excludedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1000
+#: rpm.c:1005
 msgid "--includedocs may only be specified during package installation"
 msgstr "--includedocs sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1004
+#: rpm.c:1009
 msgid "only one of --excludedocs and --includedocs may be specified"
 msgstr ""
 "--excludedocs ve --includedocs bir arada kullanýlamaz (bi daha olmasýn)"
 
-#: rpm.c:1008
+#: rpm.c:1013
 msgid "--ignorearch may only be specified during package installation"
 msgstr "--ignorearch sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1012
+#: rpm.c:1017
 msgid "--ignoreos may only be specified during package installation"
 msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1016
+#: rpm.c:1021
 #, fuzzy
 msgid "--ignoresize may only be specified during package installation"
 msgstr "--ignoreos sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1020
+#: rpm.c:1025
 msgid "--allmatches may only be specified during package erasure"
 msgstr "--allmatches sadece paket silinmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1024
+#: rpm.c:1029
 msgid "--allfiles may only be specified during package installation"
 msgstr "--allfiles sadece paket yüklenmesi sýrasýnda kullanýlabilir"
 
-#: rpm.c:1028
+#: rpm.c:1033
 msgid "--justdb may only be specified during package installation and erasure"
 msgstr "--justdb sadece paket yükleme ve silmelerinde kullanýlýr"
 
-#: rpm.c:1033
+#: rpm.c:1038
 msgid ""
 "--noscripts may only be specified during package installation, erasure, and "
 "verification"
 msgstr "--noscripts sadece paket yükleme, silme ve doðrulamalarýnda kullanýlýr"
 
-#: rpm.c:1037
+#: rpm.c:1042
 #, fuzzy
 msgid ""
 "--notriggers may only be specified during package installation, erasure, and "
@@ -1203,7 +1203,7 @@ msgid ""
 msgstr ""
 "--nodeps sadece paket yüklemelerinde, silme ve doðrulamalarda kullanýlýr"
 
-#: rpm.c:1041
+#: rpm.c:1046
 #, fuzzy
 msgid ""
 "--nodeps may only be specified during package building, installation, "
@@ -1211,13 +1211,13 @@ msgid ""
 msgstr ""
 "--nodeps sadece paket yüklemelerinde, silme ve doðrulamalarda kullanýlýr"
 
-#: rpm.c:1045
+#: rpm.c:1050
 msgid ""
 "--test may only be specified during package installation, erasure, and "
 "building"
 msgstr "--test sadece paket yüklemelerinde, silme ve derlemelerinde kullanýlýr"
 
-#: rpm.c:1049
+#: rpm.c:1054
 msgid ""
 "--root (-r) may only be specified during installation, erasure, querying, "
 "and database rebuilds"
@@ -1225,126 +1225,126 @@ msgstr ""
 "--root (-r) sadece yükleme, silme, sorgulama ve veritabaný güncellemelerinde "
 "kullanýlýr"
 
-#: rpm.c:1061
+#: rpm.c:1066
 msgid "arguments to --root (-r) must begin with a /"
 msgstr "--root (-r) komutun argümanlarý '/' ile baþlamalý"
 
-#: rpm.c:1067
+#: rpm.c:1072
 msgid "--oldpackage may only be used during upgrades"
 msgstr "--oldpackage sadece güncelleme sýrasýnda kullanýlabilir"
 
-#: rpm.c:1072
+#: rpm.c:1077
 msgid ""
 "ftp options can only be used during package queries, installs, and upgrades"
 msgstr "FTP seçenekleri sadece sorgulama, yükleme ve güncellemede kullanýlýr"
 
-#: rpm.c:1078
+#: rpm.c:1083
 #, fuzzy
 msgid ""
 "http options can only be used during package queries, installs, and upgrades"
 msgstr "FTP seçenekleri sadece sorgulama, yükleme ve güncellemede kullanýlýr"
 
-#: rpm.c:1082
+#: rpm.c:1087
 msgid "--nopgp may only be used during signature checking"
 msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
 
-#: rpm.c:1085
+#: rpm.c:1090
 #, fuzzy
 msgid "--nogpg may only be used during signature checking"
 msgstr "--nopgp sadece Ýmza kontrolü sýrasýnda kullanýlabilir"
 
-#: rpm.c:1088
+#: rpm.c:1093
 #, fuzzy
 msgid ""
 "--nomd5 may only be used during signature checking and package verification"
 msgstr ""
 "--nopgp sadece imza kontrolü veya paket doðrulamasý sýrasýnda kullanýlýr"
 
-#: rpm.c:1112
+#: rpm.c:1121
 msgid "no files to sign\n"
 msgstr ""
 
-#: rpm.c:1117
+#: rpm.c:1126
 #, fuzzy, c-format
 msgid "cannot access file %s\n"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: rpm.c:1132
+#: rpm.c:1141
 #, fuzzy
 msgid "pgp not found: "
 msgstr "Dosya sunucuda bulunamadý"
 
-#: rpm.c:1136
+#: rpm.c:1145
 msgid "Enter pass phrase: "
 msgstr ""
 
-#: rpm.c:1138
+#: rpm.c:1147
 msgid "Pass phrase check failed\n"
 msgstr "Parola kontrolü baþarýsýzlýkla sonuçlandý\n"
 
-#: rpm.c:1141
+#: rpm.c:1150
 msgid "Pass phrase is good.\n"
 msgstr "Parola doðru.\n"
 
-#: rpm.c:1146
+#: rpm.c:1155
 msgid "Invalid %%_signature spec in macro file.\n"
 msgstr ""
 
-#: rpm.c:1152
+#: rpm.c:1161
 msgid "--sign may only be used during package building"
 msgstr "--sign sadece paket olusturulurken kullanýlabilir"
 
-#: rpm.c:1167
+#: rpm.c:1176
 #, fuzzy
 msgid "exec failed\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: rpm.c:1186
+#: rpm.c:1195
 msgid "unexpected arguments to --querytags "
 msgstr "--querytags için beklenmeyen argümanlar"
 
-#: rpm.c:1197
+#: rpm.c:1206
 msgid "no packages given for signature check"
 msgstr "imzasý kontrol edilecek paketler belirtilmedi"
 
-#: rpm.c:1208
+#: rpm.c:1217
 msgid "no packages given for signing"
 msgstr "imzalanacak paketler belirtilmedi"
 
-#: rpm.c:1220
+#: rpm.c:1229
 msgid "no packages files given for rebuild"
 msgstr "yeniden oluþturmak için paket dosyalarý belirtilmedi"
 
-#: rpm.c:1283
+#: rpm.c:1292
 msgid "no spec files given for build"
 msgstr "oluþturma için gerekli spec dosyasý belirtilmedi"
 
-#: rpm.c:1285
+#: rpm.c:1294
 msgid "no tar files given for build"
 msgstr "oluþturma için gereken tar dosyalarý belirttilmedi"
 
-#: rpm.c:1301
+#: rpm.c:1310
 msgid "no packages given for uninstall"
 msgstr "sistemden silinecek paketler belirtilmedi"
 
-#: rpm.c:1351
+#: rpm.c:1360
 msgid "no packages given for install"
 msgstr "yüklenecek paketler belirtilmedi"
 
-#: rpm.c:1374
+#: rpm.c:1383
 msgid "extra arguments given for query of all packages"
 msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
 
-#: rpm.c:1379
+#: rpm.c:1388
 msgid "no arguments given for query"
 msgstr "sorgulama için hiç argüman belirtilmedi"
 
-#: rpm.c:1396
+#: rpm.c:1405
 #, fuzzy
 msgid "extra arguments given for verify of all packages"
 msgstr "tüm paketlerin sorgulanmasý için fazladan argümanlar belirtildi"
 
-#: rpm.c:1400
+#: rpm.c:1409
 msgid "no arguments given for verify"
 msgstr "doðrulama için hiç argüman belirtilmedi"
 
@@ -1551,58 +1551,53 @@ msgstr "%s a
 msgid "File needs leading \"/\": %s"
 msgstr ""
 
-#: build/files.c:1116
-#, fuzzy, c-format
-msgid "File not found by glob: %s"
-msgstr "Dosya sunucuda bulunamadý"
-
-#: build/files.c:1207
+#: build/files.c:1154
 #, fuzzy
 msgid "Could not open %%files file %s: %s"
 msgstr "hata: %s dosyasý okunamadý\n"
 
-#: build/files.c:1214 build/pack.c:482
+#: build/files.c:1161 build/pack.c:482
 #, c-format
 msgid "line: %s"
 msgstr ""
 
-#: build/files.c:1557 build/parsePrep.c:30
+#: build/files.c:1504 build/parsePrep.c:30
 #, c-format
 msgid "Bad owner/group: %s"
 msgstr ""
 
 #. XXX this error message is probably not seen.
-#: build/files.c:1612
+#: build/files.c:1559
 #, fuzzy, c-format
 msgid "Couldn't exec %s: %s"
 msgstr "PGP çalýþtýrýlamadý"
 
-#: build/files.c:1617
+#: build/files.c:1564
 #, fuzzy, c-format
 msgid "Couldn't fork %s: %s"
 msgstr "Ýmza hedefi 'sigtarget' okunamadý"
 
-#: build/files.c:1699
+#: build/files.c:1646
 #, fuzzy, c-format
 msgid "%s failed"
 msgstr "PGP hata verdi"
 
-#: build/files.c:1703
+#: build/files.c:1650
 #, fuzzy, c-format
 msgid "failed to write all data to %s"
 msgstr "%s yaratýlamýyor\n"
 
-#: build/files.c:1792
+#: build/files.c:1739
 #, c-format
 msgid "Finding  %s: (using %s)...\n"
 msgstr ""
 
-#: build/files.c:1820 build/files.c:1829
+#: build/files.c:1767 build/files.c:1776
 #, fuzzy, c-format
 msgid "Failed to find %s:"
 msgstr "%s yaratýlamýyor\n"
 
-#: build/files.c:1935
+#: build/files.c:1882
 #, fuzzy, c-format
 msgid "Processing files: %s-%s-%s\n"
 msgstr "%s açýlamadý: %s"
@@ -2460,85 +2455,85 @@ msgstr ""
 msgid "cannot read header at %d for lookup"
 msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
 
-#: lib/macro.c:163
+#: lib/macro.c:161
 #, c-format
 msgid "======================== active %d empty %d\n"
 msgstr ""
 
 #. XXX just in case
-#: lib/macro.c:258
+#: lib/macro.c:256
 #, c-format
 msgid "%3d>%*s(empty)"
 msgstr ""
 
-#: lib/macro.c:293
+#: lib/macro.c:291
 #, c-format
 msgid "%3d<%*s(empty)\n"
 msgstr ""
 
-#: lib/macro.c:472
+#: lib/macro.c:470
 msgid "Macro %%%s has unterminated body"
 msgstr ""
 
-#: lib/macro.c:498
+#: lib/macro.c:496
 msgid "Macro %%%s has illegal name (%%define)"
 msgstr ""
 
-#: lib/macro.c:504
+#: lib/macro.c:502
 msgid "Macro %%%s has unterminated opts"
 msgstr ""
 
-#: lib/macro.c:509
+#: lib/macro.c:507
 msgid "Macro %%%s has empty body"
 msgstr ""
 
-#: lib/macro.c:514
+#: lib/macro.c:512
 msgid "Macro %%%s failed to expand"
 msgstr ""
 
-#: lib/macro.c:539
+#: lib/macro.c:537
 msgid "Macro %%%s has illegal name (%%undefine)"
 msgstr ""
 
-#: lib/macro.c:616
+#: lib/macro.c:614
 msgid "Macro %%%s (%s) was not used below level %d"
 msgstr ""
 
-#: lib/macro.c:713
+#: lib/macro.c:711
 #, c-format
 msgid "Unknown option %c in %s(%s)"
 msgstr ""
 
-#: lib/macro.c:893
+#: lib/macro.c:891
 #, c-format
 msgid "Recursion depth(%d) greater than max(%d)"
 msgstr ""
 
-#: lib/macro.c:959 lib/macro.c:975
+#: lib/macro.c:957 lib/macro.c:973
 #, c-format
 msgid "Unterminated %c: %s"
 msgstr ""
 
-#: lib/macro.c:1015
+#: lib/macro.c:1013
 msgid "A %% is followed by an unparseable macro"
 msgstr ""
 
-#: lib/macro.c:1141
+#: lib/macro.c:1139
 #, fuzzy
 msgid "Macro %%%.*s not found, skipping"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: lib/macro.c:1222
+#: lib/macro.c:1220
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/macro.c:1377 lib/macro.c:1382
+#: lib/macro.c:1400 lib/macro.c:1406
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: lib/macro.c:1385
+#: lib/macro.c:1409
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
@@ -3008,7 +3003,7 @@ msgstr ""
 msgid "opening database mode 0x%x in %s\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:157 lib/url.c:459
+#: lib/rpmdb.c:157 lib/url.c:442
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "%s açýlamadý: %s"
@@ -3273,7 +3268,7 @@ msgstr ""
 msgid "Unknown or unexpected error"
 msgstr "FTP bilinmeyen ya da beklenmeyen hata"
 
-#: lib/rpmio.c:1347
+#: lib/rpmio.c:1339
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3594,28 +3589,28 @@ msgstr ""
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:132
+#: lib/url.c:129
 #, c-format
 msgid "warning: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: lib/url.c:229
+#: lib/url.c:215
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "%s'%s için parola"
 
-#: lib/url.c:254 lib/url.c:280
+#: lib/url.c:240 lib/url.c:266
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "hata: ftpport bir sayý olmalý\n"
 
-#: lib/url.c:419
+#: lib/url.c:402
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "hata: ftpport bir sayý olmalý\n"
 
 #. XXX Fstrerror
-#: lib/url.c:499
+#: lib/url.c:459
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s yaratýlamýyor\n"
@@ -3649,6 +3644,10 @@ msgid "rpmVerify: rpmdbOpen() failed\n"
 msgstr "%s: Eriþilemedi\n"
 
 #, fuzzy
+#~ msgid "File not found by glob: %s"
+#~ msgstr "Dosya sunucuda bulunamadý"
+
+#, fuzzy
 #~ msgid "cannot create %s"
 #~ msgstr "%s dosyasý açýlamýyor: "
 
diff --git a/rpm.c b/rpm.c
index db860a9..0c4af64 100755 (executable)
--- a/rpm.c
+++ b/rpm.c
@@ -100,6 +100,8 @@ extern const char * rpmNAME;
 extern const char * rpmEVR;
 extern int rpmFLAGS;
 
+extern MacroContext rpmCLIMacroContext;
+
 static struct rpmQVArguments rpmQVArgs;
 static struct rpmBuildArguments rpmBArgs;
 
@@ -834,12 +836,14 @@ int main(int argc, const char ** argv)
            default:
                break;
            }
-           addMacro(NULL,"_dbpath", NULL, optArg, RMIL_CMDLINE);
+           addMacro(NULL, "_dbpath", NULL, optArg, RMIL_CMDLINE);
+           addMacro(&rpmCLIMacroContext, "_dbpath", NULL, optArg, RMIL_CMDLINE);
            gotDbpath = 1;
            break;
 
          case GETOPT_DEFINEMACRO:
            rpmDefineMacro(NULL, optArg, RMIL_CMDLINE);
+           rpmDefineMacro(&rpmCLIMacroContext, optArg, RMIL_CMDLINE);
            break;
 
          case GETOPT_EVALMACRO:
@@ -855,6 +859,7 @@ int main(int argc, const char ** argv)
                argerror("Argument to --timecheck must be integer");
            }
            addMacro(NULL, "_timecheck", NULL, optArg, RMIL_CMDLINE);
+           addMacro(&rpmCLIMacroContext, "_timecheck", NULL, optArg, RMIL_CMDLINE);
            timeCheck = 1;
            break;
 
@@ -1090,15 +1095,19 @@ int main(int argc, const char ** argv)
 
     if (ftpProxy) {
        addMacro(NULL, "_ftpproxy", NULL, ftpProxy, RMIL_CMDLINE);
+       addMacro(&rpmCLIMacroContext, "_ftpproxy", NULL, ftpProxy, RMIL_CMDLINE);
     }
     if (ftpPort) {
        addMacro(NULL, "_ftpport", NULL, ftpPort, RMIL_CMDLINE);
+       addMacro(&rpmCLIMacroContext, "_ftpport", NULL, ftpPort, RMIL_CMDLINE);
     }
     if (httpProxy) {
        addMacro(NULL, "_httpproxy", NULL, httpProxy, RMIL_CMDLINE);
+       addMacro(&rpmCLIMacroContext, "_httpproxy", NULL, httpProxy, RMIL_CMDLINE);
     }
     if (httpPort) {
        addMacro(NULL, "_httpport", NULL, httpPort, RMIL_CMDLINE);
+       addMacro(&rpmCLIMacroContext, "_httpport", NULL, httpPort, RMIL_CMDLINE);
     }
 
     if (signIt) {
@@ -1291,7 +1300,7 @@ int main(int argc, const char ** argv)
                        NULL, rcfile, force, noDeps);
            if (ec)
                break;
-           freeMacros(NULL);       /* XXX macros from CLI are destroyed too */
+           rpmFreeMacros(NULL);
            rpmReadConfigFiles(rcfile, NULL);
        }
        break;
@@ -1405,7 +1414,8 @@ int main(int argc, const char ** argv)
     }
 
     poptFreeContext(optCon);
-    freeMacros(NULL);
+    rpmFreeMacros(NULL);
+    rpmFreeMacros(&rpmCLIMacroContext);
     rpmFreeRpmrc();
 
     if (pipeChild) {
index 8443bdb..c9de5ff 100644 (file)
--- a/rpm.spec
+++ b/rpm.spec
@@ -2,7 +2,7 @@ Summary: The Red Hat package management system.
 Name: rpm
 %define version 3.0.4
 Version: %{version}
-Release: 0.12
+Release: 0.13
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-3.0.x/rpm-%{version}.tar.gz
 Copyright: GPL
index 4d965a7..41727b6 100644 (file)
@@ -31,7 +31,7 @@ static int _debug = 0;
 #define        urlPath(_xr, _r)        *(_r) = (_xr)
 
 typedef        FILE * FD_t;
-#define Fopen(_path, _fmode)   fopen(_path, "_r");
+#define Fopen(_path, _fmode)   fopen(_path, "r");
 #define        Ferror                  ferror
 #define Fstrerror(_fd)         strerror(errno)
 #define        Fread                   fread
@@ -47,7 +47,8 @@ typedef       FILE * FD_t;
 
 #include <rpmmacro.h>
 
-struct MacroContext globalMacroContext;
+struct MacroContext rpmGlobalMacroContext;
+struct MacroContext rpmCLIMacroContext;
 
 typedef struct MacroBuf {
        const char *s;          /* text to expand */
@@ -85,15 +86,12 @@ compareMacroName(const void *ap, const void *bp)
        MacroEntry *ame = *((MacroEntry **)ap);
        MacroEntry *bme = *((MacroEntry **)bp);
 
-       if (ame == NULL && bme == NULL) {
+       if (ame == NULL && bme == NULL)
                return 0;
-       }
-       if (ame == NULL) {
+       if (ame == NULL)
                return 1;
-       }
-       if (bme == NULL) {
+       if (bme == NULL)
                return -1;
-       }
        return strcmp(ame->name, bme->name);
 }
 
@@ -132,14 +130,14 @@ sortMacroTable(MacroContext *mc)
 }
 
 void
-dumpMacroTable(MacroContext * mc, FILE * fp)
+rpmDumpMacroTable(MacroContext * mc, FILE * fp)
 {
        int i;
        int nempty = 0;
        int nactive = 0;
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
        if (fp == NULL)
                fp = stderr;
     
@@ -171,7 +169,7 @@ findEntry(MacroContext *mc, const char *name, size_t namelen)
        char namebuf[1024];
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
        if (! mc->firstFree)
                return NULL;
 
@@ -1061,7 +1059,7 @@ expandMacro(MacroBuf *mb)
        }
 
        if (STREQ("dump", f, fn)) {
-               dumpMacroTable(mb->mc, NULL);
+               rpmDumpMacroTable(mb->mc, NULL);
                while (iseol(*se))
                        se++;
                s = se;
@@ -1201,7 +1199,7 @@ expandMacros(void *spec, MacroContext *mc, char *s, size_t slen)
        if (s == NULL || slen <= 0)
                return 0;
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        tbuf = alloca(slen + 1);
        memset(tbuf, 0, (slen + 1));
@@ -1233,7 +1231,7 @@ addMacro(MacroContext *mc, const char *n, const char *o, const char *b, int leve
        MacroEntry **mep;
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        /* If new name, expand macro table */
        if ((mep = findEntry(mc, n, 0)) == NULL) {
@@ -1256,7 +1254,7 @@ delMacro(MacroContext *mc, const char *n)
        MacroEntry **mep;
 
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
        /* If name exists, pop entry */
        if ((mep = findEntry(mc, n, 0)) != NULL) {
                popMacro(mep);
@@ -1272,20 +1270,40 @@ rpmDefineMacro(MacroContext *mc, const char *macro, int level)
        MacroBuf macrobuf, *mb = &macrobuf;
 
        /* XXX just enough to get by */
-       mb->mc = (mc ? mc : &globalMacroContext);
+       mb->mc = (mc ? mc : &rpmGlobalMacroContext);
        (void)doDefine(mb, macro, level, 0);
        return 0;
 }
 
+/* Load a macro context into rpmGlobalMacroContext */
 void
-initMacros(MacroContext *mc, const char *macrofiles)
+rpmLoadMacros(MacroContext * mc, int level)
+{
+       int i;
+
+       if (mc == NULL || mc == &rpmGlobalMacroContext)
+               return;
+
+       for (i = 0; i < mc->firstFree; i++) {
+               MacroEntry **mep, *me;
+               mep = &mc->macroTable[i];
+               me = *mep;
+
+               if (me == NULL)         /* XXX this should never happen */
+                       continue;
+               addMacro(NULL, me->name, me->opts, me->body, (level - 1));
+       }
+}
+
+void
+rpmInitMacros(MacroContext *mc, const char *macrofiles)
 {
        char *m, *mfile, *me;
 
        if (macrofiles == NULL)
                return;
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        for (mfile = m = xstrdup(macrofiles); *mfile; mfile = me) {
                FD_t fd;
@@ -1315,8 +1333,10 @@ initMacros(MacroContext *mc, const char *macrofiles)
                buf[sizeof(buf)-1] = '\0';
 
                fd = Fopen(buf, "r.fpio");
-               if (fd == NULL || Ferror(fd))
+               if (fd == NULL || Ferror(fd)) {
+                       if (fd) Fclose(fd);
                        continue;
+               }
 
                /* XXX Assume new fangled macro expansion */
                max_macro_depth = 16;
@@ -1336,15 +1356,18 @@ initMacros(MacroContext *mc, const char *macrofiles)
        }
        if (m)
                free(m);
+
+       /* Reload cmdline macros */
+       rpmLoadMacros(&rpmCLIMacroContext, RMIL_CMDLINE);
 }
 
 void
-freeMacros(MacroContext *mc)
+rpmFreeMacros(MacroContext *mc)
 {
        int i;
     
        if (mc == NULL)
-               mc = &globalMacroContext;
+               mc = &rpmGlobalMacroContext;
 
        for (i = 0; i < mc->firstFree; i++) {
                MacroEntry *me;
@@ -1375,6 +1398,7 @@ int isCompressed(const char *file, int *compressed)
     if (fd == NULL || Ferror(fd)) {
        /* XXX Fstrerror */
        rpmError(RPMERR_BADSPEC, _("File %s: %s"), file, Fstrerror(fd));
+       if (fd) Fclose(fd);
        return 1;
     }
     nb = Fread(magic, sizeof(char), sizeof(magic), fd);
@@ -1651,7 +1675,7 @@ main(int argc, char *argv[])
            exit(1);
        }
 
-       initMacros(NULL, macrofiles);
+       rpmInitMacros(NULL, macrofiles);
        for ( ; optind < argc; optind++) {
            const char *val;
 
@@ -1661,6 +1685,7 @@ main(int argc, char *argv[])
                xfree(val);
            }
        }
+       rpmFreeMacros(NULL);
        return 0;
 }
 
@@ -1676,8 +1701,8 @@ main(int argc, char *argv[])
        FILE *fp;
        int x;
 
-       initMacros(NULL, macrofiles);
-       dumpMacroTable(NULL, NULL);
+       rpmInitMacros(NULL, macrofiles);
+       rpmDumpMacroTable(NULL, NULL);
 
        if ((fp = fopen(testfile, "r")) != NULL) {
                while(rdcl(buf, sizeof(buf), fp, 1)) {
@@ -1693,6 +1718,7 @@ main(int argc, char *argv[])
                fprintf(stderr, "%d->%s\n <-\n", x, buf);
                memset(buf, 0, sizeof(buf));
        }
+       rpmFreeMacros(NULL);
 
        return 0;
 }
index 9ad1e5d..5537c32 100644 (file)
@@ -33,7 +33,7 @@ typedef /*@abstract@*/ struct MacroContext {
 extern "C" {
 #endif
 
-void   dumpMacroTable  (MacroContext * mc, FILE * fp);
+void   rpmDumpMacroTable       (MacroContext * mc, FILE * fp);
 
 /* XXX this is used only in build/expression.c and will go away. */
 const char *getMacroBody (MacroContext *mc, const char *name);
@@ -45,8 +45,9 @@ void  addMacro        (MacroContext * mc, const char * n, const char * o,
 void   delMacro        (MacroContext * mc, const char * n);
 
 int    rpmDefineMacro  (MacroContext * mc, const char * macro, int level);
-void   initMacros      (MacroContext * mc, const char * macrofile);
-void   freeMacros      (MacroContext * mc);
+void   rpmLoadMacros   (MacroContext *mc, int level);
+void   rpmInitMacros   (MacroContext * mc, const char * macrofiles);
+void   rpmFreeMacros   (MacroContext * mc);
 
 #define COMPRESSED_NOT   0
 #define COMPRESSED_OTHER 1