- add cscope/ctags (Rodrigo Barbosa<rodrigob@conectiva.com.br>).
authorjbj <devnull@localhost>
Sat, 28 Oct 2000 17:16:25 +0000 (17:16 +0000)
committerjbj <devnull@localhost>
Sat, 28 Oct 2000 17:16:25 +0000 (17:16 +0000)
- remove getMacroBody() from rpmio API.
- hide libio lossage in prototype, not API.
lclint annotations.

CVS patchset: 4230
CVS date: 2000/10/28 17:16:25

64 files changed:
CHANGES
Makefile.am
build/expression.c
configure.in
lib/cpio.c
lib/db3.c
lib/depends.c
lib/depends.h
lib/falloc.c
lib/formats.c
lib/fprint.h
lib/fs.c
lib/header.c
lib/header.h
lib/install.c
lib/md5sum.c
lib/misc.c
lib/package.c
lib/problems.c
lib/query.c
lib/rpmchecksig.c
lib/rpmdb.c
lib/rpmdb.h
lib/rpminstall.c
lib/rpmlib.h
lib/signature.c
lib/transaction.c
lib/verify.c
po/cs.po
po/da.po
po/de.po
po/es.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
rpmio/macro.c
rpmio/rpmio.c
rpmio/rpmio.h
rpmio/rpmio_internal.h
rpmio/rpmlog.h
rpmio/rpmmacro.h
scripts/Makefile.in

diff --git a/CHANGES b/CHANGES
index 0c7d8ac..889b8ba 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -17,6 +17,9 @@
        - pass rpmTransactionSet, not elements, to installBinaryPackage et al.
        - verify MD5 sums of payload files when unpacking archive.
        - fix: runTriggers was not adding countCorrection.
+       - add cscope/ctags (Rodrigo Barbosa<rodrigob@conectiva.com.br>).
+       - remove getMacroBody() from rpmio API.
+       - hide libio lossage in prototype, not API.
 
 3.0.6 -> 4.0
        - use DIRNAMES/BASENAMES/DIRINDICES not FILENAMES in packages and db.
index ba58257..178182f 100644 (file)
@@ -182,3 +182,11 @@ doxygen: Doxyfile
        rm -rf doxygen
        mkdir -p doxygen
        doxygen
+
+ctags:
+       find . -type f -name "*.[ch]*" | xargs @CTAGS@
+
+cscope:
+       @CSCOPE@ -b -R
+
+cref: ctags cscope
index 4bd9be7..95ad308 100644 (file)
@@ -49,13 +49,13 @@ static Value valueMakeInteger(int i)
   return v;
 }
 
-static Value valueMakeString(const char *s)
+static Value valueMakeString(/*@only@*/ const char *s)
 {
   Value v;
 
   v = (Value) xmalloc(sizeof(struct _value));
   v->type = VALUE_TYPE_STRING;
-  v->data.s = xstrdup(s);
+  v->data.s = s;
   return v;
 }
 
@@ -269,7 +269,7 @@ static int rdToken(ParseState state)
       p--;
 
       token = TOK_IDENTIFIER;
-      v = valueMakeString(temp);
+      v = valueMakeString( xstrdup(temp) );
 
     } else if (*p == '\"') {
       char temp[EXPRBUFSIZ], *t = temp;
@@ -279,10 +279,8 @@ static int rdToken(ParseState state)
        *t++ = *p++;
       *t++ = '\0';
 
-      expandMacros(state->spec, state->spec->macros, temp, sizeof(temp));
-
       token = TOK_STRING;
-      v = valueMakeString(temp);
+      v = valueMakeString( rpmExpand(temp, NULL) );
 
     } else {
       rpmError(RPMERR_BADSPEC, _("parse error in expression"));
@@ -328,15 +326,8 @@ static Value doPrimary(ParseState state)
 
   case TOK_IDENTIFIER: {
     char *name = state->tokenValue->data.s;
-    const char *body;
-
-    body = getMacroBody(state->spec->macros, name);
-    if (!body) {
-      rpmError(RPMERR_BADSPEC, _("undefined identifier"));
-      return NULL;
-    }
 
-    v = valueMakeString(body);
+    v = valueMakeString( rpmExpand(name, NULL) );
     if (rdToken(state))
       return NULL;
     break;
@@ -472,12 +463,10 @@ static Value doAddSubtract(ParseState state)
       }
 
       copy = xmalloc(strlen(v1->data.s) + strlen(v2->data.s) + 1);
-      strcpy(copy, v1->data.s);
-      strcat(copy, v2->data.s);
+      (void) stpcpy( stpcpy(copy, v1->data.s), v2->data.s);
 
       valueFree(v1);
       v1 = valueMakeString(copy);
-      free(copy);
     }
   }
 
index 16ce916..e207991 100644 (file)
@@ -30,6 +30,9 @@ AC_PROG_CPP
 AC_PROG_GCC_TRADITIONAL
 AC_PROG_INSTALL
 
+AC_PATH_PROG(CTAGS, ctags, /bin/true)
+AC_PATH_PROG(CSCOPE, cscope, /bin/true)
+
 dnl
 dnl This now uses libtool. Put
 dnl    LDFLAGS_STATIC="-all"
index 2f36e9a..7fab884 100644 (file)
@@ -10,6 +10,7 @@
 #include "system.h"
 
 #include "cpio.h"
+/*@access FD_t@*/
 
 #define        xfree(_p)       free((void *)_p)
 
@@ -487,16 +488,18 @@ static int expandRegular(FD_t cfd, const struct cpioHeader * hdr,
     }
 
     if (filemd5) {
-       const char * md5sum;
+       const char * md5sum = NULL;
 
        Fflush(ofd);
        fdFiniMD5(ofd, (void **)&md5sum, NULL, 1);
 
-       if (strcmp(md5sum, filemd5))
+       if (md5sum == NULL) {
            rc = CPIOERR_MD5SUM_MISMATCH;
-
-       if (md5sum)
+       } else {
+           if (strcmp(md5sum, filemd5))
+               rc = CPIOERR_MD5SUM_MISMATCH;
            xfree(md5sum);
+       }
     }
 
     Fclose(ofd);
index 78c51ac..c9c9eac 100644 (file)
--- a/lib/db3.c
+++ b/lib/db3.c
@@ -342,7 +342,7 @@ dbiIndex db3New(rpmdb rpmdb, int rpmtag)
     return dbi;
 }
 
-static const char *const prDbiOpenFlags(int dbflags, int print_dbenv_flags)
+static /*@exposed@*/ const char *const prDbiOpenFlags(int dbflags, int print_dbenv_flags)
 {
     static char buf[256];
     struct dbOption *opt;
@@ -822,8 +822,8 @@ static int db3cdel(dbiIndex dbi, DBC * dbcursor,
 }
 
 static int db3cget(dbiIndex dbi, DBC * dbcursor,
-               /*@out@*/ void ** keyp, /*@out@*/ size_t * keylen,
-               /*@out@*/ void ** datap, /*@out@*/ size_t * datalen,
+               void ** keyp, size_t * keylen,
+               void ** datap, size_t * datalen,
                /*@unused@*/ unsigned int flags)
 {
     DB * db = dbi->dbi_db;
index 78879fa..aec981e 100644 (file)
@@ -12,6 +12,10 @@ int _depends_debug = 0;
 #include "rpmdb.h"
 #include "misc.h"
 
+/*@access dbiIndex@*/          /* XXX compared with NULL */
+/*@access dbiIndexSet@*/       /* XXX compared with NULL */
+/*@access Header@*/            /* XXX compared with NULL */
+/*@access rpmdb@*/             /* XXX compared with NULL */
 /*@access rpmTransactionSet@*/
 
 int headerNVR(Header h, const char **np, const char **vp, const char **rp)
index a45cd8f..dc58791 100644 (file)
@@ -17,7 +17,7 @@ struct tsortInfo {
     } tsi_u;
 #define        tsi_count       tsi_u.count
 #define        tsi_suc         tsi_u.suc
-/*@owned@*/ struct tsortInfo *tsi_next;
+/*@owned@*/ struct tsortInfo * tsi_next;
 /*@dependent@*/ struct availablePackage * tsi_pkg;
     int                tsi_reqx;
 };
@@ -122,8 +122,8 @@ struct transactionElement {
 struct rpmTransactionSet_s {
     rpmtransFlags transFlags;          /*!< Bit(s) to control operation. */
     rpmCallbackFunction notify;                /*!< Callback function. */
-    rpmCallbackData notifyData;                /*!< Callback private data. */
-    rpmProblemSet probs;               /*!< Current problems in transaction. */
+/*@observer@*/ rpmCallbackData notifyData;/*!< Callback private data. */
+/*@dependent@*/ rpmProblemSet probs;   /*!< Current problems in transaction. */
     rpmprobFilterFlags ignoreSet;      /*!< Bits to filter current problems. */
 /*@owned@*/ /*@null@*/ rpmdb rpmdb;    /*!< Database handle. */
 /*@only@*/ int * removedPackages;      /*!< Set of packages being removed. */
index c532d86..1652ccd 100644 (file)
@@ -42,7 +42,7 @@ struct faFooter {
 /* =============================================================== */
 static struct FDIO_s fadio_s = {
   NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
-  fadOpen, NULL, NULL, NULL, NULL, NULL, NULL, NULL
+  fadOpen, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
 };
 FDIO_t fadio = /*@-compmempass@*/ &fadio_s /*@=compmempass@*/ ;
 /* =============================================================== */
index 32b3ec2..88c256f 100644 (file)
@@ -236,7 +236,7 @@ static int fsnamesTag( /*@unused@*/ Header h, /*@out@*/ int_32 * type,
 static int instprefixTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     char ** array;
 
@@ -266,7 +266,7 @@ static int instprefixTag(Header h, /*@out@*/ int_32 * type,
 static int fssizesTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     const char ** filenames;
     int_32 * filesizes;
@@ -317,7 +317,7 @@ static int fssizesTag(Header h, /*@out@*/ int_32 * type,
 static int triggercondsTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     int_32 * indices, * flags;
     char ** names, ** versions;
@@ -387,7 +387,7 @@ static int triggercondsTag(Header h, /*@out@*/ int_32 * type,
 static int triggertypeTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     int_32 * indices, * flags;
     char ** conds, ** s;
@@ -468,7 +468,7 @@ static char * _macro_i18ndomains = "%{?_i18ndomains:%{_i18ndomains}}";
 static int i18nTag(Header h, int_32 tag, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     char * dstring = rpmExpand(_macro_i18ndomains, NULL);
     int rc;
@@ -552,7 +552,7 @@ static int i18nTag(Header h, int_32 tag, /*@out@*/ int_32 * type,
 static int summaryTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     return i18nTag(h, RPMTAG_SUMMARY, type, data, count, freeData);
 }
@@ -568,7 +568,7 @@ static int summaryTag(Header h, /*@out@*/ int_32 * type,
 static int descriptionTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     return i18nTag(h, RPMTAG_DESCRIPTION, type, data, count, freeData);
 }
@@ -584,7 +584,7 @@ static int descriptionTag(Header h, /*@out@*/ int_32 * type,
 static int groupTag(Header h, /*@out@*/ int_32 * type,
        /*@out@*/ const void ** data, /*@out@*/ int_32 * count,
        /*@out@*/ int * freeData)
-               /*@modifies *type, *data, *count, *freeData @*/
+               /*@modifies h, *type, *data, *count, *freeData @*/
 {
     return i18nTag(h, RPMTAG_GROUP, type, data, count, freeData);
 }
index e7ffb24..e552664 100644 (file)
@@ -127,7 +127,7 @@ void fpLookupList(fingerPrintCache cache, const char ** dirNames,
  * @retval fpList      pointer to array of finger prints
  */
 void fpLookupHeader(fingerPrintCache cache, Header h, fingerPrint * fpList)
-       /*@modifies cache, *fpList @*/;
+       /*@modifies h, cache, *fpList @*/;
 
 #ifdef __cplusplus
 }
index fac7075..d7bff8d 100644 (file)
--- a/lib/fs.c
+++ b/lib/fs.c
@@ -230,7 +230,7 @@ int rpmGetFilesystemList(const char *** listptr, int * num)
 }
 
 int rpmGetFilesystemUsage(const char ** fileList, int_32 * fssizes, int numFiles,
-                         uint_32 ** usagesPtr, /*@unused@*/int flags)
+                         uint_32 ** usagesPtr, /*@unused@*/ int flags)
 {
     int_32 * usages;
     int i, len, j;
index 7b59918..569c21d 100644 (file)
@@ -1,8 +1,9 @@
 /** \ingroup header
  * \file lib/header.c
+ *
  */
 
-/* RPM - Copyright (C) 1995 Red Hat Software */
+/* RPM - Copyright (C) 1995-2000 Red Hat Software */
 
 /* Data written to file descriptors is in network byte order.    */
 /* Data read from file descriptors is expected to be in          */
@@ -584,6 +585,7 @@ Header headerRead(FD_t fd, enum hMagic magicp)
     int totalSize;
     int i;
 
+    memset(block, 0, sizeof(block));
     i = 2;
     if (magicp == HEADER_MAGIC_YES)
        i += 2;
@@ -1171,9 +1173,13 @@ int headerAddI18NString(Header h, int_32 tag, const char * string, const char *
        errmsg_t charArray[2];
        int count = 0;
        if (!lang || (lang[0] == 'C' && lang[1] == '\0')) {
+           /*@-observertrans@*/
            charArray[count++] = "C";
+           /*@=observertrans@*/
        } else {
+           /*@-observertrans@*/
            charArray[count++] = "C";
+           /*@=observertrans@*/
            charArray[count++] = lang;
        }
        if (!headerAddEntry(h, HEADER_I18NTABLE, RPM_STRING_ARRAY_TYPE, 
@@ -1470,6 +1476,7 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
     format = xcalloc(numTokens, sizeof(*format));
     if (endPtr) *endPtr = NULL;
 
+    /*@-infloops@*/
     dst = start = str;
     currToken = -1;
     while (*start) {
@@ -1515,7 +1522,9 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
            chptr = start;
            while (*chptr && *chptr != '{' && *chptr != '%') chptr++;
            if (!*chptr || *chptr == '%') {
+               /*@-observertrans@*/
                *errmsg = _("missing { after %");
+               /*@=observertrans@*/
                freeFormat(format, numTokens);
                return 1;
            }
@@ -1543,7 +1552,9 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
            next = start;
            while (*next && *next != '}') next++;
            if (!*next) {
+               /*@-observertrans@*/
                *errmsg = _("missing } after %{");
+               /*@=observertrans@*/
                freeFormat(format, numTokens);
                return 1;
            }
@@ -1555,7 +1566,9 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
            if (*chptr) {
                *chptr++ = '\0';
                if (!*chptr) {
+                   /*@-observertrans@*/
                    *errmsg = _("empty tag format");
+                   /*@=observertrans@*/
                    freeFormat(format, numTokens);
                    return 1;
                }
@@ -1565,7 +1578,9 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
            }
            
            if (!*start) {
+               /*@-observertrans@*/
                *errmsg = _("empty tag name");
+               /*@=observertrans@*/
                freeFormat(format, numTokens);
                return 1;
            }
@@ -1580,7 +1595,9 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
                format[currToken].u.tag.ext = ext->u.tagFunction;
                format[currToken].u.tag.extNum = ext - extensions;
            } else {
+               /*@-observertrans@*/
                *errmsg = _("unknown tag");
+               /*@=observertrans@*/
                freeFormat(format, numTokens);
                return 1;
            }
@@ -1605,7 +1622,9 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
            }
 
            if (!start) {
+               /*@-observertrans@*/
                *errmsg = _("] expected at end of array");
+               /*@=observertrans@*/
                freeFormat(format, numTokens);
                return 1;
            }
@@ -1621,9 +1640,13 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
            if ((*start == ']' && state != PARSER_IN_ARRAY) ||
                (*start == '}' && state != PARSER_IN_EXPR)) {
                if (*start == ']')
+                   /*@-observertrans@*/
                    *errmsg = _("unexpected ]");
+                   /*@=observertrans@*/
                else
+                   /*@-observertrans@*/
                    *errmsg = _("unexpected }");
+                   /*@=observertrans@*/
                freeFormat(format, numTokens);
                return 1;
            }
@@ -1650,6 +1673,7 @@ static int parseFormat(char * str, const struct headerTagTableEntry * tags,
        if (done)
            break;
     }
+    /*@=infloops@*/
 
     *dst = '\0';
 
@@ -1669,7 +1693,6 @@ static int parseExpression(struct sprintfToken * token, char * str,
        const struct headerTagTableEntry * tags, 
        const struct headerSprintfExtension * extensions,
        /*@out@*/ char ** endPtr, /*@out@*/ errmsg_t * errmsg)
-               /*@modifies str, *str, *token, *endPtr, *errmsg @*/
 {
     const struct headerTagTableEntry * tag;
     const struct headerSprintfExtension * ext;
@@ -1681,14 +1704,18 @@ static int parseExpression(struct sprintfToken * token, char * str,
     while (*chptr && *chptr != '?') chptr++;
 
     if (*chptr != '?') {
+       /*@-observertrans@*/
        *errmsg = _("? expected in expression");
+       /*@=observertrans@*/
        return 1;
     }
 
     *chptr++ = '\0';;
 
     if (*chptr != '{') {
+       /*@-observertrans@*/
        *errmsg = _("{ expected after ? in expression");
+       /*@=observertrans@*/
        return 1;
     }
 
@@ -1699,7 +1726,9 @@ static int parseExpression(struct sprintfToken * token, char * str,
        return 1;
 
     if (!*end) {
+       /*@-observertrans@*/
        *errmsg = _("} expected in expression");
+       /*@=observertrans@*/
        freeFormat(token->u.cond.ifFormat, token->u.cond.numIfTokens);
        token->u.cond.ifFormat = NULL;
        return 1;
@@ -1707,7 +1736,9 @@ static int parseExpression(struct sprintfToken * token, char * str,
 
     chptr = end;
     if (*chptr != ':' && *chptr != '|') {
+       /*@-observertrans@*/
        *errmsg = _(": expected following ? subexpression");
+       /*@=observertrans@*/
        freeFormat(token->u.cond.ifFormat, token->u.cond.numIfTokens);
        token->u.cond.ifFormat = NULL;
        return 1;
@@ -1721,7 +1752,9 @@ static int parseExpression(struct sprintfToken * token, char * str,
        chptr++;
 
        if (*chptr != '{') {
+           /*@-observertrans@*/
            *errmsg = _("{ expected after : in expression");
+           /*@=observertrans@*/
            freeFormat(token->u.cond.ifFormat, token->u.cond.numIfTokens);
            token->u.cond.ifFormat = NULL;
            return 1;
@@ -1734,7 +1767,9 @@ static int parseExpression(struct sprintfToken * token, char * str,
                        errmsg)) 
            return 1;
        if (!*end) {
+           /*@-observertrans@*/
            *errmsg = _("} expected in expression");
+           /*@=observertrans@*/
            freeFormat(token->u.cond.ifFormat, token->u.cond.numIfTokens);
            token->u.cond.ifFormat = NULL;
            return 1;
@@ -1742,7 +1777,9 @@ static int parseExpression(struct sprintfToken * token, char * str,
 
        chptr = end;
        if (*chptr != '|') {
+           /*@-observertrans@*/
            *errmsg = _("| expected at end of expression");
+           /*@=observertrans@*/
            freeFormat(token->u.cond.ifFormat, token->u.cond.numIfTokens);
            token->u.cond.ifFormat = NULL;
            freeFormat(token->u.cond.elseFormat, token->u.cond.numElseTokens);
@@ -1826,7 +1863,9 @@ static char * formatValue(struct sprintfTag * tag, Header h,
     }
 
     if (tag->arrayCount) {
+       /*@-observertrans -modobserver@*/
        if (type == RPM_STRING_ARRAY_TYPE) free((void *)data);
+       /*@=observertrans =modobserver@*/
 
        countBuf = count;
        data = &countBuf;
@@ -1868,7 +1907,9 @@ static char * formatValue(struct sprintfTag * tag, Header h,
            sprintf(val, buf, strarray[element]);
        }
 
+       /*@-observertrans -modobserver@*/
        if (mayfree) free((void *)data);
+       /*@=observertrans =modobserver@*/
 
        break;
 
@@ -1894,7 +1935,7 @@ static char * formatValue(struct sprintfTag * tag, Header h,
        case RPM_INT8_TYPE:     intVal = *(((int_8 *) data) + element); break;
        case RPM_INT16_TYPE:    intVal = *(((uint_16 *) data) + element); break;
        default:                /* keep -Wall quiet */
-       case RPM_INT32_TYPE:    intVal = *(((int_32 *) data) + element);
+       case RPM_INT32_TYPE:    intVal = *(((int_32 *) data) + element); break;
        }
 
        if (tagtype)
index d57a2c3..f11beac 100644 (file)
@@ -1,16 +1,71 @@
 #ifndef H_HEADER
 #define H_HEADER
 
-/** \file lib/header.h
+/** \ingroup header
+ * \file lib/header.h
  *
- */
-
-/* RPM - Copyright (C) 1995 Red Hat Software */
+ * An rpm header carries all information about a package. A header is
+ * a collection of data elements called tags. Each tag has a data type,
+ * and includes 1 or more values.
+ * 
+ * \par Historical Issues
+ *
+ * Here's a brief description of features/incompatibilities that
+ * have been added to headers and tags.
+ *
+ * - version 1
+ *     - Support for version 1 headers was removed in rpm-4.0.
+ *
+ * - version 2
+ *     - (Before my time, sorry.)
+ *
+ * - version 3 (added in rpm-3.0)
+ *     - added RPM_I18NSTRING_TYPE as an associative array reference
+ *       for i18n locale dependent single element tags (i.e Group).
+ *     - added an 8 byte magic string to headers in packages on-disk. The
+ *       magic string was not added to headers in the database.
+ *
+ * - version 4 (added in rpm-4.0)
+ *     - represent file names as a (dirname/basename/dirindex) triple
+ *       rather than as an absolute path name. Legacy package headers are
+ *       converted when the header is read. Legacy database headers are
+ *       converted when the database is rebuilt.
+ *     - Simplify dependencies by eliminating the implict check on
+ *       package name/version/release in favor of an explict check
+ *       on package provides. Legacy package headers are converted
+ *       when the header is read. Legacy database headers are
+ *        converted when the database is rebuilt.
+ *
+ * .
+ *
+ * \par Development Issues
+ *
+ * Here's a brief description of future features/incompatibilities that
+ * will be added to headers.
+ *
+ * - Signature tags
+ *     - Signatures are stored in A header, but not THE header
+ *       of a package. That means that signatures are discarded
+ *       when a package is installed, preventing verification
+ *       of header contents after install. All signature tags
+ *       will be added to THE package header so that they are
+ *       saved in the rpm database for later retrieval and verification.
+ *       Adding signatures to THE header will also permit signatures to
+ *       be accessed by Red Hat Network, i.e. retrieval by existing
+ *       Python bindings.
+ *     - Signature tag values collide with existing rpm tags, and will
+ *       have to be renumbered. Part of this renumbering was accomplished
+ *       in rpm-4.0, but more remains to be done.
+ *     - Signatures, because they involve MD5 and other 1-way hashes on
+ *       immutable data, will cause the header to be reconstituted as a
+ *       immutable section and a mutable section.
+ */
+
+/* RPM - Copyright (C) 1995-2000 Red Hat Software */
 
 /* WARNING: 1 means success, 0 means failure (yes, this is backwards) */
 
 #include <stdio.h>
-#include <zlib.h>
 
 #ifdef __cplusplus
 extern "C" {
@@ -38,11 +93,11 @@ typedef unsigned int uint_32;
 typedef unsigned short uint_16;
 #endif
 
-/** !ingroup header
+/** \ingroup header
  */
 typedef /*@abstract@*/ /*@refcounted@*/ struct headerToken *Header;
 
-/** !ingroup header
+/** \ingroup header
  */
 typedef /*@abstract@*/ struct headerIteratorS *HeaderIterator;
 
@@ -198,7 +253,7 @@ void headerDump(Header h, FILE *f, int flags,
                const struct headerTagTableEntry * tags);
 #define HEADER_DUMP_INLINE   1
 
-typedef /*@observer@*/ const char * errmsg_t;
+typedef const char * errmsg_t;
 
 /** \ingroup header
  * Return formatted output string from header tags.
@@ -431,14 +486,11 @@ void headerSort(Header h)
 void headerCopyTags(Header headerFrom, Header headerTo, int_32 *tagstocopy)
        /*@modifies headerFrom, headerTo @*/;
 
-/* Entry Types */
-
-#define        RPM_MIN_TYPE            0
-
-/**
+/** \ingroup header
  * @todo Add RPM_XREF_TYPE to carry (hdrNum,tagNum,valNum) cross reference.
  */
 typedef enum rpmTagType_e {
+#define        RPM_MIN_TYPE            0
        RPM_NULL_TYPE           = 0,
        RPM_CHAR_TYPE           = 1,
        RPM_INT8_TYPE           = 2,
@@ -449,9 +501,9 @@ typedef enum rpmTagType_e {
        RPM_BIN_TYPE            = 7,
        RPM_STRING_ARRAY_TYPE   = 8,
        RPM_I18NSTRING_TYPE     = 9
+#define        RPM_MAX_TYPE            9
 } rpmTagType;
 
-#define        RPM_MAX_TYPE            9
 
 /* Tags -- general use tags should start at 1000 (RPM's tag space starts
    there) */
index 6cc4b04..a9222cd 100644 (file)
@@ -14,6 +14,8 @@
 #include "misc.h"
 #include <assert.h>
 
+/*@access Header@*/            /* XXX compared with NULL */
+
 /**
  * Private data for cpio callback.
  */
@@ -901,7 +903,7 @@ int rpmVersionCompare(Header first, Header second)
     return rpmvercmp(one, two);
 }
 
-const char *const fileActionString(enum fileActions a)
+/*@obserever@*/ const char *const fileActionString(enum fileActions a)
 {
     switch (a) {
       case FA_UNKNOWN: return "unknown";
index 692e26b..7ae359e 100644 (file)
@@ -30,6 +30,7 @@ static int domd5(const char * fn, unsigned char * digest, int asAscii,
     MD5_CTX ctx;
     int n;
 
+    memset(bindigest, 0, sizeof(bindigest));
     fp = fopen(fn, "r");
     if (!fp) {
        return 1;
@@ -49,10 +50,22 @@ static int domd5(const char * fn, unsigned char * digest, int asAscii,
     } else {
        sprintf(digest, "%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x%02x"
                        "%02x%02x%02x%02x%02x",
-               bindigest[0],  bindigest[1],  bindigest[2],  bindigest[3],
-               bindigest[4],  bindigest[5],  bindigest[6],  bindigest[7],
-               bindigest[8],  bindigest[9],  bindigest[10], bindigest[11],
-               bindigest[12], bindigest[13], bindigest[14], bindigest[15]);
+               (unsigned)bindigest[0],
+               (unsigned)bindigest[1],
+               (unsigned)bindigest[2],
+               (unsigned)bindigest[3],
+               (unsigned)bindigest[4],
+               (unsigned)bindigest[5],
+               (unsigned)bindigest[6],
+               (unsigned)bindigest[7],
+               (unsigned)bindigest[8],
+               (unsigned)bindigest[9],
+               (unsigned)bindigest[10],
+               (unsigned)bindigest[11],
+               (unsigned)bindigest[12],
+               (unsigned)bindigest[13],
+               (unsigned)bindigest[14],
+               (unsigned)bindigest[15]);
 
     }
     fclose(fp);
index 7594248..76a6cae 100644 (file)
@@ -12,6 +12,9 @@ static int _debug = 0;
 
 #include "misc.h"
 
+/*@access Header@*/            /* XXX compared with NULL */
+/*@access FD_t@*/              /* XXX compared with NULL */
+
 char * RPMVERSION = VERSION;   /* just to put a marker in librpm.a */
 
 char ** splitString(const char * str, int length, char sep)
index e4702df..c7f0330 100644 (file)
@@ -19,6 +19,8 @@
 #include "rpmlead.h"
 #include "signature.h"
 
+/*@access Header@*/            /* XXX compared with NULL */
+
 /**
  * Retrieve package components from file handle.
  * @param fd           file handle
@@ -27,9 +29,9 @@
  * @param hdrPtr       address of header (or NULL)
  * @return             0 on success, 1 on bad magic, 2 on error
  */
-static int readPackageHeaders(FD_t fd, /*@out@*/struct rpmlead * leadPtr, 
-                             /*@out@*/Header * sigs, /*@out@*/Header * hdrPtr)
-       /*@modifies *leadPtr, *sigs, *hdrPtr @*/
+static int readPackageHeaders(FD_t fd, /*@out@*/ struct rpmlead * leadPtr, 
+                             /*@out@*/ Header * sigs, /*@out@*/ Header *hdrPtr)
+       /*@modifies fd, *leadPtr, *sigs, *hdrPtr @*/
 {
     Header hdrBlock;
     struct rpmlead leadBlock;
index 2395ca8..b31e5f7 100644 (file)
@@ -85,7 +85,7 @@ void printDepProblems(FILE * fp, struct rpmDependencyConflict * conflicts,
     }
 }
 
-const char * rpmProblemString(rpmProblem prob)
+const char * rpmProblemString(rpmProblem prob) /*@modifies prob@*/
 {
     const char * name, * version, * release;
     const char * altName = NULL, * altVersion = NULL, * altRelease = NULL;
@@ -150,7 +150,7 @@ const char * rpmProblemString(rpmProblem prob)
       case RPMPROB_DISKNODES:
        sprintf(buf, _("installing package %s-%s-%s needs %ld inodes on the %s"
                       " filesystem"), name, version, release, 
-                       prob->ulong1,
+                       (long)prob->ulong1,
                        prob->str1);
        break;
 
index 317de27..5537af7 100644 (file)
@@ -11,6 +11,9 @@
 #include "rpmbuild.h"
 #include <rpmurl.h>
 
+/*@access Header@*/                    /* XXX compared with NULL */
+/*@access rpmdbMatchIterator@*/                /* XXX compared with NULL */
+
 /* ======================================================================== */
 static char * permsString(int mode)
 {
@@ -29,6 +32,7 @@ static char * permsString(int mode)
     else if (S_ISBLK(mode))
        perms[0] = 'b';
 
+    /*@-unrecog@*/
     if (mode & S_IRUSR) perms[1] = 'r';
     if (mode & S_IWUSR) perms[2] = 'w';
     if (mode & S_IXUSR) perms[3] = 'x';
@@ -49,6 +53,7 @@ static char * permsString(int mode)
 
     if (mode & S_ISVTX)
        perms[9] = ((mode & S_IXOTH) ? 't' : 'T');
+    /*@=unrecog@*/
 
     return perms;
 }
@@ -102,10 +107,12 @@ static void printFileInfo(FILE *fp, const char * name,
        namefield = nf;
     } else if (S_ISCHR(mode)) {
        perms[0] = 'c';
-       sprintf(sizefield, "%3u, %3u", (rdev >> 8) & 0xff, rdev & 0xFF);
+       sprintf(sizefield, "%3u, %3u", ((unsigned)(rdev >> 8) & 0xff),
+                       ((unsigned)rdev & 0xff));
     } else if (S_ISBLK(mode)) {
        perms[0] = 'b';
-       sprintf(sizefield, "%3u, %3u", (rdev >> 8) & 0xff, rdev & 0xFF);
+       sprintf(sizefield, "%3u, %3u", ((unsigned)(rdev >> 8) & 0xff),
+                       ((unsigned)rdev & 0xff));
     }
 
     /* Convert file mtime to display format */
@@ -128,7 +135,7 @@ static void printFileInfo(FILE *fp, const char * name,
        (void)strftime(timefield, sizeof(timefield) - 1, fmt, tm);
     }
 
-    fprintf(fp, "%s %4d %-8s%-8s %10s %s %s\n", perms, nlink,
+    fprintf(fp, "%s %4d %-8s%-8s %10s %s %s\n", perms, (int)nlink,
                ownerfield, groupfield, sizefield, timefield, namefield);
     if (perms) free(perms);
 }
@@ -642,7 +649,7 @@ int rpmQueryVerify(QVA_t *qva, rpmQVSources source, const char * arg,
            fn = xstrdup( (fn ? fn : arg) );
        } else
            fn = xstrdup(arg);
-       rpmCleanPath(fn);
+       (void) rpmCleanPath(fn);
 
        mi = rpmdbInitIterator(rpmdb, RPMTAG_BASENAMES, fn, 0);
        if (mi == NULL) {
index fe2ce4f..b255fec 100644 (file)
@@ -11,6 +11,9 @@
 #include "signature.h"
 #include "misc.h"      /* XXX for makeTempFile() */
 
+/*@access Header@*/            /* XXX compared with NULL */
+/*@access FD_t@*/              /* XXX compared with NULL */
+
 static int manageFile(FD_t *fdp, const char **fnp, int flags, int rc)
 {
     const char *fn;
index 5bbe78b..2971172 100644 (file)
@@ -16,8 +16,10 @@ static int _debug = 0;
 #include <rpmmacro.h>  /* XXX for rpmGetPath/rpmGenPath */
 
 #include "rpmdb.h"
+
 /*@access dbiIndexSet@*/
 /*@access dbiIndexItem@*/
+/*@access Header@*/            /* XXX compared with NULL */
 /*@access rpmdbMatchIterator@*/
 
 #include "fprint.h"
@@ -690,7 +692,7 @@ int rpmdbOpenAll (rpmdb rpmdb)
     for (dbix = 0; dbix < dbiTagsMax; dbix++) {
        if (rpmdb->_dbi[dbix] != NULL)
            continue;
-       dbiOpen(rpmdb, dbiTags[dbix], rpmdb->db_flags);
+       (void) dbiOpen(rpmdb, dbiTags[dbix], rpmdb->db_flags);
     }
     return 0;
 }
index 63731b3..5887b93 100644 (file)
@@ -184,7 +184,7 @@ struct _dbiIndex {
        /* dbenv parameters */
     int                        dbi_lorder;
     void               (*db_errcall) (const char *db_errpfx, char *buffer);
-    FILE *             dbi_errfile;
+/*@shared@*/ FILE *    dbi_errfile;
     const char *       dbi_errpfx;
     int                        dbi_verbose;
     int                        dbi_region_init;
@@ -262,7 +262,7 @@ struct rpmdb_s {
     const char *       db_errpfx;
 
     void               (*db_errcall) (const char *db_errpfx, char *buffer);
-    FILE *             db_errfile;
+/*@shared@*/ FILE *    db_errfile;
     void *             (*db_malloc) (size_t nbytes);
 
     int                        db_ndbi;
index 17b4d15..bd5d080 100644 (file)
@@ -10,6 +10,9 @@
 
 #include "misc.h"
 
+/*@access Header@*/            /* XXX compared with NULL */
+/*@access FD_t@*/              /* XXX compared with NULL */
+
 static int hashesPrinted = 0;
 
 static void printHash(const unsigned long amount, const unsigned long total)
index 65ac7b7..d1a2319 100644 (file)
@@ -28,7 +28,7 @@ extern "C" {
  * @return             0 on success, 1 on bad magic, 2 on error
  */
 int rpmReadPackageInfo(FD_t fd, /*@out@*/ Header * signatures,
-       /*@out@*/ Header * hdr) /*@modifies *signatures, *hdr @*/;
+       /*@out@*/ Header * hdr) /*@modifies fd, *signatures, *hdr @*/;
 
 /**
  * Return package header and lead info from file handle.
@@ -41,7 +41,8 @@ int rpmReadPackageInfo(FD_t fd, /*@out@*/ Header * signatures,
  */
 int rpmReadPackageHeader(FD_t fd, /*@out@*/ Header * hdr,
        /*@out@*/ int * isSource, /*@out@*/ int * major,
-       /*@out@*/ int * minor) /*@modifies *hdr, *isSource, *major, *minor @*/;
+       /*@out@*/ int * minor)
+               /*@modifies fd, *hdr, *isSource, *major, *minor @*/;
 
 /**
  * Return name, version, release strings from header.
@@ -52,7 +53,7 @@ int rpmReadPackageHeader(FD_t fd, /*@out@*/ Header * hdr,
  * @return             0 always
  */
 int headerNVR(Header h, /*@out@*/ const char **np, /*@out@*/ const char **vp,
-       /*@out@*/ const char **rp) /*@modifies *np, *vp, *rp @*/;
+       /*@out@*/ const char **rp) /*@modifies h, *np, *vp, *rp @*/;
 
 /**
  * Retrieve file names from header.
@@ -86,7 +87,7 @@ void rpmBuildFileList(Header h, /*@out@*/ const char *** fileListPtr,
  */
 int rpmHeaderGetEntry(Header h, int_32 tag, /*@out@*/ int_32 *type,
         /*@out@*/ void **p, /*@out@*/ int_32 *c)
-               /*@modifies *type, *p, *c @*/;
+               /*@modifies h, *type, *p, *c @*/;
 
 /**
  * Retrieve tag info from header.
@@ -103,7 +104,7 @@ int rpmHeaderGetEntry(Header h, int_32 tag, /*@out@*/ int_32 *type,
  */
 int rpmPackageGetEntry(void *leadp, Header sigs, Header h,
         int_32 tag, int_32 *type, void **p, int_32 *c)
-               /*@modifies *type, *p, *c @*/;
+               /*@modifies sigs, h, *type, *p, *c @*/;
 
 /**
  * Automatically generated table of tag name/value pairs.
@@ -621,7 +622,7 @@ Header XrpmdbNextIterator(rpmdbMatchIterator mi, const char * f, unsigned int l)
  * @return             NULL on failure
  */
 /*@only@*/ /*@null@*/ rpmdbMatchIterator rpmdbInitIterator(
-                       /*@kept@*/ rpmdb rpmdb, int rpmtag,
+                       rpmdb rpmdb, int rpmtag,
                        const void * key, size_t keylen);
 
 /** \ingroup rpmdb
@@ -724,7 +725,7 @@ void printDepProblems(FILE *fp, struct rpmDependencyConflict *conflicts,
  * @param prob         rpm problem
  * @return             formatted string
  */
-/*@only@*/ const char * rpmProblemString(rpmProblem prob)      /*@*/;
+/*@only@*/ const char * rpmProblemString(rpmProblem prob) /*@modifies prob @*/;
 
 /**
  * Output formatted string representation of problem to file handle.
@@ -732,14 +733,15 @@ void printDepProblems(FILE *fp, struct rpmDependencyConflict *conflicts,
  * @param fp           file handle
  * @param prob         rpm problem
  */
-void rpmProblemPrint(FILE *fp, rpmProblem prob)        /*@modifies *fp @*/;
+void rpmProblemPrint(FILE *fp, rpmProblem prob)        /*@modifies *fp, prob @*/;
 
 /**
  * Print problems to file handle.
  * @param fp           file handle
  * @param probs                problem set
  */
-void rpmProblemSetPrint(FILE *fp, rpmProblemSet probs) /*@modifies *fp @*/;
+void rpmProblemSetPrint(FILE *fp, rpmProblemSet probs)
+               /*@modifies *fp, probs @*/;
 
 /**
  * Destroy problem set.
@@ -767,9 +769,10 @@ typedef struct rpmRelocation_s {
  * @retval cooke       address of cookie pointer
  * @return             0 on success, 1 on bad magic, 2 on error
  */
-int rpmInstallSourcePackage(const char * root, FD_t fd, const char ** specFile,
+int rpmInstallSourcePackage(const char * root, FD_t fd,
+                       /*@out@*/ const char ** specFile,
                        rpmCallbackFunction notify, rpmCallbackData notifyData,
-                       char ** cookie);
+                       /*@out@*/ char ** cookie);
 
 /**
  * Compare headers to determine which header is "newer".
@@ -793,7 +796,7 @@ typedef /*@abstract@*/ struct rpmTransactionSet_s * rpmTransactionSet;
  * @param rootdir      path to top of install tree
  * @return             rpm transaction set
  */
-/*@only@*/ rpmTransactionSet rpmtransCreateSet( /*@only@*/ rpmdb rpmdb,
+/*@only@*/ rpmTransactionSet rpmtransCreateSet(rpmdb rpmdb,
        const char * rootdir);
 
 /** \ingroup rpmtrans
@@ -958,7 +961,8 @@ typedef enum rpmprobFilterFlags_e {
  * @return             0 on success, -1 on error, >0 with newProbs set
  */
 int rpmRunTransactions(rpmTransactionSet ts,
-                       rpmCallbackFunction notify, rpmCallbackData notifyData,
+                       rpmCallbackFunction notify,
+                       /*@owned@*/ rpmCallbackData notifyData,
                        rpmProblemSet okProbs,
                        /*@out@*/ rpmProblemSet * newProbs,
                        rpmtransFlags transFlags,
index cbce534..9cd1238 100644 (file)
@@ -25,6 +25,8 @@
 #include "rpmlead.h"
 #include "signature.h"
 
+/*@access Header@*/            /* XXX compared with NULL */
+
 typedef int (*md5func)(const char * fn, /*@out@*/unsigned char * digest);
 
 int rpmLookupSignatureType(int action)
@@ -78,12 +80,13 @@ const char * rpmDetectPGPVersion(pgpVersion *pgpVer)
        char *pgpvbin;
        struct stat statbuf;
        
-       if (!(pgpbin && pgpbin[0] != '%') || ! (pgpvbin = (char *)alloca(strlen(pgpbin) + 2))) {
+       if (!(pgpbin && pgpbin[0] != '%')) {
          if (pgpbin) xfree(pgpbin);
          saved_pgp_version = -1;
          return NULL;
        }
-       sprintf(pgpvbin, "%sv", pgpbin);
+       pgpvbin = (char *)alloca(strlen(pgpbin) + sizeof("v"));
+       (void)stpcpy(stpcpy(pgpvbin, pgpbin), "v");
 
        if (stat(pgpvbin, &statbuf) == 0)
          saved_pgp_version = PGP_5;
index 28f480c..efb830c 100644 (file)
@@ -33,6 +33,9 @@
 # endif
 #endif
 
+/*@access FD_t@*/              /* XXX compared with NULL */
+/*@access Header@*/            /* XXX compared with NULL */
+/*@access dbiIndexSet@*/
 /*@access rpmdb@*/
 /*@access rpmTransactionSet@*/
 /*@access rpmProblemSet@*/
@@ -1296,7 +1299,7 @@ int rpmRunTransactions(   rpmTransactionSet ts,
        if (di) di[i].bsize = 0;
     }
 
-    *newProbs = ts->probs = psCreate();
+    ts->probs = *newProbs = psCreate();
     hdrs = alloca(sizeof(*hdrs) * ts->addedPackages.size);
 
     /* ===============================================
index c33d1a0..0d8e55f 100644 (file)
@@ -255,9 +255,10 @@ static int rpmVerifyScript(const char * rootDir, rpmdb rpmdb, Header h, FD_t scr
     rpmTransactionSet ts = rpmtransCreateSet(rpmdb, rootDir);
     int rc;
 
-    ts->scriptFd = scriptFd;
+    ts->scriptFd = fdLink(scriptFd, "rpmVerifyScript");
     rc = runInstScript(ts, h, RPMTAG_VERIFYSCRIPT, RPMTAG_VERIFYSCRIPTPROG,
                     0, 0);
+    ts->scriptFd = fdFree(ts->scriptFd, "rpmVerifyScript");
     rpmtransFree(ts);
     return rc;
 }
@@ -328,7 +329,7 @@ static int verifyHeader(QVA_t *qva, Header h)
     return ec;
 }
 
-static int verifyDependencies(/*@only@*/ rpmdb rpmdb, Header h) {
+static int verifyDependencies(rpmdb rpmdb, Header h) {
     rpmTransactionSet rpmdep;
     struct rpmDependencyConflict * conflicts;
     int numConflicts;
index e86a18c..b8f4aa2 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-08-08 22:37+0100\n"
 "Last-Translator: Milan Kerslager <milan.kerslager@spsselib.hiedu.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "chyba: nemohu otevøít %s/packages.rpm\n"
@@ -1596,44 +1596,40 @@ msgstr "chyba syntaxe p
 msgid "syntax error while parsing ||"
 msgstr "chyba syntaxe pøi zpracování ||"
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr "chyba pøi parsování ve výrazu"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "nedoplnìná ("
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr "nedefinovaný identifikátor"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- jen s èísly"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! jen s èísly"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "typy musí souhlasit"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* / nejsou podporovány pro øetìzce"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- není podporováno pro øetìzce"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& a || není podporováno pro øetìzce"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr "chyba syntaxe ve výrazu"
 
@@ -2274,60 +2270,60 @@ msgstr "
 msgid "line %d: Bad %s number: %s\n"
 msgstr "øádek %d: ©patné èíslo %s: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Nemohu pøejmenovat %s na %s: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "Nemohu provést unlink %s: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba: 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "©patné magické èíslo"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "©patná nebo neèitelná hlavièka"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "Velikost hlavièky je pøili¹ velká"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr "Neznámý typ souboru"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr "Chybìjící hardlink"
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr "Interní chyba"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr "selhal - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2336,88 +2332,88 @@ msgstr ""
 "Závislost \"B\" potøebuje období (pøedpokládáno stejné jako \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr "%s: %-45s ANO (pøidány soubory)\n"
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr "%s: %-45s %-3s (ke¹ováno)\n"
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s ANO (rpmrc poskytuje)\n"
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s ANO (rpmlib poskytuje)\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s ANO (db soubory)\n"
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s ANO (db poskytuje)\n"
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NE\n"
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) pøidáno do ke¹e závislostí.\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "balíèek %s-%s-%s má nesplnìné po¾adavky: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "balíèek %s koliduje: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "odstraòuji \"%s\" z indexu %s.\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2560,7 +2556,7 @@ msgstr ""
 "na http://www.rpm.org nebo v diskuzním listu rpm-list@redhat.com.\n"
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(není èíslo)"
 
@@ -2589,196 +2585,210 @@ msgid "file %s is on an unknown device"
 msgstr "soubor %s je na neznámém zaøízení"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "Poèet RPM_STRING_TYPE pro grabData() musí být 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "Chybný poèet pro headerAddEntry(): %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "chybí { po %"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "po %{ chybí }"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "prázdný formát znaèky"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "prázdné jméno znaèky"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "neznámá znaèka"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "na konci pole oèekáváno ]"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "neoèekávaná ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "neoèekávaná }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "ve výrazu oèekáván ?"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "ve výrazu je po ? oèekávána {"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "ve výrazu je oèekávána }"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "v podvýrazu je po ? oèekávána :"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "ve výrazu je po : oèekávána {"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "na konci výrazu je oèekáváno |"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(neznámý typ)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   soubor: %s akce: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s neexistuje - pou¾ita skupina root"
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "hodnova %%instchangelog v makro souboru má být èíslo, ale není"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozbalování archívu selhalo %s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "instaluji zdrojový balíèek\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nemohu vytvoøir adresáø pro zdrojové soubory: %s"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "nemohu zapsat do %s"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "zdrojové soubory v: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "nemohu vytvoøit adresáø pro spec soubory: %s"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec soubor v: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "zdrojový balíèek neobsahuje spec soubor"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "pøejmenovávám %s na %s\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "pøejmenování %s na %s selhalo: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balíèek: %s-%s-%s test souborù = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "ukonèuji instalaci, proto¾e je spu¹tìn --test\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "spou¹tím pøípadný pøedinstalaèní skript\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varování: %s vytvoøeno jako %s"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varování: %s ulo¾eno jako %s"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr "spou¹tím pøípadný postinstalaèní skript\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "chyba pøi vytváøení doèasného souboru %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr "práce s balíèky verze 1 není podporována touto verzí RPM"
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr "tato verze RPM podporuje práci s balíèky s hlavním (major) èíslem <= 4"
@@ -3017,217 +3027,217 @@ msgstr "v bal
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "neznámá chyba %d vznikla pøi manipulaci s balíèkem %s-%s-%s"
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "chyba ve formátu: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾ádné soubory)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "normální      "
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "nahrazen      "
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "neinstalován  "
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "sdílen v síti "
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámý %3d) "
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(chybí stav)  "
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "balíèek nemá vlastníka souboru ani seznamy id"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otevøení %s selhalo: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "nezdá se, ¾e by %s byl balíèek typu RPM\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "dotaz na %s se nezdaøil\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "dotaz na spec soubor %s selhal, nemohu parsovat\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr "¾ádné balíèky\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾ádné balíèky\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾ádný balíèek nevy¾aduje %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾ádný balíèek neposkytuje %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "soubor %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "soubor %s nevlastní ¾ádný balíèek\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neplatné èíslo balíèku: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr "záznam balíèku èíslo: %u\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "záznam %d nelze pøeèíst\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: otevøení selhalo: %s\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile selhalo\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite selhalo: %s\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead selhalo\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: RPM v1.0 nelze podepsat\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Nemohu znovu podepsat RPM v2.0\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature selhalo\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Není dostupný ¾ádný podpis\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead selhalo: %s\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature selhalo: %s\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Není dostupný ¾ádný podpis (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "NENÍ OK"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr " (CHYBÍ KLÍÈ:"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÙVÌRYHODNÝ KLÍÈ:"
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr "dbiTagsInit: neznámá znaèka: \"%s\" ignorována\n"
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3241,17 +3251,17 @@ msgstr ""
 "    a nastavte \"%%_dbapi 3\" (tj. vytvoøte nebo upravte /etc/rpm/macros).\n"
 "\n"
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "nemohu otevøít index %s pøi pou¾ívání db%d - %s (%d)"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr "nemohu otevøít index %s"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3267,7 +3277,7 @@ msgstr ""
 "    jako root.\n"
 "\n"
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3282,7 +3292,7 @@ msgstr ""
 "    a nastavte \"%%_dbapi %d\" (tj. vytvoøte nebo upravte /etc/rpm/macros).\n"
 "\n"
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3300,26 +3310,26 @@ msgstr ""
 "    \"%%_dbapi_rebuild %d\" (tj. vytvoøte nebo upravte /etc/rpm/macros).\n"
 "\n"
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "chyba(%d) pøi získávání záznamu \"%s\" z indexu %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "chyba(%d) pøi ukládání záznamu %s do %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "chyba(%d) pøi odstraòování záznamu %s z %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "nebyla nastavena dbpath"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3328,213 +3338,213 @@ msgstr ""
 "formátu databáze"
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr "chyba(%d) pøi poèítání balíèkù"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "%s: nemohu èíst hlavièku na 0x%x"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstraòuji 0 %s polo¾ek.\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuji \"%s\" z indexu %s.\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuji %d polo¾ek z indexu %s.\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "chyba(%d) pøi alokaci nové instance balíèku"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr "pøidávám 0 %s polo¾ek.\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "pøidávám \"%s\" do indexu %s\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "pøidávám %d polo¾ek do indexu %s.\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "databázi %s pøevádím do %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "doèasná databáze %s ji¾ existuje"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr "vytváøím adresáø %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "chyba pøi vytváøení adresáøe %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otevírám starou databázi s dbapi %d\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otevírám novou databázi s dbapi %d\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "záznam èíslo %d v databázi je chybný -- vynechávám."
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nemohu pøidat záznam - pùvodnì u %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "databázi nelze zvovu vytvoøit; pùvodní databáze zùstává na svém místì\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "starou databázi nelze nahradit novou databází!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "pro obnovení nahraïte soubory v %s soubory z %s"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr "ma¾u adresáø %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nemohu odstranit adresáø %s: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "poèítám balíèky pro instalaci\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "nalezeno %d balíèkù\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "hledám balíèky pro sta¾ení\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "pøeskakuji %s - rpmGlob selhal(%d)\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Stahuji %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... jako %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "pøeskakuji %s - pøenos selhal - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "pøijato %d balíèkù\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu otevøít soubor %s: %s\n"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nemù¾e být nainstalován\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít databázi balíèkù v %s\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balíèek %s není pøemístitelný\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pøi ètení ze souboru %s\n"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "soubor %s vy¾aduje novìj¹í verzi RPM\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "nalezeno %d zdrojových a %d binárních balíèkù\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "nevyøe¹ené závislosti:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "instaluji binární balíèky\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" urèuje více balíèkù\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranìní tìchto balíèkù by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaluji %s\n"
@@ -3639,193 +3649,193 @@ msgstr "Nezn
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Zkontaktujte prosím rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "velikost podpisu: %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "Hlavièka+Archiv: %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "oèekáv. velikost: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr "není obyèejný soubor -- pøeskakuji kontrolu velikosti\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "Chybí podpis\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Starý (pouze interní) podpis! Jak jste to získali!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "Nový podpis hlavièky\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Velikost podpisu: %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Podpisový blok: %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Nemohu spustit pgp (%s)"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp selhalo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp selhalo pøi zápisu podpisu"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Velikost podpisu PGP: %d\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "nemohu èíst podpis"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Pøeèteno %d bajtù PGP podpisu\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr "Nemohu spustit gpg"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "gpg selhalo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr "gpg selhalo pøi zápisu podpisu"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Velikost GPG podpisu: %d\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Pøeèteno %d bajtù GPG podpisu\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr "Generuji PGP podpis.\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr "Generuji GPG podpis.\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Nemohu spustit pgp. Vynechte kontroly PGP pomocí --nopgp."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "spu¹tìní selhalo!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Nelze spustit gpg. Vynechte kontroly GPG pomocí --nogpg."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Nemohu spustit pgp"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "Neplatná %%_signature v makro souboru"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Musíte nastavit \"%%_gpg_name\" ve svém makro souboru"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musíte nastavit \"%%_pgp_name\" ve svém makro souboru"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "vynechávám soubor %s%s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "vynechávám adresáø %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "pøemís»uji %s do %s\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "pøemís»uji adresáø %s do %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pøeskoèeno, proto¾e chybí pøíznak\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "nemohu odstranit %s - adresáø není prázdný"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "rmdir %s selhalo: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "odstranìní %s selhalo: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "odstraní se soubory test = %d\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "spou¹tím pøípadný postdeinstalaèní skript\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "provedení %s-%s-%s skriptu selhalo, návratový kód: %d"
@@ -3845,69 +3855,69 @@ msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "balíèek neobsahuje ani jména skupin ani seznam id (nemìlo by se nikdy stát)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "chybí      %s\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyøe¹ené závislosti pro %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "Úspìch"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr "Chybná odezva FTP serveru"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr "IO chyba serveru"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "Timeout serveru"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr "Nelze pøevést jméno na IP adresu poèítaèe"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr "Nelze pøevést IP na jméno poèítaèe"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr "Pøipojení k serveru selhalo"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr "Selhalo navázání datového spojení se serverem"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "IO chyba pøi lokálním souboru"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Chyba pøi nastavení vzdáleného serveru do pasivního re¾imu"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Soubor nebyl na serveru nalezen"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "Probíhá pøeru¹ení"
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "Neznámá nebo neoèekávaná chyba"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "pøihla¹ování na %s jako %s, heslo %s\n"
@@ -3979,17 +3989,17 @@ msgstr "Za %% n
 msgid "Macro %%%.*s not found, skipping"
 msgstr "makro %%%.*s nenalezeno, pøeskakuji"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "Cílový buffer pøetekl"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Soubor %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Soubor %s je men¹í, ne¾ %d bajtù"
@@ -4059,6 +4069,9 @@ msgstr "nemohu otev
 msgid "failed to create %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
+#~ msgid "undefined identifier"
+#~ msgstr "nedefinovaný identifikátor"
+
 #~ msgid "loop in prerequisite chain: %s"
 #~ msgstr "smyèka v øetìzu podmínek: %s"
 
index ccb742a..5be54ba 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-03-07 05:17+01:00\n"
 "Last-Translator: K. Christiansen <kenneth@gnu.org>\n"
 "Language-Team: Danish/Dansk <dansk@klid.dk>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "Kan ikke åbne %s/packages.rpm\n"
@@ -1565,44 +1565,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2241,148 +2237,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2521,7 +2517,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2550,196 +2546,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2978,217 +2988,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr "ingen pakker\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ugyldig pakkenummer: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "IKKE OK"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3197,17 +3207,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "kan ikke åbne %s ved %s:%d: %s"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "kan ikke åbne %s: %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3217,7 +3227,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3227,7 +3237,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3238,238 +3248,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr "opretter kataloget %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr "fjener kataloget %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "fundet %d pakke(r)\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "leder efter pakker til at hente\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "modtager %d pakker\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Kan ikke åbne %s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "installerer binære pakker\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
@@ -3574,193 +3584,193 @@ msgstr "Ukendt system: %s\n"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontakt venligst rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp fejlede"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "gpg fejlede"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "fjernelse af %s fejlede: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3777,69 +3787,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "Succés"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "Tidsudløb for tjener"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Fil ikke fundet på tjener"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3911,17 +3921,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index b567fec..56e678f 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 1998-08-03 18:02+02:00\n"
 "Last-Translator: Karl Eichwalder <ke@SuSE.DE>\n"
 "Language-Team: German <de@li.org>\n"
@@ -45,7 +45,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
@@ -1767,45 +1767,41 @@ msgstr "? im Ausdruck erwartet"
 msgid "syntax error while parsing ||"
 msgstr "? im Ausdruck erwartet"
 
-#: build/expression.c:288
+#: build/expression.c:286
 #, fuzzy
 msgid "parse error in expression"
 msgstr "? im Ausdruck erwartet"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "? im Ausdruck erwartet"
@@ -2476,152 +2472,152 @@ msgid "line %d: Bad %s number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
 # , c-format
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Lesen von %s fehlgeschlagen: %s."
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "Fehler: "
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(unbekannter Typ)"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 #, fuzzy
 msgid "Internal error"
 msgstr "Fataler Fehler: "
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "pgp fehlgeschlagen"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "Paket %s wird nicht in %s aufgeführt"
 
 # FIXME
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2761,7 +2757,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(keine Zahl)"
 
@@ -2792,206 +2788,220 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "fehlende { nach %{"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "fehlende } nach %{"
 
 # »Tag« übersetzen??? -ke-
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "leeres »Tag«-Format"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "leerer »Tag«-Name"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "unbekannter »Tag«"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "] am Ende des Arrays erwartet"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "unerwartete ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "unerwartete }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "? im Ausdruck erwartet"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "{ nach ? im Ausdruck erwartet"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "} im Ausdruck erwartet"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ": nach ? Unterausdruck erwartet"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "{ nach : im Ausdruck erwartet"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "| am Ende des Ausdrucks erwartet"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(unbekannter Typ)"
 
 # , c-format
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "Paket installieren"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "kann Datei %s nicht öffnen: "
 
 # , c-format
-#: lib/install.c:765
+#: lib/install.c:767
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "umbennen von %s nach %s fehlgeschlagen: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/install.c:980
+#: lib/install.c:982
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 "Nur Pakete mit Hauptnummern <= 3 werden von dieser RPM-Version unterstützt"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3265,223 +3275,223 @@ msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "Fehler beim Format %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(beinhaltet keine Dateien)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 #, fuzzy
 msgid "not installed "
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(unbekannter Typ)"
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s scheint kein RPM-Paket zu sein\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "Anfrage von %s fehlgeschlagen\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "kein Paket triggert %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "kein Paket verlangt %s\n"
 
 # oder besser: ... listet %s auf? -ke-
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "kein Paket stellt %s bereit\n"
 
 # , c-format
-#: lib/query.c:654
+#: lib/query.c:661
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "die Datei »%s« gehört zu keinem Paket\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "ungültige Paket-Nummer: %s\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: Kann v1.0-RPM nicht signieren\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Kann v2.0-RPM nicht erneuert signieren\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: »rpmReadSignature« fehlgeschlagen\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Keine Signatur verfügbar (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (FEHLENDE SCHLüSSEL)"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3490,17 +3500,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3510,7 +3520,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3520,7 +3530,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3531,249 +3541,249 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "Fehler beim Eintrag %s von %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "Fehler bei Schreiben des Eintrags %s nach %s"
 
 # FIXME
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "»dbpath« ist nicht gesetzt"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "kann Kopfzeilen bei %d nicht lesen, um danach zu suchen"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
 # FIXME
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
 # FIXME
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # FIXME
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "Fehler beim Löschen des Eintrags %s nach %s"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "die temporäre Datenbank %s existiert schon"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "Datenbank aus der vorhandenen neu erstellen"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 "Eintrag Nummer %d in der Datenback ist nicht in Ordnung -- wird übersprungen"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "kann einen Eintrag hinzufügen, ursprünglich bei %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
 # , c-format
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 #, fuzzy
 msgid "counting packages to install\n"
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, fuzzy, c-format
 msgid "found %d packages\n"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 #, fuzzy
 msgid "looking for packages to download\n"
 msgstr "Fehler beim Suchen nach Paket %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
 # , c-format
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Hole %s heraus\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
 # oder besser: "... verletzen" ?
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
@@ -3881,206 +3891,206 @@ msgstr "(unbekannter Typ)"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Keine Signatur verfügbar\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-Signatur generieren"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Alte Signatur (nur intern)!  Wie bist du daran gekommen!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "nicht möglich, die Signatur zu lesen"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Konnte pgp nicht durchführen"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp fehlgeschlagen"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "nicht möglich, die Signatur zu lesen"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "Konnte pgp nicht durchführen"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "pgp fehlgeschlagen"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "pgp fehlgeschlagen beim Schreiben der Signatur"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "PGP-Signatur generieren"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "PGP-Signatur generieren"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Konnte pgp nicht aufrufen.  Überspring die PGP-Checks mit --nopgp."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: Öffnen fehlgeschlagen\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Konnte pgp nicht aufrufen.  Überspring die PGP-Checks mit --nopgp."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Konnte pgp nicht durchführen"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "\"pgp_name:\" muss in der rpmrc-Datei gesetzt sein"
 
 # , c-format
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "Hole %s heraus\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "kann %s nicht entfernen - Verzeichnis ist nicht leer"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "Entfernen von %s fehlgeschlagen: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "öffnen von %s fehlgeschlagen: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "Ausführung des Skripts fehlgeschlagen"
@@ -4098,77 +4108,77 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 #, fuzzy
 msgid "Bad server response"
 msgstr "Nicht passende Antwort des FTP-Servers"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 #, fuzzy
 msgid "Server IO error"
 msgstr "FTP IO-Fehler"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 #, fuzzy
 msgid "Server timeout"
 msgstr "Timeout des FTP-Servers"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "Unmöglich die Hostadresse des FTP-Servers zu bestimmen"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "Unmöglich den Hostnamen des FTP-Servers zu bestimmen"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "Verbindung zum FTP-Server fehlgeschlagen"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "Aufbau einer Datenverbindung zum FTP-Server fehlgeschlagen"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "IO-Fehler bei lokaler Datei"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Fehler beim Setzen des FTP-Servers in den passiven Modus"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Datei auf dem Server nicht gefunden"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "FTP Unbekannter oder nicht erwarteter Fehler"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -4241,18 +4251,18 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Paket %s in %s nicht gefunden"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index d3ef9d9..9b70662 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,6 +1,6 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Xgettext-Options: --default-domain=rpm --add-comments --keyword=_ "
 "--keyword=N_\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
@@ -1724,45 +1724,41 @@ msgstr "odotin '?'-merkki
 msgid "syntax error while parsing ||"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: build/expression.c:288
+#: build/expression.c:286
 #, fuzzy
 msgid "parse error in expression"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "odotin '?'-merkkiä ilmauksessa"
@@ -2405,151 +2401,151 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "En voi lukea %s: %s."
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "virhe: "
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 #, fuzzy
 msgid "Internal error"
 msgstr "vakava virhe: "
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "pgp epäonnistui"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2688,7 +2684,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(ei ole luku)"
 
@@ -2717,202 +2713,216 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "puuttuva '{' '%{':n jälkeen"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "tyhjä nimiön formaatti"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "tyhjä nimiön nimi"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "tuntematon nimiö"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "']' puuttuu taulukkomäärittelyn lopusta"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "odottamaton ']'"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "odottamaton '}'"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "odotin '?'-merkkiä ilmauksessa"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "odotin '{' '?'-merkin jälkeen ilmauksessa "
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "odotin '}'-merkkiä ilmauksessa"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "odotin ':' '?'-merkin jälkeen ali-ilmauksessa "
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "odotin '{' ':'-merkin jälkeen ilmauksessa "
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "odotin '}'-merkkiä ilmauksen lopussa"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(tuntematon tyyppi)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "asenna paketti"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s:n nimeäminen %s:ksi epäonnistui: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 "tämä versio RPM:stä tukee vain suuremmman kuin 3 versionumeron paketteja"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3181,221 +3191,221 @@ msgstr "paketti %s-%s-%s  sis
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "virhe formaatissa: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(ei tiedostoja)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 #, fuzzy
 msgid "not installed "
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(tuntematon tyyppi)"
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s ei vaikuta RPM-paketilta\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s:n kysely ei onnistunut\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "kysele kaikki paketit"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "mikään pakettie ei tarvitse %s:a\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "mikään paketti ei tarjoa %s:a\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "tiedostoa %s ei omista mikään paketti\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "virheellinen paketin numero: %s\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: En voi allekirjoittaa v1.0 RPM:ää\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: En voi uudelleen allekirjoittaa v2.0 RPM:ää\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature epäonnistui\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ei allekirjoitusta saatavilla (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr "(PUUTTUVAT AVAIMET)"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3404,17 +3414,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3424,7 +3434,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3434,7 +3444,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3445,241 +3455,241 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "virhe luettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "virhe talletettaessa tietuetta %s %s:ään"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "dbpath ei ole asetettu"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "en voi lukea headeria %d:stä päivittäessä"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "virhe poistettaessa tietuetta %s %s:stä"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "väliaikainen tietokanta %s on jo olemassa"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "tietue numero %d tietokannassa viallinen -- ohitan sen"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "en voi lisätä tietuetta %d:stä"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 #, fuzzy
 msgid "counting packages to install\n"
 msgstr "asennukselle ei määritelty paketteja"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, fuzzy, c-format
 msgid "found %d packages\n"
 msgstr "kysele kaikki paketit"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 #, fuzzy
 msgid "looking for packages to download\n"
 msgstr "virhe etsittäessä pakettia %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
@@ -3784,205 +3794,205 @@ msgstr "(tuntematon tyyppi)"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ei allekirjoitusta saatavilla\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Vanha (sisäisen käytön) allekirjoitus! Mistä sait sen!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "en voinut lukea allekirjoitusta"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "En voinut ajaa pgp:tä"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp epäonnistui"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "en voinut lukea allekirjoitusta"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "En voinut ajaa pgp:tä"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "pgp epäonnistui"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "pgp ei voinut kirjoittaa allekirjoitusta"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "generoi PGP-allekirjoitus"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus"
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: avaus ei onnistunut\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "En voinut ajaa pgp:tä. Käytä --nopgpg ohittaaksesi PGP-tarkistus"
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "En voinut ajaa pgp:tä"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Sinun pitää asettaa \"pgp_name:\" rpmrc-tiedostossa"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "Haen: %s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "en voi poistaa %s -hakemisto ei ole tyhjä"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "%s:n rmdir epäonnistui: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s:n poisto epäonnistui: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "skriptin ajo epäonnistui"
@@ -4000,77 +4010,77 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 #, fuzzy
 msgid "Bad server response"
 msgstr "Virheellinen FTP-palvelijan vastaus"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 #, fuzzy
 msgid "Server IO error"
 msgstr "FTP:n IO-virhe"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 #, fuzzy
 msgid "Server timeout"
 msgstr "FTP-palvelimen timeout"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "FTP-palvelimen osoitetta ei löytynyt"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "FTP-palvelimen nimeä ei löytynyt"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "En saanut yhteyttä FTP-palvelijaan"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "En saanut data-yhteyttä FTP-palvelijaan"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "Paikallisen tiedoston IO-virhe"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Virhe asetettaessa palvelinta passiiviin moodiin"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Tiedostoa ei löytynyt palvelimelta"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "FTP:n tuntematon tai odottamaton virhe"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -4143,17 +4153,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paketti %s ei ole %s:ssä"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "en voinut avata %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index d149432..07a29f0 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -1,7 +1,7 @@
 msgid ""
-msgstr "POT-Creation-Date: 2000-10-26 11:14-0400\n"
+msgstr "POT-Creation-Date: 2000-10-28 12:51-0400\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1733,44 +1733,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2412,149 +2408,149 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "La construction a échoué.\n"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2693,7 +2689,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2722,200 +2718,214 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 #, fuzzy
 msgid "unexpected ]"
 msgstr "source de requête inattendue"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 #, fuzzy
 msgid "unexpected }"
 msgstr "source de requête inattendue"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr ""
 "        -f <file>+        - interroge le package à qui appartient <file>"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -3186,220 +3196,220 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 #, fuzzy
 msgid "not installed "
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "La construction a échoué.\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "La construction a échoué.\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3408,17 +3418,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3428,7 +3438,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3438,7 +3448,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3449,239 +3459,239 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 #, fuzzy
 msgid "counting packages to install\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "aucun package n'a été spécifié pour l'installation"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3786,199 +3796,199 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "      --sign            - genère une signature PGP"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "      --sign            - genère une signature PGP"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "La construction a échoué.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "      --sign            - genère une signature PGP"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "      --sign            - genère une signature PGP"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3995,69 +4005,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -4130,17 +4140,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "aucun package n'a été spécifié pour la désinstallation"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 60462ad..796131a 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 1.37\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-08-02 13:00+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "get ekki opnað %s/packages.rpm\n"
@@ -1560,44 +1560,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2236,148 +2232,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2516,7 +2512,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2545,196 +2541,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2973,217 +2983,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3192,17 +3202,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr "get ekki opnað index í %s"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3212,7 +3222,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3222,7 +3232,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3233,238 +3243,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3569,193 +3579,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3772,69 +3782,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "Óþekkt eða óvænt villa"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3906,17 +3916,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Fjölvi %%%.*s fanmst ekki. Sleppi"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Skrá %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Skráin %s er minni en %d bæti"
index 9e1c28e..08f25e9 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 2d9e646..f76b22c 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 1999-12-01 22:49 +JST\n"
 "Last-Translator: Kanda Mitsuru <kanda@nn.iij4u.or.jp>\n"
 "Language-Team: JRPM <jrpm@linux.or.jp>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=EUC-JP\n"
 "Content-Transfer-Encoding: EUC-JP\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
@@ -88,7 +88,7 @@ msgstr "
 # build root [BuildRoot]
 # net share [¥Í¥Ã¥È¶¦Í­]
 # reloate [ºÆÇÛÃÖ/°ÜÆ°¤¹¤ë]
-# $Id: ja.po,v 1.117 2000/10/26 15:32:04 jbj Exp $
+# $Id: ja.po,v 1.118 2000/10/28 17:16:28 jbj Exp $
 #: rpm.c:184 rpmqv.c:267
 #, c-format
 msgid "rpm: %s\n"
@@ -1666,46 +1666,41 @@ msgstr "
 msgid "syntax error while parsing ||"
 msgstr "¹½Ê¸²òÀÏÃæ¤Îʸˡ¥¨¥é¡¼ ||"
 
-#: build/expression.c:288
+#: build/expression.c:286
 #, fuzzy
 msgid "parse error in expression"
 msgstr "¼°Ãæ¤Ç¹½Ê¸²òÀÏ¥¨¥é¡¼"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "°ìÃפ·¤Ê¤¤ ("
 
-#: build/expression.c:335
-#, fuzzy
-msgid "undefined identifier"
-msgstr "ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¼±ÊÌ»Ò"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- ¿ô¤Î¤ß"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! ¿ô¤Î¤ß"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "·¿¤Ï°ìÃפ·¤Æ¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* / ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& ¤È || ¤Ïʸ»úÎóÍѤ˥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "¼°Ãæ¤Çʸˡ¥¨¥é¡¼"
@@ -2350,63 +2345,63 @@ msgstr "%d 
 msgid "line %d: Bad %s number: %s\n"
 msgstr "%d ¹ÔÌÜ: ÉÔÀµ¤Ê %s ÈÖ¹æ: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤¬¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, fuzzy, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "(¥¨¥é¡¼ 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "ÉÔÀµ¤Ê¥Þ¥¸¥Ã¥¯"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "ÉÔÀµ¤Ê/ÉÔ²ÄÆɤʥإåÀ"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "¥Ø¥Ã¥À¥µ¥¤¥º¤¬Â礭¤¹¤®¤Þ¤¹"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Unknown file type"
 msgstr "ÉÔÌÀ¤Ê¥Õ¥¡¥¤¥ë¥¿¥¤¥×"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr "¥Ï¡¼¥É¥ê¥ó¥¯¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 #, fuzzy
 msgid "Internal error"
 msgstr "ÆâÉô¥¨¥é¡¼"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "¼ºÇÔ - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2415,88 +2410,88 @@ msgstr ""
 "\"B\" ¤Î°Í¸À­¤Ï epoch ¤òɬÍפȤ·¤Þ¤¹(\"A\"¤ÈƱ¤¸¤Ç¤¢¤ë¤È²¾Äꤷ¤Æ)\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, fuzzy, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr "%s: %s ¤Ï¥Õ¥¡¥¤¥ë¥ê¥¹¥È¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, fuzzy, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %s ¤Ï rpmrc ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %s ¤Ï db ¤¬Ä󶡤¹¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: %s ¤Ï¥Ñ¥Ã¥±¡¼¥¸¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï require ¤¬Ëþ¤¿¤µ¤ì¤Æ¤¤¤Þ¤»¤ó: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "%s ¤È¶¥¹ç¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤¹: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2640,7 +2635,7 @@ msgstr ""
 "¾ÜºÙ¤Ê¾ðÊ󤬼èÆÀ¤Ç¤­¤Þ¤¹¡£\n"
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
 
@@ -2669,97 +2664,111 @@ msgid "file %s is on an unknown device"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ÏÉÔÌÀ¤Ê¥Ç¥Ð¥¤¥¹¤Ç¤¹"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabDate() RPM_STRING_TYPE ¥«¥¦¥ó¥È¤Ï 1 ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "headerAddEntry() ¤ÎÉÔÀµ¤Ê¥«¥¦¥ó¥È: %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "% ¤Î¸å¤Ë { ¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "%{ ¤Î¸å¤Ë } ¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "¶õ¤Î¥¿¥°¥Õ¥©¡¼¥Þ¥Ã¥È"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "¶õ¤Î¥¿¥°Ì¾"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "ÉÔÌÀ¤Ê¥¿¥°"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "ÇÛÎó¤Î¸å¤Ë ] ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "ͽ´ü¤»¤Ì ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "ͽ´ü¤»¤Ì }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "¼°Ãæ¤Ç ? ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "¼°Ãæ¤Ç ? ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "¼°Ãæ¤Ë } ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "°Ê²¼¤Î ? ¥µ¥Ö¼°¤Î ¤Ë: ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "¼°Ãæ¤Ç : ¤Î¸å¤Ë { ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "¼°¤Î½ª¤ê¤Ë | ¤¬´üÂÔ¤µ¤ì¤Þ¤¹"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(ÉÔÌÀ¤Ê¥¿¥¤¥×)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: ¥¢¥¯¥·¥ç¥ó: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/install.c:253
+#: lib/install.c:255
 #, fuzzy
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
@@ -2769,103 +2778,103 @@ msgstr ""
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¥½¡¼¥¹¤Ï: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec ¥Õ¥¡¥¤¥ë¤Ï: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s ¤ò %s ¤Ë¤¹¤ë̾Á°¤ÎÊѹ¹¤Ë¼ºÇÔ: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "--test ¤ò¼Â¹Ô¤¹¤ë¤è¤¦¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤òÃæ»ß¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "¥×¥ê¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆÊݸ¤µ¤ì¤Þ¤¹"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 "¥á¥¸¥ã¡¼ÈÖ¹æ <=3 ¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î¤ß¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Î RPM ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3143,220 +3152,220 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "ÉÔÌÀ¤Ê¥¨¥é¡¼ %d ¤¬¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ÎÁàºîÃæ¤Ë¤ª¤­¤Þ¤·¤¿"
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "Ä̾ï"
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "ÃÖ¤­´¹¤¨¤é¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "¥Í¥Ã¥È¶¦Í­"
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(̤ÃΤΠ%3d)"
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(²¿¤Î¾õÂ֤⤢¤ê¤Þ¤»¤ó)"
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥Õ¥¡¥¤¥ë½êÍ­¼Ô¤ä id ¥ê¥¹¥È¤ò¤É¤Á¤é¤â»ý¤Ã¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s ¤Ï RPM ¥Ñ¥Ã¥±¡¼¥¸¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "¥¹¥Ú¥Ã¥¯¥Õ¥¡¥¤¥ë %s ¤Ø¤ÎÌ䤤¹ç¤ï¤»¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡¢¥Ñ¡¼¥¹¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ë°¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "%s ¤òɬÍפȤ¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "%s ¤òÄ󶡤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ï¤É¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤â°¤·¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "̵¸ú¤Ê¥Ñ¥Ã¥±¡¼¥¸ÈÖ¹æ: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥ì¥³¡¼¥ÉÈÖ¹æ %d\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: fdOpen ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: v1.0 ¤Î RPM ¤Ë¤Ï½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: v2.0 ¤Î RPM ¤Ë¤ÏºÆ½ð̾¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writedLead ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Í­¸ú¤Ê½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó(v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (¥­¡¼¤Îʶ¼º) "
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr " (¿®Íê¤Ç¤­¤Ê¤¤¸°:"
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3365,17 +3374,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó  %s:%d"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3385,7 +3394,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3395,7 +3404,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3406,240 +3415,240 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "¥ì¥³¡¼¥É %s ¤Î¼èÆÀ¤Î¥¨¥é¡¼ (%s ¤«¤é)"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ë¥¹¥È¥¢¤Ç¥¨¥é¡¼ "
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "¥ì¥³¡¼¥É %s ¤ò %s ¤Ëºï½ü¤Ç¥¨¥é¡¼"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "dbpath ¤¬ÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "¸¡º÷¤Î¤¿¤á¤Î %d ¤Ç ¥Ø¥Ã¥À¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥¨¥ó¥È¥ê¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "group ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "name ¥¤¥ó¥Ç¥Ã¥¯¥¹ºï½ü¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Îõº÷¥¨¥é¡¼\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%s ¤ò %s ¤Ø̾Á°¤òÊѹ¹¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rootdir %s Ãæ¤Ç¥Ç¡¼¥¿¥Ù¡¼¥¹¤òºÆ¹½ÃÛ¤·¤Þ¤¹\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "°ì»þŪ¤Ê¥Ç¡¼¥¿¥Ù¡¼¥¹ %s ¤Ï¤¹¤Ç¤Ë¸ºß¤·¤Æ¤¤¤Þ¤¹"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ÎºîÀ®¥¨¥é¡¼: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¥ª¡¼¥×¥ó\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹Ãæ¤Î¥ì¥³¡¼¥ÉÈÖ¹æ %d ¤ÏÉÔÀµ¤Ç¤¹ -- ¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "%d ¤Ë ¥ª¥ê¥¸¥Ê¥ë¤Î¥ì¥³¡¼¥É¤òÉղäǤ­¤Þ¤»¤ó"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎºÆ¹½Ãۤ˼ºÇÔ; ¥ª¥ê¥¸¥Ê¥ë¥Ç¡¼¥¿¥Ù¡¼¥¹¤¬¤Þ¤À¤½¤³¤Ë»Ä¤Ã¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "¸Å¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¿·¤·¤¤¥Ç¡¼¥¿¥Ù¡¼¥¹¤ËÃÖ¤­´¹¤¨¤ë¤Î¤Ë¼ºÇÔ!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "%s Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥ê¥«¥Ð¡¼¤¹¤ë¤¿¤á¤Ë %s ¤«¤é¥Õ¥¡¥¤¥ë¤ÈÃÖ¤­´¹¤¨¤Þ¤¹"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤ÎºîÀ®: %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤Îºï½ü¼ºÇÔ: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤ò¿ô¤¨¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤òõ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¼èÆÀ¤·¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
@@ -3744,206 +3753,206 @@ msgstr "
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "½ð̾¥µ¥¤¥º     : %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "¥Ø¥Ã¥À + ¥¢¡¼¥«¥¤¥Ö: %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "´üÂÔ¤µ¤ì¤ë¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 "¥Õ¥¡¥¤¥ë¤Ï°ìÈ̤Υե¡¥¤¥ë¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- ¥µ¥¤¥º¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "½ð̾¤Ï¤¢¤ê¤Þ¤»¤ó\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "¸Å¤¤ PGP ½ð̾\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "¸Å¤¤(ÆâÉô¤À¤±¤Î)½ð̾!  ¤É¤¦¤ä¤Ã¤Æ¤½¤ì¤ò¼ê¤Ë¤¤¤ì¤Þ¤·¤¿¤«!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "¿·¤·¤¤¥Ø¥Ã¥À½ð̾\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "½ð̾¥µ¥¤¥º: %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "½ð̾¥Ñ¥Ã¥É: %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó(%s)"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp ¼ºÇÔ"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "½ð̾¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "PGP ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "gpg ¼ºÇÔ"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "gpg ¤¬½ð̾¤ò½ñ¤­¹þ¤à¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, fuzzy, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG ½ð̾¥µ¥¤¥º: %s\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, fuzzy, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "GPG ½ð̾¤Î %d ¥Ð¥¤¥È¤ò¼èÆÀ\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "PGP ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "GPG ¤ò»ÈÍѤ·¤Æ½ð̾¤ÎÀ¸À®Ãæ\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n"
 "PGP ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nopgp ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "¼Â¹Ô¼ºÇÔ!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 "gpg ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£\n"
 "GPG ¥Á¥§¥Ã¥¯¤ò¥¹¥­¥Ã¥×¤¹¤ë¤¿¤á¤Ë --nogpg ¤ò»ÈÍѤ·¤Æ¤¯¤À¤µ¤¤¡£"
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "pgp ¤ò¼Â¹Ô¤Ç¤­¤Þ¤»¤ó"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ëÃæ¤Ç̵¸ú¤Ê %%_signature ¥¹¥Ú¥Ã¥¯"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "¥Þ¥¯¥í¥Õ¥¡¥¤¥ë¤Ë \"%%_pgp_name\" ¤òÀßÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "¥Õ¥¡¥¤¥ë¤Î½ü³°: %s%s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "%s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê %s ¤ò %s ¤ËºÆÇÛÃÖ¤·¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "%s ¤òºï½ü¤Ç¤­¤Þ¤»¤ó - ¥Ç¥£¥ì¥¯¥È¥ê¤¬¶õ¤Ç¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "%s ¤Î rmdir ¤Ë¼ºÇÔ: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s ¤Îºï½ü¤Ë¼ºÇÔ: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "¥Õ¥¡¥¤¥ë test = %d ¤òºï½ü¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "¥Ý¥¹¥È¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
@@ -3965,77 +3974,77 @@ msgstr ""
 "¥Ñ¥Ã¥±¡¼¥¸¤Ï¥°¥ë¡¼¥×̾¤È id "
 "¥ê¥¹¥È¤ÎξÊý¤¬·ç¤±¤Æ¤¤¤Þ¤¹(¤³¤ì¤Ï·è¤·¤Æµ¯¤­¤Æ¤Ï¤Ê¤é¤Ê¤¤)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "À®¸ù"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 #, fuzzy
 msgid "Bad server response"
 msgstr "¥µ¡¼¥Ð¤«¤éÀµ¾ï¤Ê±þÅú¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 #, fuzzy
 msgid "Server IO error"
 msgstr "¥µ¡¼¥Ð IO ¥¨¥é¡¼"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 #, fuzzy
 msgid "Server timeout"
 msgstr "¥µ¡¼¥Ð¥¿¥¤¥à¥¢¥¦¥È"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "¥µ¡¼¥Ð¤Î¥Û¥¹¥È¥¢¥É¥ì¥¹¤òÄ´¤Ù¤é¤ì¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "¥µ¡¼¥Ð¤Î¥Û¥¹¥È̾¤òÄ´¤Ù¤é¤ì¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "¥µ¡¼¥Ð¤Ø¤ÎÀܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "¥µ¡¼¥Ð¤È¤Î¥Ç¡¼¥¿¥³¥Í¥¯¥·¥ç¥ó¤Î³ÎΩ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¤Î IO ¥¨¥é¡¼"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "¥ê¥â¡¼¥È¥µ¡¼¥Ð¤Î¥Ñ¥Ã¥·¥Ö¥â¡¼¥ÉÀßÄꥨ¥é¡¼"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "¥µ¡¼¥Ð¾å¤Ë¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "½èÍýÃæ¤Î¥¢¥Ü¡¼¥È"
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "ÉÔÌÀ¤â¤·¤¯¤Ïͽ´ü¤»¤Ì¥¨¥é¡¼"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "%s ¤Ø %s pw %s ¤È¤·¤Æ¥í¥°¥¤¥óÃæ\n"
@@ -4108,17 +4117,17 @@ msgstr "A %% 
 msgid "Macro %%%.*s not found, skipping"
 msgstr "¥Þ¥¯¥í %%%.*s ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¡¢¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "¥¿¡¼¥²¥Ã¥È¥Ð¥Ã¥Õ¥¡¥ª¡¼¥Ð¡¼¥Õ¥í¡¼"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "¥Õ¥¡¥¤¥ë %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "¥Õ¥¡¥¤¥ë %s: ¤Ï %d ¥Ð¥¤¥È¤è¤ê¾®¤µ¤¤¤Ç¤¹"
@@ -4189,6 +4198,10 @@ msgstr "%s 
 msgid "failed to create %s: %s\n"
 msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
+#, fuzzy
+#~ msgid "undefined identifier"
+#~ msgstr "ÄêµÁ¤µ¤ì¤Æ¤¤¤Ê¤¤¼±ÊÌ»Ò"
+
 #~ msgid "loop in prerequisite chain: %s"
 #~ msgstr "prerequisite ¥Á¥§¡¼¥ó¤Î¥ë¡¼¥×: %s"
 
index 9e1c28e..08f25e9 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 0c88dc1..85bb423 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-08-04 02:59+02:00\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <no@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=iso-8859-1\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "kan ikke åpne %s/packages.rpm\n"
@@ -1566,44 +1566,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2242,148 +2238,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2522,7 +2518,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2551,196 +2547,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2979,217 +2989,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3198,17 +3208,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr "kan ikke åpne %s indeks"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3218,7 +3228,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3228,7 +3238,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3239,238 +3249,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "fil %s trenger en nyere versjon av RPM\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
@@ -3575,193 +3585,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3778,69 +3788,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3912,17 +3922,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "Overflyt i målbuffer"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Fil %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Fil %s er mindre enn %d bytes"
index 143f59e..3aa4454 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 1999-05-25 17:00+0100\n"
 "Last-Translator: Pawe³ Dziekoñski <pdziekonski@mml.ch.pwr.wroc.pl>\n"
 "Language-Team: Polish <pl@li.org>\n"
@@ -16,7 +16,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
@@ -1686,44 +1686,40 @@ msgstr "b
 msgid "syntax error while parsing ||"
 msgstr "b³±d sk³adni w wyra¿eniu"
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr "b³±d interpretacji wyra¿enia"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "niesparowane ("
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr "nieznany identyfikator"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- tylko na liczbach"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! tylko na liczbach"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "typy musz± siê zgadzaæ"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* / nie jest wspierane dla ³añcuchów znakowych"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- nie jest wspierane dla ³añcuchów znakowych"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& i || nie jest wspierane dla ³añcuchów znakowych"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr "b³±d sk³adni w wyra¿eniu"
 
@@ -2364,148 +2360,148 @@ msgstr "linia %d: b
 msgid "line %d: Bad %s number: %s\n"
 msgstr "linia %d: B³êdny numer %s: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "nie mo¿na zmieniæ nazwy %s na %s: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(b³±d 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "B³êdny magic"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "B³êdny/nieczytelny nag³ówek"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "Rozmiar nag³ówka jest zbyt du¿y"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr "Nieznany typ pliku"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr "Brak twardego dowi±zania"
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr "B³±d wewnêtrzny"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr " nie powiod³o siê -"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "zale¿no¶ci pakietu %s nie zosta³y spe³nione: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "pakiet %s jest w konflikcie: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "usuwanie indeksu grupy\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2644,7 +2640,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(nie jest liczb±)"
 
@@ -2673,199 +2669,213 @@ msgid "file %s is on an unknown device"
 msgstr "plik %s jest na nieznanym urz±dzeniu"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE licznik musi byæ 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "B³edny licznik dla headerAddEntry(): %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "brak { po %"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "brak } po %{"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "pusty format etykiety"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "pusta nazwa etykiety"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "nieznana etykieta"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "spodziewany ] na koñcu tablicy"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "nie spodziewany ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "nie spodziewany }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "spodziewany ? w wyra¿eniu"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "spodziewany { po ? w wyra¿eniu"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "spodziewany } w wyra¿eniu"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "spodziewany : po podwyra¿eniu ?"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "spodziewany { po : w wyra¿eniu"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "spodziewany | na koñcu wyra¿enia"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(nieznany typ)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   plik: %s akcja: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "warto¶æ %%instchangelog w pliku makra powinna byæ liczb±, a nie jest"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "instacja pakietu ¼ród³owego\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "¼ród³a w: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "plik spec w: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "zmiana nazwy z %s na %s nie powiod³a sie: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "przebieg testowy - instalacja zatrzymana\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "uruchamianie skryptu preinstall (je¶li istnieje)\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ostrze¿enie: %s utworzony jako %s"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ostrze¿enie: %s zapisany jako %s"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 "tylko pakiety z numerem g³ównym <= 3 s± obs³ugiwane przez t± wersjê RPM'a"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3122,219 +3132,219 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "wyst±pi³ nieznany b³±d %d w trakcie manipulowania pakietem %s-%s-%s"
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "b³±d w formacie: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(nie zawiera plików)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "normalny      "
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "zast±piony    "
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "niezainstalowany"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "udostêpniony w sieci"
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(nieznany %3d)"
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(brak statusu)"
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "pakiet nie ma ani w³a¶ciciela pliku ani list id"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s nie wygl±da na pakiet RPM\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "odpytywanie %s nie powiod³o siê\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "odpytywanie pliku spec %s nie powiod³o siê, nie mo¿na interpretowaæ\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s nie zawiera ¿adnych pakietów\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¿aden pakiet nie wymaga %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¿aden pakiet nie udostêpnia %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "plik %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "plik %s nie nale¿y do ¿adnego pakietu\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "b³êdny numer pakietu: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "numer rekordu pakietu: %d\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Open nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "wykonanie nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: Nie mo¿na podpisaæ v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Nie mo¿na ponownie podpisaæ v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Sygnatura nie jest dostêpna\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature nie powiod³o siê\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Sygnatura nie jest dostêpna (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "NIE DOBRZE"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr " (BRAK KLUCZY:"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr "(NIEWIARYGODNE KLUCZE:"
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3343,17 +3353,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "nie mo¿na otworzyæ %s przy %s:%d"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3363,7 +3373,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3373,7 +3383,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3384,26 +3394,26 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "b³±d pobierania rekordu %s z %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "b³±d zapisywania rekordu %s do %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "b³±d usuwania rekordu %s z %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "¶cie¿ka bazy danych nie zosta³a podana"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3412,213 +3422,213 @@ msgstr ""
 "nowym formacie"
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "b³±d szukania pakietu %s\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "nie mo¿na odczytaæ nag³ówka przy %d dla poszukiwania"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "usuwanie wpisu w bazie\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "usuwanie indeksu grupy\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "usuwanie indeksu nazw\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "b³±d szukania pakietu %s\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "zmiana nazwy %s na %s\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "odbudowywujê bazê danych w rootdir %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "tymczasowa baza danych %s ju¿ istnieje"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "b³±d przy tworzeniu katalogu %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otwieranie starej bazy danych\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otwieranie nowej bazy danych\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "rekord numer %d w bazie danych jest b³êdny -- rekord pominiêto"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nie mo¿na dodaæ rekordu oryginalnie przy %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "przebudowanie bazy nie powiod³o siê; stara pozosta³a na miejscu\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "zamiana starej bazy na now± nie powiod³a siê!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "naprawcze zastêpowanie plików w %s plikami z %s"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "usuniêcie katalogu %s nie powiod³o siê: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "zliczanie pakietów do zainstalowania\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "szukanie pakietów do ¶ci±gniêcia\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "¦ci±ganie %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "¶ci±gniêto %d pakietów\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "znaleziono %d pakietów ¼ród³owych i %d binarnych\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
@@ -3723,195 +3733,195 @@ msgstr "Nieznany system: %s\n"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "rozmiar sygnat. : %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "Nag³ówek + Archiwum: %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "oczekiwany rozmiar: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr "plik nieregularny -- sprawdzanie rozmiaru pominiête\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "Brak sygnatury\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "Stara sygnatura PGP\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Stara (tylko wewnêtrzna) sygnatura! Sk±d Ty to wzi±³e¶!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "Nowa sygnatura nag³ówka\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Rozmiar sygnatury: %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Blok sygnatury: %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Nie mo¿na uruchomiæ pgp"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp nie powiod³o siê"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "zapisanie sygnatury przez pgp nie powiod³o siê"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "rozmiar sygnatury PGP: %d\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "nie mo¿na odczytaæ sygnatury"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Mam %d bajtów sygnatury PGP\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr "Nie mo¿na uruchomiæ gpg"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "gpg nie powiod³o siê"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr "zapisanie sygnatury przez gpg nie powiod³o siê"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "rozmiar sygnatury GPG: %d\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Mam %d bajtów sygnatury GPG\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "Generowanie sygnatury: %d\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "Generowanie sygnatury: %d\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Nie mo¿na uruchomiæ pgp. U¿yj --nopgp aby pomin±æ sprawdz. PGP"
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "uruchomienie nie powiod³o siê!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Nie mo¿na uruchomiæ gpg. U¿yj --nopgp aby pomin±æ sprawdz. GPG"
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Nie mo¿na uruchomiæ pgp"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "B³êdny wpis %%_signature w pliku makra"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Musisz ustawiæ \"%%_gpg_name\" w pliku swego makra"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musisz ustawiæ \"%%_pgp_name\" w pliku swego makra"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "wy³±czanie %s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "przesuwanie %s do %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "nie mo¿na usun±æ %s - katalog nie jest pusty"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "skasowanie katalogu %s nie powiod³o siê"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "skasowanie %s nie powiod³o siê: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "usunie pliki test = %d\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "uruchamianie skryptu postinstalacyjnego (je¦li istnieje)\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "wykonanie skryptu nie powiod³o siê"
@@ -3932,69 +3942,69 @@ msgstr ""
 "pakiet nie specyfikuje ani nazwy grupy ani list id (to nie powinno siê "
 "zdarzyæ)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "brak    %s\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "Sukces"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr "B³êdna odpowied¼ serwera"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr "B³±d WE/WY(IO) serwera"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "Przekroczony limit czasu serwera"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr "Nie mo¿na znale¼æ adresu serwera"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr "Nie mo¿na znale¼æ nazwy serwera"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr "Po³±czenie z serwerem nie powiod³o siê"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr "Otwarcie transmisji danych z serwera nie powiod³o siê"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "B³±d WE/WY(IO) na lokalnym pliku"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "B³±d: ustawienie zdalnego serwera w tryb pasywny nie powiod³o siê"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Plik nie zosta³ znaleziony na serwerze"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "Przerywanie ..."
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "Nieznany lub nieoczekiwany b³±d"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "logowanie do %s jako %s, has³o %s\n"
@@ -4066,17 +4076,17 @@ msgstr "Napotkano nieprzetwarzalne makro po %%"
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Nie znaleziono makra %%%.*s, makro pominiête"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "Przepe³nienie bufora docelowego"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Plik %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Plik %s jest mniejszy ni¿ %d bajtów"
@@ -4146,6 +4156,9 @@ msgstr "nie mo
 msgid "failed to create %s: %s\n"
 msgstr "utworzenie %s nie powiod³o siê\n"
 
+#~ msgid "undefined identifier"
+#~ msgstr "nieznany identyfikator"
+
 #, fuzzy
 #~ msgid "   --rcfile <file>        "
 #~ msgstr "      --rcfile <plik>     "
index 17e0e5d..92b0a6e 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-08-01 21:11+01:00\n"
 "Last-Translator: Pedro Morais <morais@poli.org>\n"
 "Language-Team: pt <morais@poli.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=iso-latin1\n"
 "Content-Transfer-Encoding: none\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1530,44 +1530,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2206,148 +2202,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2486,7 +2482,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2515,196 +2511,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2943,217 +2953,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3162,19 +3172,19 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr ""
 "não consegui abrir %s/packages.rpm\n"
 "\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3184,7 +3194,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3194,7 +3204,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3205,238 +3215,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3545,193 +3555,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3748,69 +3758,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3882,17 +3892,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index dcf7ea7..82c4e40 100644 (file)
@@ -2,9 +2,9 @@
 # Revised by Arnaldo Carvalho de Melo <acme@conectiva.com.br>, 1998.
 #
 msgid ""
-msgstr "POT-Creation-Date: 2000-10-26 11:14-0400\n"
+msgstr "POT-Creation-Date: 2000-10-28 12:51-0400\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1770,44 +1770,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2480,149 +2476,149 @@ msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "Construção falhou.\n"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "não foi passado pacote para instalação"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2762,7 +2758,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2793,203 +2789,217 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 #, fuzzy
 msgid "unexpected ]"
 msgstr "fonte de pesquisa não esperado"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 #, fuzzy
 msgid "unexpected }"
 msgstr "fonte de pesquisa não esperado"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -3254,225 +3264,225 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 #, fuzzy
 msgid "not installed "
 msgstr "não foi passado pacote para instalação"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
 # , c-format
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "Construção falhou.\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "pesquise todos os pacotes"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, fuzzy, c-format
 msgid "no package triggers %s\n"
 msgstr "não foram passados pacotes para assinatura"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "não foi passado pacote para instalação"
 
 # , c-format
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "Construção falhou.\n"
 
 # , c-format
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3482,18 +3492,18 @@ msgid ""
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3503,7 +3513,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3513,7 +3523,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3525,131 +3535,131 @@ msgid ""
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "Não consegui abrir: %s\n"
 
 # , c-format
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "não foi passado pacote para desinstalação"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
 # , c-format
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "reconstrua o banco de dados a partir de um banco de dados existente"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
@@ -3662,32 +3672,32 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "RPM versão %s\n"
 
 # , c-format
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 #, fuzzy
 msgid "counting packages to install\n"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, fuzzy, c-format
 msgid "found %d packages\n"
 msgstr "pesquise todos os pacotes"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
@@ -3700,92 +3710,92 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM versão %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
 # , c-format
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "não foi passado pacote para instalação"
 
 # , c-format
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "não foi passado pacote para instalação"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 #, fuzzy
 msgid "failed dependencies:\n"
 msgstr "lista dependências do pacote"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 #, fuzzy
 msgid "removing these packages would break dependencies:\n"
 msgstr "lista dependências do pacote"
 
 # , c-format
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3896,147 +3906,147 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "gere assinatura PGP"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 #, fuzzy
 msgid "unable to read the signature"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "Construção falhou.\n"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "gere assinatura PGP"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
@@ -4048,7 +4058,7 @@ msgstr ""
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "RPM versão %s\n"
@@ -4061,52 +4071,52 @@ msgstr "RPM vers
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM versão %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
 # , c-format
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "Não consegui abrir: %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -4124,69 +4134,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -4259,18 +4269,18 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "não foi passado pacote para desinstalação"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "Não consegui ler o arquivo spec de %s\n"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 0228a63..ac9eb21 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 1999-04-10 12:00+EST\n"
 "Last-Translator: Cristian Gafton <gafton@redhat.com>\n"
 "Language-Team: Romanian <ro@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1528,44 +1528,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2204,148 +2200,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2484,7 +2480,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2513,196 +2509,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2941,217 +2951,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3160,17 +3170,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3180,7 +3190,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3190,7 +3200,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3201,238 +3211,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3537,193 +3547,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3740,69 +3750,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3874,17 +3884,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 8b34a2a..18750d2 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 7df9dd3..0c16aa7 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: 1.1\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-08-08 01:20+0300\n"
 "Last-Translator: Leon Kanter <leon@blackcatlinux.com>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -10,7 +10,7 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "Date: 1999-04-03 12:20+0200\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "ÏÛÉÂËÁ ÏÔËÒÙÔÉÑ %s/packages.rpm\n"
@@ -1612,44 +1612,40 @@ msgstr "
 msgid "syntax error while parsing ||"
 msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ ÐÒÉ ÁÎÁÌÉÚÅ ||"
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr "ÏÛÉÂËÁ ÁÎÁÌÉÚÁ ×ÙÒÁÖÅÎÉÑ"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "ÎÅÚÁËÒÙÔÁÑ ("
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr "ÎÅÏÐÒÅÄÅÌÅÎÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! ÔÏÌØËÏ ÄÌÑ ÞÉÓÅÌ"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "ÔÉÐÙ ÄÏÌÖÎÙ ÓÏ×ÐÁÄÁÔØ"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* / ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ ÄÌÑ ÓÔÒÏË"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& É || ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ ÄÌÑ ÓÔÒÏË"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr "ÓÉÎÔÁËÓÉÞÅÓËÁÑ ÏÛÉÂËÁ × ×ÙÒÁÖÅÎÉÉ"
 
@@ -2290,148 +2286,148 @@ msgstr "
 msgid "line %d: Bad %s number: %s\n"
 msgstr "ÓÔÒÏËÁ %d: îÅ×ÅÒÎÏÅ ÞÉÓÌÏ %s: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÐÅÒÅÉÍÅÎÏ×ÁÔØ %s × %s: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(ÏÛÉÂËÁ 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "îÅ×ÅÒÎÙÊ magic"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "îÅ×ÅÒÎÙÊ/ÎÅÞÉÔÁÅÍÙÊ ÚÁÇÏÌÏ×ÏË"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "úÁÇÏÌÏ×ÏË ÓÌÉÛËÏÍ ×ÅÌÉË"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÔÉРÆÁÊÌÁ"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr "ïÔÓÕÔÓÔ×ÕÅÔ ÖÅÓÔËÁÑ ÓÓÙÌËÁ"
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr "÷ÎÕÔÒÅÎÎÑÑ ÏÛÉÂËÁ"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr "ÎÅ ÕÄÁÌÏÓØ - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "ÔÒÅÂÏ×ÁÎÉÑ ÐÁËÅÔÁ %s-%s-%s ÎÅ ÕÄÏ×ÌÅÔ×ÏÒÅÎÙ: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "ÐÁËÅÔ %s ËÏÎÆÌÉËÔÕÅÔ Ó: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2570,7 +2566,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(ÎÅ ÞÉÓÌÏ)"
 
@@ -2599,196 +2595,210 @@ msgid "file %s is on an unknown device"
 msgstr "ÆÁÊÌ %s - ÎÁ ÎÅÉÚ×ÅÓÔÎÏÍ ÕÓÔÒÏÊÓÔ×Å"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE count must be 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "îÅ×ÅÒÎÏÅ ÞÉÓÌÏ ÄÌÑ headerAddEntry(): %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"{\" ÐÏÓÌÅ \"%\""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ \"}\" ÐÏÓÌÅ \"%{\""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "ÐÕÓÔÏÊ ÆÏÒÍÁÔ ÔÜÇÁ"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "ÐÕÓÔÏÅ ÉÍÑ ÔÜÇÁ"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "ÎÅÉÚ×ÅÓÔÎÙÊ ÔÜÇ"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "× ËÏÎÃÅ ÍÁÓÓÉ×Á ÏÖÉÄÁÌÁÓØ \"]\""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"]\""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "ÎÅÏÖÉÄÁÎÎÁÑ \"}\""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÓÑ \"?\""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÁÓØ \"{\""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÏÖÉÄÁÌÁÓØ \"}\""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \"?\" ÏÖÉÄÁÌÏÓØ \":\""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "× ×ÙÒÁÖÅÎÉÉ ÐÏÓÌÅ \":\" ÏÖÉÄÁÌÁÓØ \"{\""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "× ËÏÎÃÅ ×ÙÒÁÖÅÎÉÑ ÏÖÉÄÁÌÓÑ \"|\""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(ÎÅÉÚ×ÅÓÔÎÙÊ ÔÉÐ)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "ÆÁÊÌ : %s ÄÅÊÓÔ×ÉÅ: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ, ÉÓÐÏÌØÚÕÀ root"
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "ÚÎÁÞÅÎÉÅ %%instchangelog × ÍÁËÒÏÆÁÊÌÅ ÄÏÌÖÎÏ ÂÙÔØ ÞÉÓÌÏÍ, Á ÏÎÏ ÎÅÔ..."
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "ÎÅ ÍÏÇÕ ÐÉÓÁÔØ × %s"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "ÉÓÈÏÄÎÉËÉ ×: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "ÆÁÊÌ spec ×: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ .spec"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÐÅÒÅÉÍÅÎÏ×ÁÎÉÑ %s × %s: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "ÏÖÉÄÁÌÓÑ ÉÓÈÏÄÎÙÊ ÐÁËÅÔ, ÎÁÊÄÅΠÂÉÎÁÒÎÙÊ"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "ÐÁËÅÔ: %s-%s-%s ÆÁÊÌÏ×; test = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "ÏÓÔÁÎÁ×ÌÉ×ÁÀ ÕÓÔÁÎÏ×ËÕ, Ô.Ë. ÍÙ ÉÓÐÏÌÎÑÅÍ --test\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ preinstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÚÄÁΠËÁË %s"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: %s ÓÏÈÒÁÎÅΠËÁË %s"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postinstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 3"
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr "ÜÔÁ ×ÅÒÓÉÑ RPM ÐÏÄÄÅÒÖÉ×ÁÅÔ ÔÏÌØËÏ ÐÁËÅÔÙ ×ÅÒÓÉÉ <= 3"
@@ -3027,217 +3037,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "ÎÅÉÚ×ÅÓÔÎÁÑ ÏÛÉÂËÁ %d ÐÒÉ ÒÁÂÏÔÅ Ó ÐÁËÅÔÏÍ %s-%s-%s"
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÏ×)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "ÎÏÒÍÁÌØÎÙÊ    "
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "ÚÁÍÅÎÅÎÎÙÊ    "
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅΠ"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "ÓÅÔÅ×ÏÊ       "
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(ÎÅÉÚ×. %3d)  "
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(ÓÏÓÔ. ÎÅÔ)   "
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÓÐÉÓËÏ× ÎÉ ÈÏÚÑÅ× ÆÁÊÌÏ×, ÎÉ ÉÈ ID"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "ÏÔËÒÙÔÉÅ %s ÎÅ ÕÄÁÌÏÓØ\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë SRPM × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s ÎÅ ÐÏÈÏÖ ÎÁ ÐÁËÅÔ RPM...\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "ÏÛÉÂËÁ ÚÁÐÒÏÓÁ %s\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "ÚÁÐÒÏÓ spec-ÆÁÊÌÁ %s ÎÅ ÕÄÁÌÓÑ, ÎÅ ÍÏÇÕ ÒÁÚÏÂÒÁÔØ ÆÁÊÌ\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÏÄÅÒÖÉÔ ÎÉËÁËÉÈ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ×Ú×ÏÄÉÔ ÔÒÉÇÇÅÒ %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÔÒÅÂÕÅÔ %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "ÎÉ ÏÄÉΠÉÚ ÐÁËÅÔÏ× ÎÅ ÐÒÅÄÏÓÔÁ×ÌÑÅÔ %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "ÆÁÊÌ %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "ÆÁÊÌ %s ÎÅ ÐÒÉÎÁÄÌÅÖÉÔ ÎÉ ÏÄÎÏÍÕ ÉÚ ÐÁËÅÔÏ×\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÎÏÍÅÒ ÐÁËÅÔÁ: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr "ÚÁÐÉÓØ ÐÁËÅÔÁ ÎÏÍÅÒ %d\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "ÚÁÐÉÓØ %d ÎÅ ÞÉÔÁÅÔÓÑ\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: ïÛÉÂËÁ ÏÔËÒÙÔÉÑ\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr "ÚÁÐÕÓË ÎÅ ÕÄÁÌÓÑ\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÏÄÐÉÓÁÔØ RPM v1.0\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: îÅ ÍÏÇÕ ÐÅÒÅÐÏÄÐÉÓÁÔØ RPM v2.0\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ readLead\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ rpmReadSignature\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: ðÏÄÐÉÓÉ ÎÅÔ (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "îå Ok"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr " (ïôóõôóô÷õàô ëìàþé:"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr " ("
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "Ok"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3246,17 +3256,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s ÎÁ %s:%d"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3266,7 +3276,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3276,7 +3286,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3287,26 +3297,26 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "ÏÛÉÂËÁ ÐÏÌÕÞÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "ÏÛÉÂËÁ ÓÏÈÒÁÎÅÎÉÑ ÚÁÐÉÓÉ %s × %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ÚÁÐÉÓÉ %s ÉÚ %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "ÎÅ ÕÓÔÁÎÏ×ÌÅÎÁ dbpath"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3315,212 +3325,212 @@ msgstr ""
 "ÂÁÚÙ ÎÏ×ÏÇÏ ÆÏÒÍÁÔÁ"
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÈÅÄÅÒ × %d ÄÌÑ ÐÏÉÓËÁ"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "ÕÄÁÌÑÀ ÚÁÐÉÓØ ÂÁÚÙ ÄÁÎÎÙÈ\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÇÒÕÐÐ\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "ÕÄÁÌÑÀ ÉÎÄÅËÓ ÉÍÅÎ\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "ÐÅÒÅÉÍÅÎÏ×Ù×ÁÀ %s × %s\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ÐÅÒÅÓÔÒÁÉ×ÁÀ ÂÁÚÕ × ËÏÒÎÅ×ÏÍ ËÁÔÁÌÏÇÅ %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "×ÒÅÍÅÎÎÁÑ ÂÁÚÁ ÄÁÎÎÙÈ %s ÕÖÅ ÓÕÝÅÓÔ×ÕÅÔ"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÓÔÁÒÕÀ ÂÁÚÕ\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "ÏÔËÒÙ×ÁÀ ÎÏ×ÕÀ ÂÁÚÕ\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "ÚÁÐÉÓØ ÎÏÍÅÒ %d × ÂÁÚÅ ÎÅ×ÅÒÎÁ, ÐÒÏÐÕÓËÁÀ"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "ÎÅ ÍÏÇÕ ÄÏÂÁ×ÉÔØ ÚÁÐÉÓØ (ÐÅÒ×ÏÎÁÞÁÌØÎÏ × %d)"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "ÐÅÒÅÓÔÒÏÅÎÉÅ ÂÁÚÙ ÎÅ ÕÄÁÌÏÓØ, ÓÔÁÒÁÑ ÂÁÚÁ ÏÓÔÁÅÔÓÑ ÎÁ ÍÅÓÔÅ\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "ÚÁÍÅÎÁ ÓÔÁÒÏÊ ÂÁÚÙ ÎÁ ÎÏ×ÕÀ ÎÅ ÕÄÁÌÁÓØ!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "ÄÌÑ ×ÏÓÓÔÁÎÏ×ÌÅÎÉÑ ÚÁÍÅÎÑÅÔ ÆÁÊÌÙ × %s ÆÁÊÌÁÍÉ ÉÚ %s"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "ÕÄÁÌÅÎÉÅ ËÁÔÁÌÏÇÁ %s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "ÓÞÉÔÁÀ ÐÁËÅÔÙ ÄÌÑ ÕÓÔÁÎÏ×ËÉ\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "ÉÝÕ ÐÁËÅÔÙ ÄÌÑ ÐÏÌÕÞÅÎÉÑ Ó ftp/http\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "ÐÒÏÐÕÓËÁÀ %s - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "ðÏÌÕÞÁÀ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "ÐÒÏÐÕÓËÁÀ %s - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "ÐÏÌÕÞÅÎÏ %d ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÆÁÊÌ %s ÔÒÅÂÕÅÔ ÂÏÌÅÅ ÎÏ×ÏÊ ×ÅÒÓÉÉ RPM\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÀ %s\n"
@@ -3625,196 +3635,196 @@ msgstr "
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "ÒÁÚÍÅÒ ÐÏÄÐÉÓÉ  : %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "èÅÄÅÒ + áÒÈÉ×   : %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "ÏÖÉÄÁÅÍÙÊ ÒÁÚÍÅÒ: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr "ÎÅ ÏÂÙÞÎÙÊ ÆÁÊÌ -- ÐÒÏÐÕÓËÁÀ ÐÒÏ×ÅÒËÕ ÒÁÚÍÅÒÁ\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "ðÏÄÐÉÓÉ ÎÅÔ\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "óÔÁÒÁÑ PGP-ÐÏÄÐÉÓØ\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 "óÔÁÒÁÑ (ÔÏÌØËÏ ÄÌÑ ×ÎÕÔÒÅÎÎÅÇÏ ÉÓÐÏÌØÚÏ×ÁÎÉÑ) ÐÏÄÐÉÓØ! çÄÅ ×Ù üôï ×ÚÑÌÉ!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "îÏ×ÁÑ ÐÏÄÐÉÓØ ÈÅÄÅÒÁ\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ      : %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "úÁÐÏÌÎÉÔÅÌØ ÐÏÄÐÉÓÉ : %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ pgp"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "ÏÛÉÂËÁ pgp"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "ÏÛÉÂËÁ pgp ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ PGP  : %d\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "ÎÅ ÍÏÇÕ ÐÒÏÞÅÓÔØ ÐÏÄÐÉÓØ"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ PGP\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ gpg"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "ÏÛÉÂËÁ gpg"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr "ÏÛÉÂËÁ gpg ÐÒÉ ÚÁÐÉÓÉ ÐÏÄÐÉÓÉ"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "òÁÚÍÅÒ ÐÏÄÐÉÓÉ GPG: %d\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "ðÏÌÕÞÅÎÏ %d ÂÁÊÔ ÐÏÄÐÉÓÉ GPG\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr "çÅÎÅÒÉÒÕÀ ÐÏÄÐÉÓØ: %d\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 "îÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ pgp. éÓÐÏÌØÚÕÊÔÅ --nopgp ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ PGP."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "ÏÛÉÂËÁ ÚÁÐÕÓËÁ!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 "îÅ ÍÏÇÕ ÚÁÐÕÓÔÉÔØ gpg. éÓÐÏÌØÚÕÊÔÅ --nogpg ÞÔÏÂÙ ÐÒÏÐÕÓÔÉÔØ ÐÒÏ×ÅÒËÕ GPG."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "îÅ ÍÏÇÕ ÉÓÐÏÌÎÉÔØ pgp"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "îÅ×ÅÒÎÁÑ ÓÐÅÃÉÆÉËÁÃÉÑ %%_signature × ÍÁËÒÏÆÁÊÌÅ"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_gpg_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "÷Ù ÄÏÌÖÎÙ ÕÓÔÁÎÏ×ÉÔØ \"%%_pgp_name:\" × ×ÁÛÅÍ ÍÁËÒÏÆÁÊÌÅ"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "ÉÓËÌÀÞÁÀ %s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÓÏÚÄÁÀ ËÁÔÁÌÏÇ: %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "ÐÅÒÅÍÅÝÁÀ %s × %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "ÎÅ ÍÏÇÕ ÕÄÁÌÉÔØ %s - ËÁÔÁÌÏÇ ÎÅ ÐÕÓÔ"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ ËÁÔÁÌÏÇÁ %s: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "ÏÛÉÂËÁ ÕÄÁÌÅÎÉÑ %s: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "ÕÄÁÌÉÔ ÆÁÊÌÙ; test = %d\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "ÉÓÐÏÌÎÑÀ ÓËÒÉÐÔ postuninstall (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "ÏÛÉÂËÁ ÉÓÐÏÌÎÅÎÉÑ ÓËÒÉÐÔÁ"
@@ -3831,69 +3841,69 @@ msgstr "
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr "× ÐÁËÅÔÅ ÎÅÔ ÎÉ ÉÍÅΠÇÒÕÐÐ, ÎÉ ÉÈ ID (ÔÁË ÎÅ ÂÙ×ÁÅÔ)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "õÄÁÌÏÓØ"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr "îÅ×ÅÒÎÙÊ ÏÔ×ÅÔ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "ôÁÊÍÁÕÔ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ IP-ÁÄÒÅÓ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr "îÅ ÍÏÇÕ ÎÁÊÔÉ ÉÍÑ ÓÅÒ×ÅÒÁ"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr "îÅ ÍÏÇÕ ÓÏÅÄÉÎÉÔØÓÑ Ó ÓÅÒ×ÅÒÏÍ"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr "îÅ ÍÏÇÕ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ Ó ÓÅÒ×ÅÒÏÍ"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "ïÛÉÂËÁ ××ÏÄÁ/×Ù×ÏÄÁ × ÌÏËÁÌØÎÙÊ ÆÁÊÌ"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "ïÛÉÂËÁ ÐÒÉ ÐÅÒÅ×ÏÄÅ ÕÄÁÌÅÎÎÏÇÏ ÓÅÒ×ÅÒÁ × ÐÁÓÓÉ×ÎÙÊ ÒÅÖÉÍ"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "æÁÊÌ ÎÅ ÎÁÊÄÅΠÎÁ ÓÅÒ×ÅÒÅ"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "ïÔÍÅÎÁ × ÐÒÏÃÅÓÓÅ"
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÉÌÉ ÎÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "ÒÅÇÉÓÔÒÉÒÕÀÓØ × %s ËÁË %s, ÐÁÒÏÌØ %s\n"
@@ -3965,17 +3975,17 @@ msgstr "%% 
 msgid "Macro %%%.*s not found, skipping"
 msgstr "íÁËÒÏÓ %s ÎÅ ÎÁÊÄÅÎ, ÐÒÏÐÕÓËÁÀ"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "ðÅÒÅÐÏÌÎÅÎÉÅ ÃÅÌÅ×ÏÇÏ ÂÕÆÅÒÁ"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "æÁÊÌ %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "æÁÊÌ %s ÍÅÎØÛÅ %d ÂÁÊÔ"
@@ -4045,6 +4055,9 @@ msgstr "
 msgid "failed to create %s: %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÓÏÚÄÁÔØ %s\n"
 
+#~ msgid "undefined identifier"
+#~ msgstr "ÎÅÏÐÒÅÄÅÌÅÎÎÙÊ ÉÄÅÎÔÉÆÉËÁÔÏÒ"
+
 #~ msgid "loop in prerequisite chain: %s"
 #~ msgstr "ÚÁÍËÎÕÔÙÊ ÃÉËÌ × ÃÅÐÏÞËÅ ÔÒÅÂÏ×ÁÎÉÊ ÄÌÑ ÕÓÔÁÎÏ×ËÉ: %s"
 
index 75fec68..64ff047 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 1999-04-08 21:37+02:00\n"
 "Last-Translator: Stanislav Meduna <stano@eunet.sk>\n"
 "Language-Team: Slovak <sk-i18n@rak.isternet.sk>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
@@ -1694,44 +1694,40 @@ msgstr "chyba syntaxe vo v
 msgid "syntax error while parsing ||"
 msgstr "chyba syntaxe vo výraze"
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr "chyba pri analýze výrazu"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "nepárová ("
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr "nedefinovaný identifikátor"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- ibe pre èísla"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! iba pre èísla"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "typy sa musia zhodova»"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* / nie sú podporované pre re»azce"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- nie je podporované pre re»azce"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& a || nie sú podporované pre re»azce"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr "chyba syntaxe vo výraze"
 
@@ -2372,148 +2368,148 @@ msgstr "riadok %d: Chybn
 msgid "line %d: Bad %s number: %s\n"
 msgstr "riadok %d: Chybné %s èíslo: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "premenovanie %s na %s zlyhalo: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(chyba 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "Chybné magické èíslo"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "Chybná/neèitateµná hlavièka"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "Priveµká hlavièka"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr "Neznámy typ súboru"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr "Interná chyba"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr " zlyhalo - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "po¾iadavka balíka %s nie je uspokojená: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "balík %s koliduje: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "odstraòuje sa index skupín\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2652,7 +2648,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(nie je èíslo)"
 
@@ -2681,198 +2677,212 @@ msgid "file %s is on an unknown device"
 msgstr "súbor %s sa nachádza na neznámom zariadení"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE poèet musí by» 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "Chybný poèet pre headerAddEntry(): %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "chýbajúce { po %"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "chýbajúce } po %{"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "prázdny tag formát"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "prázdne meno tagu"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "neznámy tag"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "] oèakávané na konci poµa"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "neoèakávané ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "neoèakávané }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "? oèakávané vo výraze"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "{ oèakávané po ? vo výraze"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "} oèakávané vo výraze"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ": oèakávané po ? podvýraze"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "{ oèakávané po : vo výraze"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "| oèakávené na konci výrazu"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(neznámy typ)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   súbor: akcia %s: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "hodnota %%instchangelog v makro-súbore by mala by» èíselná, ale nie je"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "in¹taluje sa zdrojový balík\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "zdroje v: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-súbor v: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "premenovanie %s na %s zlyhalo: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "in¹talácia zastavená kvôli re¾imu --test\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "vykonávajú sa predin¹talaèné skripty (ak existujú)\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varovanie: %s vytvorené ako %s"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varovanie: %s uchovaný ako %s"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 #, fuzzy
 msgid "running postinstall scripts (if any)\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr "táto verzia RPM podporuje iba balíky s hlavným èíslom <= 3"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3129,219 +3139,219 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "chyba formátu: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(neobsahuje ¾iadne súbory)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "normálny      "
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "nahradený     "
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "nein¹talovaný "
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "zdieµaný      "
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznámy %d)  "
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(¾iadny stav) "
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "balík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s zrejme nie je RPM balík\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "otázka na %s zlyhala\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "otázka na spec-súbor %s zlyhala, nie je mo¾né analyzova»\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s neobsahuje ¾iadne balíky\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "¾iadny z balíkov nevy¾aduje %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "¾iadny z balíkov neposkytuje %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "súbor %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "súbor %s nie je vlastnený ¾iadnym balíkom\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "chybné èíslo balíku: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "po¾aduje sa záznam èíslo %d\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: otvorenie zlyhalo\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "vykonanie zlyhalo\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: Nie je mo¾né podpísa» v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Nie je mo¾né znovu podpísa» v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis nie je k dispozícii\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmReadSignature zlyhalo\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Podpis nie je k dispozícii (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "NIE JE V PORIADKU"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr " (CHÝBAJÚCE K¥ÚÈE):"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEDÔVERUJE SA K¥ÚÈOM: "
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "V PORIADKU"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3350,17 +3360,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "nie je mo¾né otvori» %s na %s:%d"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3370,7 +3380,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3380,7 +3390,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3391,26 +3401,26 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "chyba pri naèítaní záznamu %s z %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "chyba pri zápise záznamu %s do %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "chyba pri odstraòovaní záznamu %s z %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "nebola nastavená ¾iadna dbpath"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3419,213 +3429,213 @@ msgstr ""
 "databázy v novom formáte"
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "chyba pri hµadaní balíka %s\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "nie je mo¾né preèíta» hlavièku na %d pre vyhµadanie"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstraòuje sa záznam z databázy\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstraòuje sa index skupín\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstraòuje sa index názvov\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "chyba pri hµadaní balíka %s\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "premenováva sa %s na %s\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "znovu sa vytvára databáza v adresári %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "doèasná databáza %s u¾ existuje"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "chyba pri vytváraní adresára %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "otvára sa stará databáza\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "otvára sa nová databáza\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "záznam èíslo %d v databáze je chybný -- bol vynechaný"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "nie je mo¾né prida» záznam pôvodne na %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "nepodarilo sa znovu vytvori» databázu; zostáva pôvodná\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "nepodarilo sa nahradi» starú databázu novou!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "nahradí súbory v %s súbormi z %s kvôli obnove"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "nepodarilo sa odstráni» adresár %s: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "poèítajú sa balíky pre in¹taláciu\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "hµadajú sa balíky, ktoré treba prenies»\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prená¹a sa %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "prenieslo sa %d balíkov\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "nájdených %d zdrojových a %d binárnych balíkov\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
@@ -3730,195 +3740,195 @@ msgstr "Nezn
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "veµkos» podpisu  : %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "Hlavièka a archív: %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "oèakávaná veµkos»: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr "nejde o be¾ný súbor - kontrola veµkosti vynechaná\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "Podpis nie je k dispozícii\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "Starý PGP podpis\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Starý (iba interný) podpis! Ako ste sa k tomu dostali?!"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "Nová hlavièka podpisu\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Veµkos» podpisu:   %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Doplnenie podpisu: %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Nie je mo¾né spusti» pgp"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp zlyhalo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Veµkos» PGP podpisu: %d\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "nie je mo¾né preèíta» podpis"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Preèítaný PGP podpis obsahuje %d bajtov\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr "Nie je mo¾né spusti» gpg"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "gpg zlyhalo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr "gpg sa nepodarilo zapísa» podpis"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Veµkos» GPG podpisu: %d\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Preèítaný GPG podpis obsahuje %d bajtov\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "Vytvára sa PGP podpis: %d\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "Vytvára sa PGP podpis: %d\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Nie je mo¾né spusti» pgp. Pou¾ite --nopgp pre vynechanie PGP kontrol."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "vykonanie zlyhalo!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Nie je mo¾né spusti» gpg. Pou¾ite --nogpg pre vynechanie GPG kontrol."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Nie je mo¾né spusti» pgp"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "Chybná ¹pecifikácia podpisu %%_signature v makro-súbore"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Musíte nastavi» \"%%gpg_name\" vo va¹om makro-súbore"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Musíte nastavi» \"%%pgp_name\" vo va¹om makro-súbore"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "vynecháva sa %s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "presúva sa %s do %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "nie je mo¾né odstráni» %s - adresár nie je prázdny"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "rmdir %s zlyhalo: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "odstránenie %s zlyhalo: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "budú sa odstraòova» súbory test = %d\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "vykonávajú sa postdein¹talaèné skripty (ak existujú)\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "vykonanie skriptu zlyhalo"
@@ -3940,69 +3950,69 @@ msgstr ""
 "v balíku chýba tak meno skupiny, ako aj zoznamy identifikácií (nemalo by sa "
 "nikdy sta»)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "Úspech"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr "Chybná odpoveï servera"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr "Chyba vstupu/výstupu servera"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "Prekroèenie èasového limitu servera"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr "Nie je mo¾né vyhµada» adresu servera"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr "Nie je mo¾né vyhµada» názov servera"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr "Pripojenie k serveru zlyhalo"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr "Vytvorenie dátového spojenia k serveru zlyhalo"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "Chyba vstupu/výstupu lokálneho súboru"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Chyba pri nastavení vzdialeného servera do pasívneho re¾imu"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Súbor sa na serveri nenachádza"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "Zru¹enie prebieha"
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "Neznáma alebo neoèakávaná chyba"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "prihlasuje sa na %s ako %s, heslo %s\n"
@@ -4074,17 +4084,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "balík %%%.*s nebol nájdený, vynecháva sa"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "Preplnenie cieµovej vyrovnávacej pamäti"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Súbor %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Súbor %s je men¹í ako %d bajtov"
@@ -4154,6 +4164,9 @@ msgstr "nepodarilo sa otvori
 msgid "failed to create %s: %s\n"
 msgstr "nepodarilo sa vytvori» %s\n"
 
+#~ msgid "undefined identifier"
+#~ msgstr "nedefinovaný identifikátor"
+
 #~ msgid "loop in prerequisite chain: %s"
 #~ msgstr "sluèka v re»azi po¾iadaviek: %s"
 
index d3a3249..6d98a46 100644 (file)
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,12 +1,12 @@
 # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr.
 # Copyright (C) 2000 Free Software Foundation, Inc.
 # Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>, 2000.
-# $Id: sl.po,v 1.102 2000/10/26 15:32:14 jbj Exp $
+# $Id: sl.po,v 1.103 2000/10/28 17:16:29 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-02-17 22:25+01:00\n"
 "Last-Translator: Primo¾ Peterlin <primoz.peterlin@biofiz.mf.uni-lj.si>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-2\n"
 "Content-Transfer-Encoding: 8-bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "datoteke %s/packages.rpm ni mo¾no odpreti\n"
@@ -1678,44 +1678,40 @@ msgstr "napaka v skladnji pri raz
 msgid "syntax error while parsing ||"
 msgstr "napaka v skladnji pri razèlembi ||"
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr "napaka pri razèlembi v izrazu"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "nezakljuèen ("
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr "nedefiniran identifikator"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- samo na ¹tevilih"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! samo na ¹tevilih"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "tipi se morajo ujemati"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* in / nista podprta na nizih"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- ni podprt na nizih"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& in || nista podprta na nizih"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr "napaka v sklanji v izrazu"
 
@@ -2356,60 +2352,60 @@ msgstr "vrstica %d: Okvarjeno 
 msgid "line %d: Bad %s number: %s\n"
 msgstr "vrstica %d: Okvarjeno ¹tevilo %s: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "ni mo¾no preimenovati %s v %s: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "ni mo¾no zbrisati %s: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(napaka 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "Okvarjeno magièno ¹tevilo"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "Okvarjena/neberljiva glava"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "Glava predolga"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr "Neznan tip datoteke"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr "Trda povezava manjka"
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr "Interna napaka"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr " neuspe¹no - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2418,88 +2414,88 @@ msgstr ""
 "odvisnost \"B\" potrebuje \"epoch\" (privzeto enak kot \"A\")\n"
 "\tA %s\tB %s\n"
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, fuzzy, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr "%s: %s zadovoljen ob dodatnem seznamu datotek.\n"
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, fuzzy, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr "%s: %s zadovoljen ob dodatni ponudbi.\n"
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n"
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %s zadovoljen ob dodatnem ponudbi rpmrc.\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, fuzzy, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %s zadovoljen ob ponudbi db.\n"
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: %s zadovoljen ob dodatnem paketu.\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paket %s zahteva, a ni zadovoljeno: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s v sporu: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2642,7 +2638,7 @@ msgstr ""
 "na strani http://www.rpm.org ali po dopisni listi rpm-list@redhat.com.\n"
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(ni ¹tevilo)"
 
@@ -2671,197 +2667,211 @@ msgid "file %s is on an unknown device"
 msgstr "datoteka %s se nahaja na neznani napravi"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "¹tevec grabData() RPM_STRING_TYPE mora biti 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "Okvarjen ¹tevec za headerAddEntry(): %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "manjkajoèi { za %"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "manjkajoèi } za %{"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "oblika znaèke manjka"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "ime znaèke manjka"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "neznana znaèka"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "] ni prièakovan na koncu polja"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "neprièakovan ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "neprièakovan }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "? prièakovan v izrazu"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "{ prièakovan za ? v izrazu"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "} prièakovan v izrazu"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ": prièakovan za podizrazom ?"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "{ prièakovan za : v izrazu"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "| prièakovan na koncu izraza"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(neznan tip)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr " datoteka: %s akcija: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "uporabnik %s ne obstaja - uporabljamo root"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "skupina %s ne obstaja - uporabljamo root"
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "vrednost %%instchangelog v makrodatoteki bi morala biti ¹tevilo, pa ni"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "razpakiranje arhiva neuspe¹no%s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr " pri datoteki "
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "name¹èanje izvornega paketa\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "ni mo¾no ustvariti izvornega imenika %s"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "ni mo¾no pisanje na %s"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "izvori v: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "ni mo¾no ustvariti imenika z doloèili spec %s"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "datoteka spec v: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s v %s neuspe¹no: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "prièakovan izvorni paket, najden binarni"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "ustavljamo namestitev ker teèemo kot --test\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "poganjamo prednamestitvene skripte (èe obstajajo)\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "opozorilo: %s ustvarjen kot %s"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "opozorilo: %s shranjen kot %s"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr "poganjamo ponamestitvene skripte (èe obstajajo)\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr "ta razlièica RPM podpira samo pakete z glavnim ¹tevilom razlièice <= 3"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3116,218 +3126,218 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "neznana napaka %d ob rokovanju s paketom %s-%s-%s"
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "napaka v obliki: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(ne vsebuje datotek)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "normalno      "
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "nadome¹èeno   "
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "ni name¹èeno  "
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "omre¾ni       "
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(neznano %3d) "
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(brez stanja) "
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "ni mo¾no zbrisati %s: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "odpiranje %s neuspe¹no: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s najverjetneje ni paket RPM\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "poizvedba po %s neuspe¹na\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "poizvedba po datoteki spec %s neuspe¹na, razèlemba ni mo¾na\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "najdeno %d paketov\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "skupina %s ne vsebuje nobenega paketa\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "noben paket ne pro¾i %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "noben paket ne potrebuje %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "noben paket ne nudi %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "datoteka %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ni del nobenega paketa\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "neveljavna ¹tevilka paketa: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "¹tevilka zapisa paketa: %d\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: odpiranje neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile neuspe¹en\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: pisanje Fwrite neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead neuspe¹en\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: Podpis RPM v1.0 ni mo¾en\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Sprememba podpisa RPM v2.0 ni mo¾na\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature neuspe¹en\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Podpis ni na voljo\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead neuspe¹en: %s\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature neuspe¹no: %s\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Podpis ni na voljo (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "NI DOBRO"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr " (MANJKAJOÈI KLJUÈI:"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr " (NEPREVERJENI KLJUÈI:"
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "V REDU"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3336,17 +3346,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "ni mo¾no odpreti %s v %s:%d: %s"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3356,7 +3366,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3366,7 +3376,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3377,240 +3387,240 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "napaka pri branju zapisa %s iz %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "napaka pri pisanju zapisa %s v %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "napaka pri brisanju zapisa %s iz %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "dbpath ni nastavljena"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr "staro obliko podatkove zbirke pretvorite v novo z --rebuilddb"
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "napaka pri iskanju paketa %s\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "ni mo¾no prebrati glave pri %d za vpogled"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, fuzzy, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "odstranjujemo vnose v podatkovni zbirki\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "odstranjujemo seznam skupin\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "odstranjujemo seznam imen\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "napaka pri iskanju paketa %s\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, fuzzy, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "preimenujemo %s v %s\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "ponovna izgradnja podatkovne zbirke %s v %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "zaèasna podatkovna zbirka %s ¾e obstaja"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "ustvarjamo imenik: %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "napaka pri ustvarjanju imenika %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "odpiramo staro podatkovno zbirko\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "odpiramo novo podatkovno zbirko\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "zapis ¹t. %d v zbirki je okvarjen -- preskakujemo."
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "zapisa ni mo¾no dodati na %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 #, fuzzy
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 "ponovna izgradnja podatkovne zbirke neuspe¹na; stara ostaja na istem mestu\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "zamenjava stare podatkovne zbirke z novo neuspe¹na!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, fuzzy, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "posku¹amo povrniti z nadomestitvijo datotek v %s z datotekami iz %s"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "ustvarjamo imenik: %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspe¹na odstranitev imenika %s: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "¹tetje paketov za namestitev\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "najdeno %d paketov\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "iskanje paketov za prenos po omre¾ju\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "preskakujemo %s - rpmGlob neuspe¹en(%d)\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prena¹amo %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskakujemo %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "prenesli smo %d paketov\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "paketa ni mo¾no odpreti: %s\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketa %s ni mo¾no prestaviti\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "datoteka %s zahteva novej¹o razlièico RPM\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "name¹èamo binarne pakete\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veèterne pakete\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èamo %s\n"
@@ -3715,193 +3725,193 @@ msgstr "Neznan sistem: %s\n"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "dol¾ina podpisa : %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "glava in arhiv  : %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "prièakovana vel.: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr "datoteka ni navadna datoteka -- preskakujemo preverjanje velikosti\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "Podpis manjka\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "Stari podpis PGP\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Podpis v (interni) stari obliki! Kje ste ga dobili?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "Podpis v novi glavi\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Dol¾. podpisa : %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Dol¾. polnila : %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Ni mo¾no pognati pgp (%s)"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp neuspe¹en"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "Dol¾. podpisa PGP: %d\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "branje podpisa neuspe¹no"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Prebrano %d bajtov podpisa PGP\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr "Ni mo¾no pognati gpg"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "gpg neuspe¹en"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr "gpg neuspe¹en pri zapisu podpisa"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "Dol¾. podpisa GnuPG: %d\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Prebrano %d bajtov podpisa GnuPG\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr "Ustvarjamo podpis s PGP.\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr "Ustvarjamo podpis z GnuPG.\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Ni mo¾no pognati pgp. Preverjanja PGP lahko preskoèite z --nopgp"
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "zagon neuspe¹en!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Ni mo¾no pognati gpg. Preverjanja GnuPG lahko preskoèite z --nogpg"
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Ni mo¾no pognati pgp"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "Neveljavno doloèilo %%_signature v makrodatoteki"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "V makrodatoteki morate nastaviti \"%%_pgp_name\""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "izkljuèujemo datoteko %s%s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèujemo imenik %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "prestavljamo %s v %s\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "prestavljamo imenik %s v %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "ni mo¾no odstraniti %s - imenik ni prazen"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "odstranitev imenika %s neuspe¹na: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "odstranitev %s neuspe¹na: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "datoteke bomo odstranili, test = %d\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "poganjamo poodnamestitvene skripte (èe obstajajo)\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "skript se ni uspe¹no izvedel"
@@ -3920,69 +3930,69 @@ msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "v paketu manjka tako seznam skupin kot identitet (to se ne more zgoditi)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "Uspe¹no"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr "Okvarjen odziv stre¾nika"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr "V/I napaka na stre¾niku"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "Potekel èas na stre¾niku"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr "Naslov stre¾nika ni ugotovljiv"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr "Ime stre¾nika ni ugotovljivo"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr "Neuspe¹en poskus prikljuèitve na stre¾nik"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr "Neuspe¹na vzpostavitev podatkovne povezave s stre¾nikom"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "V/I napaka na lokalni datoteki"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Napaka pri nastavitvi oddaljenega stre¾nika v pasivni naèin"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Datoteke ni mo¾no najti na stre¾niku"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "Prekinitev v teku"
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "Neznana ali neprièakovana napaka"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "prijava na %s kot %s, geslo %s\n"
@@ -4054,17 +4064,17 @@ msgstr "Oznaki %% sledi neraz
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Makro %%%.*s ni najden, preskoèimo"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "Ciljni medpomnilnik prekoraèen"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Datoteka %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Datoteka %s je kraj¹a od %d bajtov"
@@ -4134,6 +4144,9 @@ msgstr "neuspe
 msgid "failed to create %s: %s\n"
 msgstr "neuspe¹no ustvarjanje %s: %s\n"
 
+#~ msgid "undefined identifier"
+#~ msgstr "nedefiniran identifikator"
+
 #~ msgid "loop in prerequisite chain: %s"
 #~ msgstr "zanka v predpogojevani verigi: %s"
 
index 35f985b..593002f 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,13 +1,13 @@
 msgid ""
 msgstr ""
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 "From: Erik Troan <ewt@lacrosse.redhat.com>\n"
 "Xgettext-Options: --default-domain=rpm --add-comments --keyword=_ "
 "--keyword=N_\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
@@ -1681,45 +1681,41 @@ msgstr "o
 msgid "syntax error while parsing ||"
 msgstr "oèekivan znak ? u izrazu"
 
-#: build/expression.c:288
+#: build/expression.c:286
 #, fuzzy
 msgid "parse error in expression"
 msgstr "oèekivan znak ? u izrazu"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "oèekivan znak ? u izrazu"
@@ -2362,151 +2358,151 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "Neuspelo èitanje %s: %s."
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "gre¹ka: "
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(nepoznat tip)"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 #, fuzzy
 msgid "Internal error"
 msgstr "fatalna gre¹ka: "
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "PGP omanuo"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paket %s nije naveden u %s"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s nije naveden u %s"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2645,7 +2641,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(nije broj)"
 
@@ -2674,201 +2670,215 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "nedostaje { posle %"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "nedostaje } posle %"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "prazan 'tag' format'"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "prazno ime tag-a"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "nepoznat tag"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "] oèekivano na kraju niza"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "neoèekivano ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "neoèekivano }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "oèekivan znak ? u izrazu"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "{ oèekivano posle ? u izrazu"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "} oèekivano u izrazu"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "oèekivano : praæeno ? podizrazom"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "{ oèekivano posle : u izrazu"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "| oèekivano na kraju izraza"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(nepoznat tip)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "instaliraj paket"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "preimenovanje %s u %s nije uspelo: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr "samo paketi sa glavnim brojevima <= 3 su podr¾ani u ovoj verziji RPM-a"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3136,221 +3146,221 @@ msgstr "paket %s-%s-%s sadr
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(nema datoteka)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 #, fuzzy
 msgid "not installed "
 msgstr "paket %s nije instaliran\n"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(nepoznat tip)"
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s ne lièi na RPM paket\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "upit nad %s neuspeo\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "upit nad svim paketima"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "nijedan paket ne zahteva %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "nijedan paket ne obezbeðuje %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "datoteka %s ne pripada nijednom paketu\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "pogre¹an broj paketa: %s\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: Ne mogu da potpi¹em v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Ne mogu da ponovo potpi¹em v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: Neuspelo 'rpmReadSignature'\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Potpis nije na raspolaganju (RPM v1.0)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (NEDOSTAJUÆI KLJUÈEVI)"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3359,17 +3369,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3379,7 +3389,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3389,7 +3399,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3400,241 +3410,241 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "gre¹ka kod uzimanja sloga %s iz %s"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "gre¹ka zapisivanja sloga %s u %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "dbpath nije odreðen"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "ne mogu da proèitam zaglavlje na %d za proveru"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "gre¹ka uklanjanja sloga %s u %s"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "privremena baza podataka %s veæ postoji"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "rekreiraj bazu podataka iz postojeæe baze"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "slog broj %d u bazi podataka je neispravan -- preskaèem ga"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "ne mogu da dodam slog originalno na %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 #, fuzzy
 msgid "counting packages to install\n"
 msgstr "nedostaje paket za instalaciju"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, fuzzy, c-format
 msgid "found %d packages\n"
 msgstr "upit nad svim paketima"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 #, fuzzy
 msgid "looking for packages to download\n"
 msgstr "gre¹ka kod potrage za paketom %s\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
@@ -3739,205 +3749,205 @@ msgstr "(nepoznat tip)"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Potpis nije na raspolaganju\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "napravi PGP potpis"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Stari (interni) potpis!  Odakle vam!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "ne mogu da proèitam potpis"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "PGP omanuo"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "ne mogu da proèitam potpis"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "Ne mogu da izvr¹im PGP"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "PGP omanuo"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "PGP nije uspeo da zapi¹e potpis"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "napravi PGP potpis"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "napravi PGP potpis"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: Neuspelo otvaranje\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Ne mogu da pokrenem pgp. Koristite --nopgp da preskoèite PGP proveru."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Ne mogu da izvr¹im PGP"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Morate podesiti \"pgp_name:\" u va¹oj rpmrc datoteci"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "Pribavljam %s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "ne mogu da uklonim %s - direktorijum nije prazan"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "neuspela komanda rmdir %s: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "uklanjanje %s nije uspelo: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "neuspelo izvr¹avanje skripta"
@@ -3955,77 +3965,77 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 #, fuzzy
 msgid "Bad server response"
 msgstr "Lo¹ odgovor FTP servera"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 #, fuzzy
 msgid "Server IO error"
 msgstr "Ulazno/izlazna FTP gre¹ka"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 #, fuzzy
 msgid "Server timeout"
 msgstr "Tajm-aut FTP servera"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "Ne mogu da odredim host adresu FTP servera"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "Ne mogu da odredim ime FTP hosta"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "Ne mogu da se pove¾em sa FTP serverom"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "Ne mogu da uspostavim vezu podataka sa FTP serverom"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "Ulazno/izlazna gre¹ka kod lokalne datoteke"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Gre¹ka kod stavljanja udaljenog servera u pasivni re¾im"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Datoteka nije pronaðena na serveru"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "Neoèekivana ili nepoznata FTP gre¹ka"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -4098,17 +4108,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "paket %s nije naðen u %s"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index b71996a..0afe5bd 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: 2000-08-07 16:53+0200\n"
 "Last-Translator: Göran Uddeborg <göran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -9,7 +9,7 @@ msgstr ""
 "Content-Type: text/plain; charset=ISO-8859-1\n"
 "Content-Transfer-Encoding: 8bit\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "kan inte öppna %s/packages.rpm\n"
@@ -1587,44 +1587,40 @@ msgstr "syntaxfel vid parsning av &&"
 msgid "syntax error while parsing ||"
 msgstr "syntaxfel vid parsning av ||"
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr "parsfel i uttryck"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr "ensam ("
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr "odefinierad identifierare"
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr "- endast i tal"
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr "! endast på tal"
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr "typer måste passa ihop"
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr "* / stöds inte för strängar"
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr "- stöds inte för strängar"
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr "&& och || stöds inte för strängar"
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr "syntaxfel i uttryck"
 
@@ -2263,60 +2259,60 @@ msgstr "rad %d: Felaktigt no%s-tal: %d"
 msgid "line %d: Bad %s number: %s\n"
 msgstr "rad %d: Felaktigt %s-tal: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "kan inte flytta %s till %s: %s\n"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr "kan inte ta bort %s: %s\n"
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr "getNextHeader: %s\n"
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr "(fel 0x%x)"
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr "Felaktigt magiskt tal"
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr "Felaktigt/oläsbart huvud"
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr "Huvudstorlek för stor"
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr "Okänd filtyp"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr "Saknad hårdlänk"
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr "Internt fel"
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr " misslyckades - "
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
@@ -2325,88 +2321,88 @@ msgstr ""
 "\"B\"-beroendet beghöver en epok (antar samma som \"A\")\n"
 "        A %s    B %s\n"
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr "  %s    A %s\tB %s\n"
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr "%s: %-45s JA (lade till filer)\n"
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr "%s: %-45s JA (lade till tillhandahållande)\n"
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr "%s: %-45s %-3s (cachad)\n"
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr "%s: %-45s JA (rpmrc tillhandahåller)\n"
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s: %-45s JA (rpmlib tillhandahåller)\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr "%s: %-45s JA (db-filer)\n"
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr "%s: %-45s JA (db tillhandahållande)\n"
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr "%s: %-45s NEJ\n"
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s: (%s, %s) tillagt till beroendecachen.\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "paket %s-%s-%s behov inte uppfyllda: %s\n"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "paket %s står i konflikt: %s\n"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "tar bort \"%s\" från %s-indexet.\n"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2550,7 +2546,7 @@ msgstr ""
 "problemet.\n"
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(inte ett tal)"
 
@@ -2579,196 +2575,210 @@ msgid "file %s is on an unknown device"
 msgstr "filen %s är på en okänd enhet"
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr "grabData() RPM_STRING_TYPE måste vara 1.\n"
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr "Felaktigt antal till headerAddEntry(): %d\n"
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "{ fattas efter %"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "} fattas efter %{"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "tomt taggformat"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "tomt taggnamn"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "okänd tagg"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "] förväntades vid slutet på vektor"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "oväntad ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "oväntad }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "? förväntades i uttryck"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr "{ förväntades efter ? i uttryck"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "} förväntades i uttryck"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ": förväntades efter ? i deluttryck"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr "{ förväntades efter : i uttryck"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "| förväntades vid slutet på uttryck"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(okänd typ)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr "   fil: %s åtgärd: %s\n"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr "användaren %s finns inte - använder root"
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr "gruppen %s finns inte - använder root"
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr "%%instchangelog-värde i makrofil skall vara ett tal, men är inte det"
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr "uppackning av arkiv misslyckades%s%s: %s"
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr "installerar källpaket\n"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr "kan inte skapa källkatalog %s"
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr "kan inte skriva till %s"
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr "källkod i: %s\n"
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr "kan inte skapa spec-katalog %s"
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr "spec-fil i: %s\n"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr "källpaket innehåller ingen spec-fil"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr "byter namn på %s till %s\n"
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "namnbyte från %s till %s misslyckades: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr "källpaket förväntades, fann binärpaket"
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "paket: %s-%s-%s filtest = %d\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr "avbryter installation eftersom vi kör --test\n"
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr "kör (eventuellt) preinstalltionsskript\n"
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr "varning: %s skapades som %s"
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr "varning: %s sparades som %s"
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr "kör (eventuellt) postinstallationsskript\n"
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr "fel när tämporärfil %s skapades"
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr "paket med versionsnummer 1 stöds inte av denna version av RPM"
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr "endast paket med huvudnummer <= 4 stöds av denna version av RPM"
@@ -3010,217 +3020,217 @@ msgstr "paket %s-%s-%s systemanrop f
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr "okänt fel %d uppträdde under manipulation av paket %s-%s-%s"
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "fel i format: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(innehåller inga filer)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr "normal        "
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr "ersatt        "
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr "oinstallerat  "
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr "nätdelad      "
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr "(okänd %3d)   "
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr "(ej tillstnd) "
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr "paketet har varken filägare eller id-listor"
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr "kan inte fråga om %s: %s\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "misslyckades öppna %s: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "källpaket i gammalt format går ej att fråga om\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s verkar inte vara ett RPM-paket\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "fråga om %s misslyckades\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "fråga om spec-fil %s misslyckades, kan inte parsa\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr "inga paket\n"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "grupp %s innehåller inga paket\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "inga paketutlösare %s\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "inget paket behöver %s\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "inget paket tillhandahåller %s\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr "fil %s: %s\n"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "filen %s ägs inte av något paket\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "felaktigt paketnummer: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr "paketpost nummer: %u\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "post %d kunde inte läsas\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: open misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr "makeTempFile misslyckades\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: Fwrite misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: readLead misslyckades\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: Kan inte signera v1.0 RPM\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: Kan inte signera om v2.0 RPM\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: rpmReadSignature misslyckades\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ingen signatur tillgänglig\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: writeLead misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: rpmWriteSignature misslyckades: %s\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ingen signatur tillgänglig (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr "EJ OK"
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr " (SAKNADE NYCKLAR:"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ") "
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr " (EJ BETRODDA NYCKLAR:"
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ")"
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr "OK"
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr "dbiTagsInit: okänt taggnamn: \"%s\" ignorerat\n"
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3235,17 +3245,17 @@ msgstr ""
 "/etc/rpm/macros).\n"
 "\n"
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "kan inte öppna %s-indexet med db%d - %s (%d)"
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr "kan inte öppna %s-indexet"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3260,7 +3270,7 @@ msgstr ""
 "    till db%d-format genom att köra \"rpm --rebuilddb\" som root.\n"
 "\n"
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3276,7 +3286,7 @@ msgstr ""
 "/etc/rpm/macros).\n"
 "\n"
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3294,26 +3304,26 @@ msgstr ""
 "    \"%%_dbapi_rebuild %d\" (d.v.s. skapa och/eller ändra /etc/rpm/macros).\n"
 "\n"
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "fel(%d) när \"%s\"-poster hämtades från %s-indexet"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "fel(%d) när post %s sparades i %s"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "fel(%d) när post %s togs bort ur %s"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "ingen dbpath har satts"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
@@ -3322,212 +3332,212 @@ msgstr ""
 "i nytt format"
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr "fel(%d) när paket räknades"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "%s: kan inte läsa huvud vid 0x%x"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr "tar bort 0 %s-poster.\n"
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "tar bort \"%s\" från %s-indexet.\n"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "tar bort %d poster från %s-indexet.\n"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "fel(%d) vid allokering av ny paketinstans"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr "lägger till 0 %s-poster.\n"
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr "lägger till \"%s\" till %s-indexet.\n"
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "lägger till %d poster till %s-indexet.\n"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "bygger om databas %s till %s\n"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "tillfällig databas %s existerar redan"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr "skapar katalog %s\n"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "fel när katalog skapades %s: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "öppnar gammal databas med dbapi %d\n"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "öppnar ny databas med dbapi %d\n"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "post nummer %d i databasen är felaktig -- hoppar över den."
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "kan inte lägga till post ursprungligen vid %d"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr "kunde inte bygga om databasen: orginaldatabasen finns kvar\n"
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr "kunde inte ersätta gammal databas med ny databas!\n"
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr "byt ut filer i %s med filer från %s för att återställa"
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr "tar bort katalog %s\n"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "kunde inte ta bort katalogen %s: %s\n"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr "räknar paket att installera\n"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr "hittade %d paket\n"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr "letar efter paket att hämta\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "hoppar över %s - rpmGlob misslyckades(%d)\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Hämtar %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr "hämtade %d paket\n"
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "filen %s behöver en nyare version av RPM\n"
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
@@ -3632,193 +3642,193 @@ msgstr "Ok
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Var god kontakta rpm-list@redhat.com\n"
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr "sigstorlek       : %d\n"
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr "Huvud + Arkiv    : %d\n"
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr "förväntad storlek: %d\n"
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr "filen är inte en vanlig fil -- hoppar över storlekskontroll\n"
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr "Ingen signatur\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr "Gammal PGP-signatur\n"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Gammal (endast intern) signatur!  Hur fick du tag i den!?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr "Ny huvudsignatur\n"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr "Signaturstorlek  : %d\n"
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr "Signaturutfyllnad: %d\n"
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "Kunde inte köra pgp (%s)"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "pgp misslyckades"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "pgp misslyckades att skriva en signatur"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr "PGP signaturstorlek: %d\n"
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "kan inte läsa signaturen"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr "Fick %d byte PGPsignatur\n"
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr "Kunde inte köra gpg"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr "gpg misslyckades"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr "gpg kunde inte skriva signatur"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr "GPG signaturstorlek: %d\n"
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr "Fick %d byte GPGsignatur\n"
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr "Genererar signatur med PGP.\n"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr "Genererar signatur med GPG.\n"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "Kunde inte köra pgp.  Använd --nopgp för att hoppa över PGPkontroll."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr "exec misslyckades!\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "Kunde inte köra gpg.  Använd --nogpg för att hoppa över GPGkontroll."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "Kunde inte köra pgp"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr "Ogiltig %%_signature specifikation i makrofil"
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "Du måste sätta \"%%_gpg_name\" i din makrofil"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "Du måste sätta \"%%_pgp_name\" i din makrofil"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr "hoppar över %s%s\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr "flyttar %s till %s\n"
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "flyttar katalogen %s till %s\n"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "kan inte ta bort %s - katalogen är inte tom"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "rmdir av %s misslyckades: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "borttagning av %s misslyckades: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr "tar bort filer test = %d\n"
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr "kör (eventuellt) postavinstallationsskript\n"
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "körning av skript från %s-%s-%s misslyckades, slutstatus %d"
@@ -3837,69 +3847,69 @@ msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 "paket saknar både gruppnamn och id-listor (detta borde aldrig inträffa)"
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr "saknas     %s\n"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "Ouppfyllda beroenden för %s-%s-%s: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr "Lyckades"
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr "Konstigt svar från server"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr "IO-fel mot server"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr "Förbindelsen med servern dog ut (timeout)"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr "Kunde inte slå upp serverns adress"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr "Kunde inte slå upp serverns namn"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr "Misslyckades med att kontakta servern"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr "Misslyckades med att etablera en dataförbindelse till servern"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "IO-fel mot lokal fil"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Fel när den fjärrservern sattes i passivt läge"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Filen fanns inte på servern"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr "Avbruten under gång"
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr "Okänt eller oväntat fel"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr "loggar in på %s som %s, lösenord %s\n"
@@ -3971,17 +3981,17 @@ msgstr "Ett %% f
 msgid "Macro %%%.*s not found, skipping"
 msgstr "Inget makro %%%.*s hittat, hoppar över"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr "Målbuffer översvämmad"
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr "Fil %s: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr "Filen %s är mindre än %d byte"
@@ -4051,6 +4061,9 @@ msgstr "kunde inte 
 msgid "failed to create %s: %s\n"
 msgstr "kunde inte skapa %s: %s\n"
 
+#~ msgid "undefined identifier"
+#~ msgstr "odefinierad identifierare"
+
 #~ msgid "loop in prerequisite chain: %s"
 #~ msgstr "cirkularitet i kedja av förutsättningar: %s"
 
index f879f3f..3b5157b 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, fuzzy, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
@@ -1731,45 +1731,41 @@ msgstr "dizi i
 msgid "syntax error while parsing ||"
 msgstr "dizi içerisinde ? bekleniyordu"
 
-#: build/expression.c:288
+#: build/expression.c:286
 #, fuzzy
 msgid "parse error in expression"
 msgstr "dizi içerisinde ? bekleniyordu"
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 #, fuzzy
 msgid "syntax error in expression"
 msgstr "dizi içerisinde ? bekleniyordu"
@@ -2414,151 +2410,151 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, fuzzy, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr "%s okunamadý: %s"
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, fuzzy, c-format
 msgid "(error 0x%x)"
 msgstr "hata: "
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 #, fuzzy
 msgid "Unknown file type"
 msgstr "(bilinmeyen tip)"
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 #, fuzzy
 msgid "Internal error"
 msgstr "ölümcül hata: "
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 #, fuzzy
 msgid " failed - "
 msgstr "PGP hata verdi"
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, fuzzy, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, fuzzy, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, fuzzy, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, fuzzy, c-format
 msgid "package %s conflicts: %s\n"
 msgstr "%s paketi %s altýnda gözükmüyor"
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, fuzzy, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2697,7 +2693,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr "(üye deðil)"
 
@@ -2726,202 +2722,216 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr "% den sonra eksik {"
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr "%{ den sonra eksik }"
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr "boþ tag tanýmlamasý"
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr "boþ tag ismi"
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr "bilinmeyen tag"
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr "dizinin sonunda ] bekleniyordu"
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr "beklenmeyen ]"
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr "beklenmeyen }"
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr "dizi içerisinde ? bekleniyordu"
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 #, fuzzy
 msgid "{ expected after ? in expression"
 msgstr "dizi içerisinde ? den sonra { bekleniyordu"
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr "dizi içerisinde } bekleniyordu"
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr "? altdizisinden sonra : bekleniyordu"
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 #, fuzzy
 msgid "{ expected after : in expression"
 msgstr "dizide : den sonra { bekleniyordu"
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr "dizinin sonunda | bekleniyordu"
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr "(bilinmeyen tip)"
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, fuzzy, c-format
 msgid "   file: %s action: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 #, fuzzy
 msgid "installing a source package\n"
 msgstr "paket yüklemek"
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, fuzzy, c-format
 msgid "cannot create sourcedir %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, fuzzy, c-format
 msgid "cannot write to %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, fuzzy, c-format
 msgid "cannot create specdir %s"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, fuzzy, c-format
 msgid "spec file in: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 #, fuzzy
 msgid "source package contains no .spec file"
 msgstr "<dosya> isimli dosyayý içeren paketi sorgulamak"
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr "%s 'nin isminin  %s 'ye çevrilmesinde belirtilen hata oluþtu: %s"
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, fuzzy, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr "Paket %s-%s-%s ortak (shared) dosyalar içeriyor\n"
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, fuzzy, c-format
 msgid "error creating temporary file %s"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/package.c:60
+#: lib/package.c:62
 #, fuzzy
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 "RPM'in bu sürümünde sadece major numarasý <= 3 olan paketler destekleniyor"
 
-#: lib/package.c:120
+#: lib/package.c:122
 #, fuzzy
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
@@ -3192,221 +3202,221 @@ msgstr "Paket %s-%s-%s ortak (shared) dosyalar i
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr "format hatasý: %s\n"
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr "(hiç dosya içermiyor)"
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 #, fuzzy
 msgid "not installed "
 msgstr "%s pakedi yüklenmemiþ\n"
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, fuzzy, c-format
 msgid "(unknown %3d) "
 msgstr "(bilinmeyen tip)"
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, fuzzy, c-format
 msgid "can't query %s: %s\n"
 msgstr "hata: %s eriþilemiyor\n"
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s 'ye erisimde belirtilen hata oluþtu: %s\n"
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr "eski tip kaynak paketleri sorgulanamýyor\n"
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr "%s bir RPM paketi deðil (gibi)\n"
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, fuzzy, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr "%s 'nin sorgulamasý baþarýsýzlýkla sonuçlandý\n"
 
-#: lib/query.c:583
+#: lib/query.c:590
 #, fuzzy
 msgid "no packages\n"
 msgstr "Tüm paketleri sorgulama"
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr "%s grubu hiç paket içermiyor\n"
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr "hiç bir paket %s tetiklemiyor\n"
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr "hiç bir paket %s gerektirmiyor\n"
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr "hiç bir paket  %s saðlamýyor\n"
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, fuzzy, c-format
 msgid "file %s: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr "%s dosyasý, hiç bir pakete ait deðil\n"
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, fuzzy, c-format
 msgid "package record number: %u\n"
 msgstr "geçersiz paket numarsý: %s\n"
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr "%d numaralý kayýt okunamadý\n"
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s pakedi yüklenmemiþ\n"
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, fuzzy, c-format
 msgid "%s: open failed: %s\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 #, fuzzy
 msgid "makeTempFile failed\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, fuzzy, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr "%s: 'readLead' hata verdi\n"
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, fuzzy, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: 'readLead' hata verdi\n"
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr "%s: 'readLead' hata verdi\n"
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr "%s: v1.0-RPM (eski sürüm) imzalanamýyor\n"
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr "%s: v2.0-RPM (eski sürüm) yeniden imzalanamýyor\n"
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr "%s: 'rpmReadSignature' hata verdi\n"
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr "%s: Ýmza bulunmuyor\n"
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, fuzzy, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr "%s: 'readLead' hata verdi\n"
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, fuzzy, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr "%s: 'rpmReadSignature' hata verdi\n"
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr "%s: Ýmza bulundurmuyor (v1.0 RPM)\n"
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 #, fuzzy
 msgid " (MISSING KEYS:"
 msgstr " (EKSÝK ANAHTARLAR)"
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3415,17 +3425,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, fuzzy, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, fuzzy, c-format
 msgid "cannot open %s index"
 msgstr "hata: %s eriþilemiyor\n"
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3435,7 +3445,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3445,7 +3455,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3456,241 +3466,241 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, fuzzy, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr "%s kaydýna %s dosyasýnda eriþilemiyor:"
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, fuzzy, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr "%s kaydý %s dosyasýna yazýlamýyor"
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, fuzzy, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr "dbpath deðeri girilmemiþ"
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, fuzzy, c-format
 msgid "error(%d) counting packages"
 msgstr "%s pakedi aranýrken hata oluþtu\n"
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, fuzzy, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr "%d kaydýndan baþlýk bilgisi okunamadý"
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, fuzzy, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, fuzzy, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, fuzzy, c-format
 msgid "error(%d) allocating new package instance"
 msgstr "%s pakedi aranýrken hata oluþtu\n"
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, fuzzy, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr "%s kaydýnýn %s dosyasýndan silinmesinde hata"
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, fuzzy, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr "geçici veritabaný %s mevcut"
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, fuzzy, c-format
 msgid "creating directory %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, fuzzy, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, fuzzy, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr "mevcut veritabanýný kullanýlarak veritabýnýný yeniden oluþturur"
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, fuzzy, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr "veritabanýndaki %d numaralý kayýt hatalý -- atlanýyor"
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr "%d de yer alan kayýt saklayamýyor"
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, fuzzy, c-format
 msgid "removing directory %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, fuzzy, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr "%s açýlamadý: %s"
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 #, fuzzy
 msgid "counting packages to install\n"
 msgstr "yüklenecek paketler belirtilmedi"
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, fuzzy, c-format
 msgid "found %d packages\n"
 msgstr "Tüm paketleri sorgulama"
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 #, fuzzy
 msgid "looking for packages to download\n"
 msgstr "%s pakedi aranýrken hata oluþtu\n"
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, fuzzy, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s alýnýyor\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hata: %s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamýyor: "
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "hata: %s yüklenemedi\n"
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, fuzzy, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr "hata: %s%s/packages.rpm açýlamýyor\n"
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s pakedi yüklenmemiþ\n"
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%s grubu hiç paket içermiyor\n"
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr "baðýmlýlýk hatasý, aþaðýdaki paketlere ihtiyacýnýz var:\n"
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "paket yüklemek"
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr "bu paketin silinmesi aþaðýdaki baðýmlýlýklarý etkileyecektir:\n"
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "hata: %s eriþilemiyor\n"
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s yükleniyor\n"
@@ -3795,205 +3805,205 @@ msgstr "(bilinmeyen tip)"
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 #, fuzzy
 msgid "No signature\n"
 msgstr "%s: Ýmza bulunmuyor\n"
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 #, fuzzy
 msgid "Old PGP signature\n"
 msgstr "PGP-imzasý yaratýr"
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr "Eski imza !!! Eee bunu nasýl baþardýn bakiiim ?"
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 #, fuzzy
 msgid "New Header signature\n"
 msgstr "imzayý okumak mümkün olmadý"
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, fuzzy, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr "PGP çalýþtýrýlamadý"
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr "PGP hata verdi"
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr "PGP imzasýnýn yazýlmasý sýrasýnda hata oluþtu"
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr "imzayý okumak mümkün olmadý"
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 #, fuzzy
 msgid "Couldn't exec gpg"
 msgstr "PGP çalýþtýrýlamadý"
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 #, fuzzy
 msgid "gpg failed"
 msgstr "PGP hata verdi"
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 #, fuzzy
 msgid "gpg failed to write signature"
 msgstr "PGP imzasýnýn yazýlmasý sýrasýnda hata oluþtu"
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 #, fuzzy
 msgid "Generating signature using PGP.\n"
 msgstr "PGP-imzasý yaratýr"
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 #, fuzzy
 msgid "Generating signature using GPG.\n"
 msgstr "PGP-imzasý yaratýr"
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn."
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 #, fuzzy
 msgid "exec failed!\n"
 msgstr "%s: Eriþilemedi\n"
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 #, fuzzy
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr "PGP çalýþtýrýlamadý. PGP kontrollerini atlamak için --nopgp kullanýn."
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr "PGP çalýþtýrýlamadý"
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 #, fuzzy
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 #, fuzzy
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr "rpmrc dosyanýzda \"pgp_name:\" tanýmlanmýþ olmalý"
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, fuzzy, c-format
 msgid "excluding file %s%s\n"
 msgstr "%s alýnýyor\n"
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, fuzzy, c-format
 msgid "relocating directory %s to %s\n"
 msgstr "%s dizinin oluþturulmasýnda hata: %s"
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr "%s silinemedi - belirtilen dizin boþ deðil"
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr "%s dizinin silinmesinde belirtilen hata oluþtu: %s"
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr "%s 'in silinmesinde belirtilen hata oluþtu: %s"
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, fuzzy, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr "betik (script) çalýþtýrýlamadý "
@@ -4011,77 +4021,77 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, fuzzy, c-format
 msgid "missing    %s\n"
 msgstr "% den sonra eksik {"
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr "%s-%s-%s 'nin baðýmlýlýk sorunlarý: "
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 #, fuzzy
 msgid "Bad server response"
 msgstr "FTP sunucusundan kötü yanýt"
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 #, fuzzy
 msgid "Server IO error"
 msgstr "FTP I/O hatasý"
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 #, fuzzy
 msgid "Server timeout"
 msgstr "FTP sunucusu zaman aþýmý"
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 #, fuzzy
 msgid "Unable to lookup server host address"
 msgstr "FTP sunucusunun isim adres dönüþümü yapýlamadý"
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 #, fuzzy
 msgid "Unable to lookup server host name"
 msgstr "FTP sunucusunun adres isim dönüþümü yapýlamadý"
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 #, fuzzy
 msgid "Failed to connect to server"
 msgstr "FTP sunucusuna baðlanýlamadý"
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 #, fuzzy
 msgid "Failed to establish data connection to server"
 msgstr "FTP sunucusu ile veri alýþveriþi yapýlamadý"
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr "Yerel dosyaya eriþim sýrasýnda I/O hatasý"
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr "Karþý sunucuyu pasif kipe sokam hatasý"
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr "Dosya sunucuda bulunamadý"
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 #, fuzzy
 msgid "Unknown or unexpected error"
 msgstr "FTP bilinmeyen ya da beklenmeyen hata"
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -4154,17 +4164,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr "%s pakedi %s içerisinde bulunamadý"
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, fuzzy, c-format
 msgid "File %s: %s"
 msgstr "%s açýlamadý: %s"
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index 9e1c28e..08f25e9 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0\n"
-"POT-Creation-Date: 2000-10-26 11:14-0400\n"
+"POT-Creation-Date: 2000-10-28 12:51-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,7 +14,7 @@ msgstr ""
 "Content-Type: text/plain; charset=CHARSET\n"
 "Content-Transfer-Encoding: ENCODING\n"
 
-#: build.c:25 lib/rpminstall.c:460
+#: build.c:25 lib/rpminstall.c:463
 #, c-format
 msgid "cannot open %s/packages.rpm\n"
 msgstr ""
@@ -1533,44 +1533,40 @@ msgstr ""
 msgid "syntax error while parsing ||"
 msgstr ""
 
-#: build/expression.c:288
+#: build/expression.c:286
 msgid "parse error in expression"
 msgstr ""
 
-#: build/expression.c:317
+#: build/expression.c:315
 msgid "unmatched ("
 msgstr ""
 
-#: build/expression.c:335
-msgid "undefined identifier"
-msgstr ""
-
-#: build/expression.c:354
+#: build/expression.c:345
 msgid "- only on numbers"
 msgstr ""
 
-#: build/expression.c:370
+#: build/expression.c:361
 msgid "! only on numbers"
 msgstr ""
 
-#: build/expression.c:409 build/expression.c:454 build/expression.c:511
-#: build/expression.c:598
+#: build/expression.c:400 build/expression.c:445 build/expression.c:500
+#: build/expression.c:587
 msgid "types must match"
 msgstr ""
 
-#: build/expression.c:422
+#: build/expression.c:413
 msgid "* / not suported for strings"
 msgstr ""
 
-#: build/expression.c:470
+#: build/expression.c:461
 msgid "- not suported for strings"
 msgstr ""
 
-#: build/expression.c:611
+#: build/expression.c:600
 msgid "&& and || not suported for strings"
 msgstr ""
 
-#: build/expression.c:645 build/expression.c:693
+#: build/expression.c:634 build/expression.c:682
 msgid "syntax error in expression"
 msgstr ""
 
@@ -2209,148 +2205,148 @@ msgstr ""
 msgid "line %d: Bad %s number: %s\n"
 msgstr ""
 
-#: lib/cpio.c:443
+#: lib/cpio.c:444
 #, c-format
 msgid "can't rename %s to %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:449
+#: lib/cpio.c:450
 #, c-format
 msgid "can't unlink %s: %s\n"
 msgstr ""
 
-#: lib/cpio.c:753
+#: lib/cpio.c:756
 #, c-format
 msgid "getNextHeader: %s\n"
 msgstr ""
 
-#: lib/cpio.c:1239
+#: lib/cpio.c:1242
 #, c-format
 msgid "(error 0x%x)"
 msgstr ""
 
-#: lib/cpio.c:1242
+#: lib/cpio.c:1245
 msgid "Bad magic"
 msgstr ""
 
-#: lib/cpio.c:1243
+#: lib/cpio.c:1246
 msgid "Bad/unreadable  header"
 msgstr ""
 
-#: lib/cpio.c:1261
+#: lib/cpio.c:1264
 msgid "Header size too big"
 msgstr ""
 
-#: lib/cpio.c:1262
+#: lib/cpio.c:1265
 msgid "Unknown file type"
 msgstr ""
 
-#: lib/cpio.c:1263
+#: lib/cpio.c:1266
 msgid "Missing hard link"
 msgstr ""
 
-#: lib/cpio.c:1264
+#: lib/cpio.c:1267
 msgid "MD5 sum mismatch"
 msgstr ""
 
-#: lib/cpio.c:1265
+#: lib/cpio.c:1268
 msgid "Internal error"
 msgstr ""
 
-#: lib/cpio.c:1274
+#: lib/cpio.c:1277
 msgid " failed - "
 msgstr ""
 
 #. XXX legacy epoch-less requires/conflicts compatibility
-#: lib/depends.c:549
+#: lib/depends.c:553
 #, c-format
 msgid ""
 "the \"B\" dependency needs an epoch (assuming same as \"A\")\n"
 "\tA %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:578
+#: lib/depends.c:582
 #, c-format
 msgid "  %s    A %s\tB %s\n"
 msgstr ""
 
-#: lib/depends.c:932
+#: lib/depends.c:936
 #, c-format
 msgid "%s: %-45s YES (added files)\n"
 msgstr ""
 
-#: lib/depends.c:991
+#: lib/depends.c:995
 #, c-format
 msgid "%s: %-45s YES (added provide)\n"
 msgstr ""
 
-#: lib/depends.c:1043
+#: lib/depends.c:1047
 #, c-format
 msgid "%s: %-45s %-3s (cached)\n"
 msgstr ""
 
-#: lib/depends.c:1062
+#: lib/depends.c:1066
 #, c-format
 msgid "%s: %-45s YES (rpmrc provides)\n"
 msgstr ""
 
-#: lib/depends.c:1079
+#: lib/depends.c:1083
 #, c-format
 msgid "%s: %-45s YES (rpmlib provides)\n"
 msgstr ""
 
-#: lib/depends.c:1100
+#: lib/depends.c:1104
 #, c-format
 msgid "%s: %-45s YES (db files)\n"
 msgstr ""
 
-#: lib/depends.c:1113
+#: lib/depends.c:1117
 #, c-format
 msgid "%s: %-45s YES (db provides)\n"
 msgstr ""
 
-#: lib/depends.c:1126
+#: lib/depends.c:1130
 #, c-format
 msgid "%s: %-45s NO\n"
 msgstr ""
 
-#: lib/depends.c:1147
+#: lib/depends.c:1151
 #, c-format
 msgid "%s: (%s, %s) added to Depends cache.\n"
 msgstr ""
 
 #. requirements are not satisfied.
-#: lib/depends.c:1205
+#: lib/depends.c:1209
 #, c-format
 msgid "package %s-%s-%s require not satisfied: %s\n"
 msgstr ""
 
 #. conflicts exist.
-#: lib/depends.c:1272
+#: lib/depends.c:1276
 #, c-format
 msgid "package %s conflicts: %s\n"
 msgstr ""
 
-#: lib/depends.c:1458
+#: lib/depends.c:1462
 #, c-format
 msgid "removing %s-%s-%s \"%s\" from tsort relations.\n"
 msgstr ""
 
 #. Record all relations.
-#: lib/depends.c:1511
+#: lib/depends.c:1515
 msgid "========== recording tsort relations\n"
 msgstr ""
 
 #. T4. Scan for zeroes.
-#: lib/depends.c:1568
+#: lib/depends.c:1572
 msgid "========== tsorting packages\n"
 msgstr ""
 
-#: lib/depends.c:1671
+#: lib/depends.c:1675
 msgid "LOOP:\n"
 msgstr ""
 
-#: lib/depends.c:1702
+#: lib/depends.c:1706
 msgid "========== continuing tsort ...\n"
 msgstr ""
 
@@ -2489,7 +2485,7 @@ msgid ""
 msgstr ""
 
 #: lib/formats.c:86 lib/formats.c:112 lib/formats.c:141 lib/formats.c:182
-#: lib/header.c:2133 lib/header.c:2150 lib/header.c:2170
+#: lib/header.c:2174 lib/header.c:2191 lib/header.c:2211
 msgid "(not a number)"
 msgstr ""
 
@@ -2518,196 +2514,210 @@ msgid "file %s is on an unknown device"
 msgstr ""
 
 #. This should not be allowed
-#: lib/header.c:244
+#: lib/header.c:245
 msgid "grabData() RPM_STRING_TYPE count must be 1.\n"
 msgstr ""
 
-#: lib/header.c:275 lib/header.c:745 lib/install.c:378
+#: lib/header.c:276 lib/header.c:747 lib/install.c:380
 #, c-format
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/header.c:1108
+#: lib/header.c:1110
 #, c-format
 msgid "Bad count for headerAddEntry(): %d\n"
 msgstr ""
 
-#: lib/header.c:1518
+#. @-observertrans@
+#: lib/header.c:1526
 #, c-format
 msgid "missing { after %"
 msgstr ""
 
-#: lib/header.c:1546
+#. @-observertrans@
+#: lib/header.c:1556
 msgid "missing } after %{"
 msgstr ""
 
-#: lib/header.c:1558
+#. @-observertrans@
+#: lib/header.c:1570
 msgid "empty tag format"
 msgstr ""
 
-#: lib/header.c:1568
+#. @-observertrans@
+#: lib/header.c:1582
 msgid "empty tag name"
 msgstr ""
 
-#: lib/header.c:1583
+#. @-observertrans@
+#: lib/header.c:1599
 msgid "unknown tag"
 msgstr ""
 
-#: lib/header.c:1608
+#. @-observertrans@
+#: lib/header.c:1626
 msgid "] expected at end of array"
 msgstr ""
 
-#: lib/header.c:1624
+#. @-observertrans@
+#: lib/header.c:1644
 msgid "unexpected ]"
 msgstr ""
 
-#: lib/header.c:1626
+#. @-observertrans@
+#: lib/header.c:1648
 msgid "unexpected }"
 msgstr ""
 
-#: lib/header.c:1684
+#. @-observertrans@
+#: lib/header.c:1708
 msgid "? expected in expression"
 msgstr ""
 
-#: lib/header.c:1691
+#. @-observertrans@
+#: lib/header.c:1717
 msgid "{ expected after ? in expression"
 msgstr ""
 
-#: lib/header.c:1702 lib/header.c:1737
+#. @-observertrans@
+#: lib/header.c:1730 lib/header.c:1771
 msgid "} expected in expression"
 msgstr ""
 
-#: lib/header.c:1710
+#. @-observertrans@
+#: lib/header.c:1740
 msgid ": expected following ? subexpression"
 msgstr ""
 
-#: lib/header.c:1724
+#. @-observertrans@
+#: lib/header.c:1756
 msgid "{ expected after : in expression"
 msgstr ""
 
-#: lib/header.c:1745
+#. @-observertrans@
+#: lib/header.c:1781
 msgid "| expected at end of expression"
 msgstr ""
 
-#: lib/header.c:1912
+#: lib/header.c:1953
 msgid "(unknown type)"
 msgstr ""
 
-#: lib/install.c:188 lib/uninstall.c:191
+#: lib/install.c:190 lib/uninstall.c:193
 #, c-format
 msgid "   file: %s action: %s\n"
 msgstr ""
 
-#: lib/install.c:212
+#: lib/install.c:214
 #, c-format
 msgid "user %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:220
+#: lib/install.c:222
 #, c-format
 msgid "group %s does not exist - using root"
 msgstr ""
 
-#: lib/install.c:253
+#: lib/install.c:255
 msgid "%%instchangelog value in macro file should be a number, but isn't"
 msgstr ""
 
 #. this would probably be a good place to check if disk space
 #. was used up - if so, we should return a different error
 #. XXX FIXME: Fclose with libio destroys errno
-#: lib/install.c:655
+#: lib/install.c:657
 #, c-format
 msgid "unpacking of archive failed%s%s: %s"
 msgstr ""
 
-#: lib/install.c:656
+#: lib/install.c:658
 msgid " on file "
 msgstr ""
 
-#: lib/install.c:705
+#: lib/install.c:707
 msgid "installing a source package\n"
 msgstr ""
 
-#: lib/install.c:725
+#: lib/install.c:727
 #, c-format
 msgid "cannot create sourcedir %s"
 msgstr ""
 
-#: lib/install.c:731 lib/install.c:761
+#: lib/install.c:733 lib/install.c:763
 #, c-format
 msgid "cannot write to %s"
 msgstr ""
 
-#: lib/install.c:735
+#: lib/install.c:737
 #, c-format
 msgid "sources in: %s\n"
 msgstr ""
 
-#: lib/install.c:755
+#: lib/install.c:757
 #, c-format
 msgid "cannot create specdir %s"
 msgstr ""
 
-#: lib/install.c:765
+#: lib/install.c:767
 #, c-format
 msgid "spec file in: %s\n"
 msgstr ""
 
-#: lib/install.c:797 lib/install.c:825
+#: lib/install.c:799 lib/install.c:827
 msgid "source package contains no .spec file"
 msgstr ""
 
-#: lib/install.c:843
+#: lib/install.c:845
 #, c-format
 msgid "renaming %s to %s\n"
 msgstr ""
 
-#: lib/install.c:845 lib/install.c:1117 lib/uninstall.c:40
+#: lib/install.c:847 lib/install.c:1119 lib/uninstall.c:42
 #, c-format
 msgid "rename of %s to %s failed: %s"
 msgstr ""
 
-#: lib/install.c:935
+#: lib/install.c:937
 msgid "source package expected, binary found"
 msgstr ""
 
-#: lib/install.c:980
+#: lib/install.c:982
 #, c-format
 msgid "package: %s-%s-%s files test = %d\n"
 msgstr ""
 
-#: lib/install.c:1040
+#: lib/install.c:1042
 msgid "stopping install as we're running --test\n"
 msgstr ""
 
-#: lib/install.c:1045
+#: lib/install.c:1047
 msgid "running preinstall script (if any)\n"
 msgstr ""
 
-#: lib/install.c:1077
+#: lib/install.c:1079
 #, c-format
 msgid "warning: %s created as %s"
 msgstr ""
 
-#: lib/install.c:1113
+#: lib/install.c:1115
 #, c-format
 msgid "warning: %s saved as %s"
 msgstr ""
 
-#: lib/install.c:1202
+#: lib/install.c:1204
 msgid "running postinstall scripts (if any)\n"
 msgstr ""
 
-#: lib/misc.c:277 lib/misc.c:282 lib/misc.c:288
+#: lib/misc.c:280 lib/misc.c:285 lib/misc.c:291
 #, c-format
 msgid "error creating temporary file %s"
 msgstr ""
 
-#: lib/package.c:60
+#: lib/package.c:62
 msgid "packaging version 1 is not supported by this version of RPM"
 msgstr ""
 
-#: lib/package.c:120
+#: lib/package.c:122
 msgid ""
 "only packaging with major numbers <= 4 is supported by this version of RPM"
 msgstr ""
@@ -2946,217 +2956,217 @@ msgstr ""
 msgid "unknown error %d encountered while manipulating package %s-%s-%s"
 msgstr ""
 
-#: lib/query.c:143
+#: lib/query.c:150
 #, c-format
 msgid "error in format: %s\n"
 msgstr ""
 
-#: lib/query.c:205
+#: lib/query.c:212
 msgid "(contains no files)"
 msgstr ""
 
-#: lib/query.c:264
+#: lib/query.c:271
 msgid "normal        "
 msgstr ""
 
-#: lib/query.c:266
+#: lib/query.c:273
 msgid "replaced      "
 msgstr ""
 
-#: lib/query.c:268
+#: lib/query.c:275
 msgid "not installed "
 msgstr ""
 
-#: lib/query.c:270
+#: lib/query.c:277
 msgid "net shared    "
 msgstr ""
 
-#: lib/query.c:272
+#: lib/query.c:279
 #, c-format
 msgid "(unknown %3d) "
 msgstr ""
 
-#: lib/query.c:276
+#: lib/query.c:283
 msgid "(no state)    "
 msgstr ""
 
-#: lib/query.c:293 lib/query.c:336
+#: lib/query.c:300 lib/query.c:343
 msgid "package has neither file owner or id lists"
 msgstr ""
 
-#: lib/query.c:380
+#: lib/query.c:387
 #, c-format
 msgid "can't query %s: %s\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: lib/query.c:496
+#: lib/query.c:503
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:514
+#: lib/query.c:521
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:523 lib/rpminstall.c:242
+#: lib/query.c:530 lib/rpminstall.c:245
 #, c-format
 msgid "%s does not appear to be a RPM package\n"
 msgstr ""
 
-#: lib/query.c:527
+#: lib/query.c:534
 #, c-format
 msgid "query of %s failed\n"
 msgstr ""
 
-#: lib/query.c:560
+#: lib/query.c:567
 #, c-format
 msgid "query of specfile %s failed, can't parse\n"
 msgstr ""
 
-#: lib/query.c:583
+#: lib/query.c:590
 msgid "no packages\n"
 msgstr ""
 
-#: lib/query.c:593
+#: lib/query.c:600
 #, c-format
 msgid "group %s does not contain any packages\n"
 msgstr ""
 
-#: lib/query.c:603
+#: lib/query.c:610
 #, c-format
 msgid "no package triggers %s\n"
 msgstr ""
 
-#: lib/query.c:613
+#: lib/query.c:620
 #, c-format
 msgid "no package requires %s\n"
 msgstr ""
 
-#: lib/query.c:624
+#: lib/query.c:631
 #, c-format
 msgid "no package provides %s\n"
 msgstr ""
 
-#: lib/query.c:654
+#: lib/query.c:661
 #, c-format
 msgid "file %s: %s\n"
 msgstr ""
 
-#: lib/query.c:657
+#: lib/query.c:664
 #, c-format
 msgid "file %s is not owned by any package\n"
 msgstr ""
 
-#: lib/query.c:683
+#: lib/query.c:690
 #, c-format
 msgid "invalid package number: %s\n"
 msgstr ""
 
-#: lib/query.c:686
+#: lib/query.c:693
 #, c-format
 msgid "package record number: %u\n"
 msgstr ""
 
-#: lib/query.c:690
+#: lib/query.c:697
 #, c-format
 msgid "record %d could not be read\n"
 msgstr ""
 
-#: lib/query.c:701 lib/rpminstall.c:473
+#: lib/query.c:708 lib/rpminstall.c:476
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:34
+#: lib/rpmchecksig.c:37
 #, c-format
 msgid "%s: open failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:45
+#: lib/rpmchecksig.c:48
 msgid "makeTempFile failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:77
+#: lib/rpmchecksig.c:80
 #, c-format
 msgid "%s: Fwrite failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:83
+#: lib/rpmchecksig.c:86
 #, c-format
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:116 lib/rpmchecksig.c:246
+#: lib/rpmchecksig.c:119 lib/rpmchecksig.c:249
 #, c-format
 msgid "%s: readLead failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:121
+#: lib/rpmchecksig.c:124
 #, c-format
 msgid "%s: Can't sign v1.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:125
+#: lib/rpmchecksig.c:128
 #, c-format
 msgid "%s: Can't re-sign v2.0 RPM\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:133 lib/rpmchecksig.c:260
+#: lib/rpmchecksig.c:136 lib/rpmchecksig.c:263
 #, c-format
 msgid "%s: rpmReadSignature failed\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:137 lib/rpmchecksig.c:265
+#: lib/rpmchecksig.c:140 lib/rpmchecksig.c:268
 #, c-format
 msgid "%s: No signature available\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:170
+#: lib/rpmchecksig.c:173
 #, c-format
 msgid "%s: writeLead failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:176
+#: lib/rpmchecksig.c:179
 #, c-format
 msgid "%s: rpmWriteSignature failed: %s\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:252
+#: lib/rpmchecksig.c:255
 #, c-format
 msgid "%s: No signature available (v1.0 RPM)\n"
 msgstr ""
 
-#: lib/rpmchecksig.c:415
+#: lib/rpmchecksig.c:418
 msgid "NOT OK"
 msgstr ""
 
-#: lib/rpmchecksig.c:416 lib/rpmchecksig.c:430
+#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
 msgid " (MISSING KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:418 lib/rpmchecksig.c:432
+#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
 msgid ") "
 msgstr ""
 
-#: lib/rpmchecksig.c:419 lib/rpmchecksig.c:433
+#: lib/rpmchecksig.c:422 lib/rpmchecksig.c:436
 msgid " (UNTRUSTED KEYS:"
 msgstr ""
 
-#: lib/rpmchecksig.c:421 lib/rpmchecksig.c:435
+#: lib/rpmchecksig.c:424 lib/rpmchecksig.c:438
 msgid ")"
 msgstr ""
 
-#: lib/rpmchecksig.c:429
+#: lib/rpmchecksig.c:432
 msgid "OK"
 msgstr ""
 
-#: lib/rpmdb.c:99
+#: lib/rpmdb.c:101
 #, c-format
 msgid "dbiTagsInit: unrecognized tag name: \"%s\" ignored\n"
 msgstr ""
 
-#: lib/rpmdb.c:262
+#: lib/rpmdb.c:264
 msgid ""
 "\n"
 "--> This version of rpm was not compiled with support for \"%%_dbapi %d\".\n"
@@ -3165,17 +3175,17 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:277
+#: lib/rpmdb.c:279
 #, c-format
 msgid "cannot open %s index using db%d - %s (%d)"
 msgstr ""
 
-#: lib/rpmdb.c:297
+#: lib/rpmdb.c:299
 #, c-format
 msgid "cannot open %s index"
 msgstr ""
 
-#: lib/rpmdb.c:312
+#: lib/rpmdb.c:314
 #, c-format
 msgid ""
 "\n"
@@ -3185,7 +3195,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:325
+#: lib/rpmdb.c:327
 msgid ""
 "\n"
 "--> The configured %%_dbapi was db%d, but the rpm database is db%d format.\n"
@@ -3195,7 +3205,7 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:340
+#: lib/rpmdb.c:342
 msgid ""
 "\n"
 "--> The rpm database is in db%d format, not the suggested db%d format.\n"
@@ -3206,238 +3216,238 @@ msgid ""
 "\n"
 msgstr ""
 
-#: lib/rpmdb.c:408
+#: lib/rpmdb.c:410
 #, c-format
 msgid "error(%d) getting \"%s\" records from %s index"
 msgstr ""
 
-#: lib/rpmdb.c:526
+#: lib/rpmdb.c:528
 #, c-format
 msgid "error(%d) storing record %s into %s"
 msgstr ""
 
-#: lib/rpmdb.c:535
+#: lib/rpmdb.c:537
 #, c-format
 msgid "error(%d) removing record %s from %s"
 msgstr ""
 
-#: lib/rpmdb.c:770 lib/rpmdb.c:2303
+#: lib/rpmdb.c:772 lib/rpmdb.c:2305
 msgid "no dbpath has been set"
 msgstr ""
 
-#: lib/rpmdb.c:869
+#: lib/rpmdb.c:871
 msgid ""
 "old format database is present; use --rebuilddb to generate a new format "
 "database"
 msgstr ""
 
 #. error
-#: lib/rpmdb.c:1080
+#: lib/rpmdb.c:1082
 #, c-format
 msgid "error(%d) counting packages"
 msgstr ""
 
-#: lib/rpmdb.c:1139 lib/rpmdb.c:1673
+#: lib/rpmdb.c:1141 lib/rpmdb.c:1675
 #, c-format
 msgid "%s: cannot read header at 0x%x"
 msgstr ""
 
-#: lib/rpmdb.c:1726
+#: lib/rpmdb.c:1728
 #, c-format
 msgid "removing 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1737
+#: lib/rpmdb.c:1739
 #, c-format
 msgid "removing \"%s\" from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1746
+#: lib/rpmdb.c:1748
 #, c-format
 msgid "removing %d entries from %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1888
+#: lib/rpmdb.c:1890
 #, c-format
 msgid "error(%d) allocating new package instance"
 msgstr ""
 
-#: lib/rpmdb.c:1945
+#: lib/rpmdb.c:1947
 #, c-format
 msgid "adding 0 %s entries.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1961
+#: lib/rpmdb.c:1963
 #, c-format
 msgid "adding \"%s\" to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:1970
+#: lib/rpmdb.c:1972
 #, c-format
 msgid "adding %d entries to %s index.\n"
 msgstr ""
 
-#: lib/rpmdb.c:2328
+#: lib/rpmdb.c:2330
 #, c-format
 msgid "rebuilding database %s into %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2332
+#: lib/rpmdb.c:2334
 #, c-format
 msgid "temporary database %s already exists"
 msgstr ""
 
-#: lib/rpmdb.c:2338
+#: lib/rpmdb.c:2340
 #, c-format
 msgid "creating directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2340
+#: lib/rpmdb.c:2342
 #, c-format
 msgid "error creating directory %s: %s"
 msgstr ""
 
-#: lib/rpmdb.c:2347
+#: lib/rpmdb.c:2349
 #, c-format
 msgid "opening old database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2358
+#: lib/rpmdb.c:2360
 #, c-format
 msgid "opening new database with dbapi %d\n"
 msgstr ""
 
-#: lib/rpmdb.c:2381
+#: lib/rpmdb.c:2383
 #, c-format
 msgid "record number %d in database is bad -- skipping."
 msgstr ""
 
-#: lib/rpmdb.c:2413
+#: lib/rpmdb.c:2415
 #, c-format
 msgid "cannot add record originally at %d"
 msgstr ""
 
-#: lib/rpmdb.c:2431
+#: lib/rpmdb.c:2433
 msgid "failed to rebuild database: original database remains in place\n"
 msgstr ""
 
-#: lib/rpmdb.c:2439
+#: lib/rpmdb.c:2441
 msgid "failed to replace old database with new database!\n"
 msgstr ""
 
-#: lib/rpmdb.c:2441
+#: lib/rpmdb.c:2443
 #, c-format
 msgid "replace files in %s with files from %s to recover"
 msgstr ""
 
-#: lib/rpmdb.c:2451
+#: lib/rpmdb.c:2453
 #, c-format
 msgid "removing directory %s\n"
 msgstr ""
 
-#: lib/rpmdb.c:2453
+#: lib/rpmdb.c:2455
 #, c-format
 msgid "failed to remove directory %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:136
+#: lib/rpminstall.c:139
 msgid "counting packages to install\n"
 msgstr ""
 
-#: lib/rpminstall.c:140
+#: lib/rpminstall.c:143
 #, c-format
 msgid "found %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:145
+#: lib/rpminstall.c:148
 msgid "looking for packages to download\n"
 msgstr ""
 
-#: lib/rpminstall.c:160
+#: lib/rpminstall.c:163
 #, c-format
 msgid "skipping %s - rpmGlob failed(%d)\n"
 msgstr ""
 
-#: lib/rpminstall.c:175
+#: lib/rpminstall.c:178
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:185
+#: lib/rpminstall.c:188
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:189
+#: lib/rpminstall.c:192
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:216
+#: lib/rpminstall.c:219
 #, c-format
 msgid "retrieved %d packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:228 lib/rpminstall.c:397
+#: lib/rpminstall.c:231 lib/rpminstall.c:400
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:246 lib/rpminstall.c:538
+#: lib/rpminstall.c:249 lib/rpminstall.c:541
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:261
+#: lib/rpminstall.c:264
 #, c-format
 msgid "cannot open Packages database in %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:281
+#: lib/rpminstall.c:284
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:326
+#: lib/rpminstall.c:329
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:331
+#: lib/rpminstall.c:334
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:348
+#: lib/rpminstall.c:351
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:359
+#: lib/rpminstall.c:362
 msgid "failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:377
+#: lib/rpminstall.c:380
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:476
+#: lib/rpminstall.c:479
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:499
+#: lib/rpminstall.c:502
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:527
+#: lib/rpminstall.c:530
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:533
+#: lib/rpminstall.c:536
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
@@ -3542,193 +3552,193 @@ msgstr ""
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/signature.c:111
+#: lib/signature.c:114
 #, c-format
 msgid "sigsize         : %d\n"
 msgstr ""
 
-#: lib/signature.c:112
+#: lib/signature.c:115
 #, c-format
 msgid "Header + Archive: %d\n"
 msgstr ""
 
-#: lib/signature.c:113
+#: lib/signature.c:116
 #, c-format
 msgid "expected size   : %d\n"
 msgstr ""
 
-#: lib/signature.c:117
+#: lib/signature.c:120
 msgid "file is not regular -- skipping size check\n"
 msgstr ""
 
-#: lib/signature.c:135
+#: lib/signature.c:138
 msgid "No signature\n"
 msgstr ""
 
-#: lib/signature.c:138
+#: lib/signature.c:141
 msgid "Old PGP signature\n"
 msgstr ""
 
-#: lib/signature.c:150
+#: lib/signature.c:153
 msgid "Old (internal-only) signature!  How did you get that!?"
 msgstr ""
 
-#: lib/signature.c:154
+#: lib/signature.c:157
 msgid "New Header signature\n"
 msgstr ""
 
 #. 8-byte pad
-#: lib/signature.c:161 lib/signature.c:203
+#: lib/signature.c:164 lib/signature.c:206
 #, c-format
 msgid "Signature size: %d\n"
 msgstr ""
 
-#: lib/signature.c:162 lib/signature.c:204
+#: lib/signature.c:165 lib/signature.c:207
 #, c-format
 msgid "Signature pad : %d\n"
 msgstr ""
 
-#: lib/signature.c:267
+#: lib/signature.c:270
 #, c-format
 msgid "Couldn't exec pgp (%s)"
 msgstr ""
 
-#: lib/signature.c:278
+#: lib/signature.c:281
 msgid "pgp failed"
 msgstr ""
 
 #. PGP failed to write signature
 #. Just in case
-#: lib/signature.c:285
+#: lib/signature.c:288
 msgid "pgp failed to write signature"
 msgstr ""
 
-#: lib/signature.c:290
+#: lib/signature.c:293
 #, c-format
 msgid "PGP sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:301 lib/signature.c:378
+#: lib/signature.c:304 lib/signature.c:381
 msgid "unable to read the signature"
 msgstr ""
 
-#: lib/signature.c:306
+#: lib/signature.c:309
 #, c-format
 msgid "Got %d bytes of PGP sig\n"
 msgstr ""
 
-#: lib/signature.c:344 lib/signature.c:689
+#: lib/signature.c:347 lib/signature.c:692
 msgid "Couldn't exec gpg"
 msgstr ""
 
-#: lib/signature.c:355
+#: lib/signature.c:358
 msgid "gpg failed"
 msgstr ""
 
 #. GPG failed to write signature
 #. Just in case
-#: lib/signature.c:362
+#: lib/signature.c:365
 msgid "gpg failed to write signature"
 msgstr ""
 
-#: lib/signature.c:367
+#: lib/signature.c:370
 #, c-format
 msgid "GPG sig size: %d\n"
 msgstr ""
 
-#: lib/signature.c:383
+#: lib/signature.c:386
 #, c-format
 msgid "Got %d bytes of GPG sig\n"
 msgstr ""
 
-#: lib/signature.c:410
+#: lib/signature.c:413
 msgid "Generating signature using PGP.\n"
 msgstr ""
 
-#: lib/signature.c:416
+#: lib/signature.c:419
 msgid "Generating signature using GPG.\n"
 msgstr ""
 
-#: lib/signature.c:495 lib/signature.c:557
+#: lib/signature.c:498 lib/signature.c:560
 msgid "Could not run pgp.  Use --nopgp to skip PGP checks."
 msgstr ""
 
-#: lib/signature.c:555 lib/signature.c:628
+#: lib/signature.c:558 lib/signature.c:631
 msgid "exec failed!\n"
 msgstr ""
 
-#: lib/signature.c:630
+#: lib/signature.c:633
 msgid "Could not run gpg.  Use --nogpg to skip GPG checks."
 msgstr ""
 
-#: lib/signature.c:718
+#: lib/signature.c:721
 msgid "Couldn't exec pgp"
 msgstr ""
 
 #. @notreached@
 #. This case should have been screened out long ago.
-#: lib/signature.c:722 lib/signature.c:775
+#: lib/signature.c:725 lib/signature.c:778
 msgid "Invalid %%_signature spec in macro file"
 msgstr ""
 
-#: lib/signature.c:755
+#: lib/signature.c:758
 msgid "You must set \"%%_gpg_name\" in your macro file"
 msgstr ""
 
-#: lib/signature.c:767
+#: lib/signature.c:770
 msgid "You must set \"%%_pgp_name\" in your macro file"
 msgstr ""
 
-#: lib/transaction.c:420
+#: lib/transaction.c:423
 #, c-format
 msgid "excluding file %s%s\n"
 msgstr ""
 
-#: lib/transaction.c:446 lib/transaction.c:529
+#: lib/transaction.c:449 lib/transaction.c:532
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/transaction.c:451
+#: lib/transaction.c:454
 #, c-format
 msgid "relocating %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:522
+#: lib/transaction.c:525
 #, c-format
 msgid "relocating directory %s to %s\n"
 msgstr ""
 
-#: lib/transaction.c:674
+#: lib/transaction.c:677
 #, c-format
 msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
-#: lib/uninstall.c:54
+#: lib/uninstall.c:56
 #, c-format
 msgid "cannot remove %s - directory not empty"
 msgstr ""
 
-#: lib/uninstall.c:58
+#: lib/uninstall.c:60
 #, c-format
 msgid "rmdir of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:68
+#: lib/uninstall.c:70
 #, c-format
 msgid "removal of %s failed: %s"
 msgstr ""
 
-#: lib/uninstall.c:131
+#: lib/uninstall.c:133
 #, c-format
 msgid "will remove files test = %d\n"
 msgstr ""
 
-#: lib/uninstall.c:215
+#: lib/uninstall.c:217
 msgid "running postuninstall script (if any)\n"
 msgstr ""
 
-#: lib/uninstall.c:416
+#: lib/uninstall.c:418
 #, c-format
 msgid "execution of %s-%s-%s script failed, exit status %d"
 msgstr ""
@@ -3745,69 +3755,69 @@ msgstr ""
 msgid "package lacks both group name and id lists (this should never happen)"
 msgstr ""
 
-#: lib/verify.c:284
+#: lib/verify.c:285
 #, c-format
 msgid "missing    %s\n"
 msgstr ""
 
-#: lib/verify.c:346
+#: lib/verify.c:347
 #, c-format
 msgid "Unsatisfied dependencies for %s-%s-%s: "
 msgstr ""
 
-#: rpmio/rpmio.c:543
+#: rpmio/rpmio.c:539
 msgid "Success"
 msgstr ""
 
-#: rpmio/rpmio.c:546
+#: rpmio/rpmio.c:542
 msgid "Bad server response"
 msgstr ""
 
-#: rpmio/rpmio.c:549
+#: rpmio/rpmio.c:545
 msgid "Server IO error"
 msgstr ""
 
-#: rpmio/rpmio.c:552
+#: rpmio/rpmio.c:548
 msgid "Server timeout"
 msgstr ""
 
-#: rpmio/rpmio.c:555
+#: rpmio/rpmio.c:551
 msgid "Unable to lookup server host address"
 msgstr ""
 
-#: rpmio/rpmio.c:558
+#: rpmio/rpmio.c:554
 msgid "Unable to lookup server host name"
 msgstr ""
 
-#: rpmio/rpmio.c:561
+#: rpmio/rpmio.c:557
 msgid "Failed to connect to server"
 msgstr ""
 
-#: rpmio/rpmio.c:564
+#: rpmio/rpmio.c:560
 msgid "Failed to establish data connection to server"
 msgstr ""
 
-#: rpmio/rpmio.c:567
+#: rpmio/rpmio.c:563
 msgid "IO error to local file"
 msgstr ""
 
-#: rpmio/rpmio.c:570
+#: rpmio/rpmio.c:566
 msgid "Error setting remote server to passive mode"
 msgstr ""
 
-#: rpmio/rpmio.c:573
+#: rpmio/rpmio.c:569
 msgid "File not found on server"
 msgstr ""
 
-#: rpmio/rpmio.c:576
+#: rpmio/rpmio.c:572
 msgid "Abort in progress"
 msgstr ""
 
-#: rpmio/rpmio.c:580
+#: rpmio/rpmio.c:576
 msgid "Unknown or unexpected error"
 msgstr ""
 
-#: rpmio/rpmio.c:1175
+#: rpmio/rpmio.c:1171
 #, c-format
 msgid "logging into %s as %s, pw %s\n"
 msgstr ""
@@ -3879,17 +3889,17 @@ msgstr ""
 msgid "Macro %%%.*s not found, skipping"
 msgstr ""
 
-#: rpmio/macro.c:1314
+#: rpmio/macro.c:1304
 msgid "Target buffer overflow"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/macro.c:1493 rpmio/macro.c:1499
+#: rpmio/macro.c:1483 rpmio/macro.c:1489
 #, c-format
 msgid "File %s: %s"
 msgstr ""
 
-#: rpmio/macro.c:1502
+#: rpmio/macro.c:1492
 #, c-format
 msgid "File %s is smaller than %d bytes"
 msgstr ""
index b0b26a7..9c37106 100644 (file)
@@ -1272,16 +1272,6 @@ expandMacro(MacroBuf *mb)
 }
 
 /* =============================================================== */
-/* XXX this is used only in build/expression.c and will go away. */
-const char *
-getMacroBody(MacroContext *mc, const char *name)
-{
-    MacroEntry **mep = findEntry(mc, name, 0);
-    MacroEntry *me = (mep ? *mep : NULL);
-    return ( me ? me->body : (const char *)NULL );
-}
-
-/* =============================================================== */
 
 int
 expandMacros(void *spec, MacroContext *mc, char *s, size_t slen)
index 3bc6c5b..70b0c07 100644 (file)
@@ -189,11 +189,7 @@ DBGIO(fd, (stderr, "==> fdDup(%d) fd %p %s\n", fdno, fd, fdbg(fd)));
     /*@-refcounttrans@*/ return fd; /*@=refcounttrans@*/
 }
 
-#ifdef USE_COOKIE_SEEK_POINTER
-static inline int fdSeekNot(void * cookie,  /*@unused@*/ _IO_off64_t *pos,  /*@unused@*/ int whence) {
-#else
-static inline int fdSeekNot(void * cookie,  /*@unused@*/ off_t pos,  /*@unused@*/ int whence) {
-#endif
+static inline int fdSeekNot(void * cookie,  /*@unused@*/ _libio_pos_t pos,  /*@unused@*/ int whence) {
     FD_t fd = c2f(cookie);
     FDSANE(fd);                /* XXX keep gcc quiet */
     return -2;
@@ -336,11 +332,11 @@ DBGIO(fd, (stderr, "==>\tfdWrite(%p,%p,%ld) rc %ld %s\n", cookie, buf, (long)cou
     return rc;
 }
 
+static inline int fdSeek(void * cookie, _libio_pos_t pos, int whence) {
 #ifdef USE_COOKIE_SEEK_POINTER
-static inline int fdSeek(void * cookie, _IO_off64_t *pos, int whence) {
     _IO_off64_t p = *pos;
 #else
-static inline int fdSeek(void * cookie, off_t p, int whence) {
+    off_t p = pos;
 #endif
     FD_t fd = c2f(cookie);
     off_t rc;
@@ -1558,11 +1554,7 @@ fprintf(stderr, "*** write: rc %d errno %d %s \"%s\"\n", rc, errno, strerror(err
     return count;
 }
 
-#ifdef USE_COOKIE_SEEK_POINTER
-static inline int ufdSeek(void * cookie, _IO_off64_t *pos, int whence) {
-#else
-static inline int ufdSeek(void * cookie, off_t pos, int whence) {
-#endif
+static inline int ufdSeek(void * cookie, _libio_pos_t pos, int whence) {
     FD_t fd = c2f(cookie);
 
     switch (fd->urlType) {
@@ -1960,11 +1952,11 @@ DBGIO(fd, (stderr, "==>\tgzdWrite(%p,%p,%u) rc %lx %s\n", cookie, buf, (unsigned
 }
 
 /* XXX zlib-1.0.4 has not */
+static inline int gzdSeek(void * cookie, _libio_pos_t pos, int whence) {
 #ifdef USE_COOKIE_SEEK_POINTER
-static inline int gzdSeek(void * cookie, _IO_off64_t *pos, int whence) {
     _IO_off64_t p = *pos;
 #else
-static inline int gzdSeek(void * cookie, off_t p, int whence) {
+    off_t p = pos;
 #endif
     int rc;
 #if HAVE_GZSEEK
@@ -2139,11 +2131,7 @@ static ssize_t bzdWrite(void * cookie, const char * buf, size_t count) {
     return rc;
 }
 
-#ifdef USE_COOKIE_SEEK_POINTER
-static inline int bzdSeek(void * cookie, _IO_off64_t *pos, int whence) {
-#else
-static inline int bzdSeek(void * cookie, off_t p, int whence) {
-#endif
+static inline int bzdSeek(void * cookie, _libio_pos_t pos, int whence) {
     FD_t fd = c2f(cookie);
 
     BZDONLY(fd);
@@ -2263,12 +2251,15 @@ DBGIO(fd, (stderr, "==> Fwrite(%p,%u,%u,%p) %s\n", buf, (unsigned)size, (unsigne
     return rc;
 }
 
+int Fseek(FD_t fd, _libio_off_t offset, int whence) {
+    fdio_seek_function_t *_seek;
 #ifdef USE_COOKIE_SEEK_POINTER
-int Fseek(FD_t fd, _IO_off64_t offset, int whence) {
-#else 
-int Fseek(FD_t fd, off_t offset, int whence) {
+    _IO_off64_t o64 = offset;
+    _libio_pos_t pos = &o64;
+#else
+    _libio_pos_t pos = offset;
 #endif
-    fdio_seek_function_t *_seek;
+
     long int rc;
 
     FDSANE(fd);
@@ -2284,11 +2275,7 @@ DBGIO(fd, (stderr, "==> Fseek(%p,%ld,%d) %s\n", fd, (long)offset, whence, fdbg(f
 
     _seek = FDIOVEC(fd, seek);
 
-#ifdef USE_COOKIE_SEEK_POINTER
-    rc = (_seek ? _seek(fd, &offset, whence) : -2);
-#else
-    rc = (_seek ? _seek(fd, offset, whence) : -2);
-#endif
+    rc = (_seek ? _seek(fd, pos, whence) : -2);
     return rc;
 }
 
@@ -2644,21 +2631,13 @@ int Fcntl(FD_t fd, int op, void *lip) {
  */
 
 /* XXX falloc.c: analogues to pread(3)/pwrite(3). */
-#ifdef USE_COOKIE_SEEK_POINTER
-ssize_t Pread(FD_t fd, void * buf, size_t count, _IO_off64_t offset) {
-#else
-ssize_t Pread(FD_t fd, void * buf, size_t count, off_t offset) {
-#endif
+ssize_t Pread(FD_t fd, void * buf, size_t count, _libio_off_t offset) {
     if (Fseek(fd, offset, SEEK_SET) < 0)
        return -1;
     return Fread(buf, sizeof(char), count, fd);
 }
 
-#ifdef USE_COOKIE_SEEK_POINTER
-ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _IO_off64_t offset) {
-#else
-ssize_t Pwrite(FD_t fd, const void * buf, size_t count, off_t offset) {
-#endif
+ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _libio_off_t offset) {
     if (Fseek(fd, offset, SEEK_SET) < 0)
        return -1;
     return Fwrite(buf, sizeof(char), count, fd);
index 30ce9eb..0308550 100644 (file)
 #include <stdlib.h>
 #include <unistd.h>
 
-#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ == 2
+/** \ingroup rpmio
+ * Hide libio API lossage.
+ * The libio interface changed after glibc-2.1.3 to pass the seek offset
+ * argument as a pointer rather than as an off_t. The snarl below defines
+ * typedefs to isolate the lossage.
+ * API unchanged.
+ */
+/*@{*/
+#if !defined(__LCLINT__) && defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ == 2
 #define USE_COOKIE_SEEK_POINTER 1
+typedef _IO_off64_t    _libio_off_t;
+typedef _libio_off_t * _libio_pos_t;
+#else
+typedef off_t          _libio_off_t;
+typedef off_t          _libio_pos_t;
 #endif
-
+/*@}*/
 
 /** \ingroup rpmio
  */
@@ -46,11 +59,7 @@ typedef ssize_t fdio_write_function_t (void *cookie, const char *buf, size_t nby
 
 /** \ingroup rpmio
  */
-#ifdef USE_COOKIE_SEEK_POINTER
-typedef int fdio_seek_function_t (void *cookie, _IO_off64_t * offset, int whence);
-#else
-typedef int fdio_seek_function_t (void *cookie, off_t offset, int whence);
-#endif
+typedef int fdio_seek_function_t (void *cookie, _libio_pos_t pos, int whence);
 
 /** \ingroup rpmio
  */
@@ -187,11 +196,7 @@ size_t     Fwrite  (const void *buf, size_t size, size_t nmemb, FD_t fd);
 /** \ingroup rpmio
  * fseek(3) clone.
  */
-#ifdef USE_COOKIE_SEEK_POINTER
-int    Fseek   (FD_t fd, _IO_off64_t offset, int whence);
-#else
-int    Fseek   (FD_t fd, off_t offset, int whence);
-#endif
+int    Fseek   (FD_t fd, _libio_off_t offset, int whence);
 
 /** \ingroup rpmio
  * fclose(3) clone.
@@ -232,20 +237,12 @@ int       Fcntl   (FD_t fd, int op, void *lip);
 /** \ingroup rpmio
  * pread(2) clone.
  */
-#ifdef USE_COOKIE_SEEK_POINTER
-ssize_t Pread(FD_t fd, void * buf, size_t count, _IO_off64_t offset);
-#else
-ssize_t Pread(FD_t fd, void * buf, size_t count, off_t offset);
-#endif
+ssize_t Pread(FD_t fd, void * buf, size_t count, _libio_off_t offset);
 
 /** \ingroup rpmio
  * pwrite(2) clone.
  */
-#ifdef USE_COOKIE_SEEK_POINTER
-ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _IO_off64_t offset);
-#else
-ssize_t Pwrite(FD_t fd, const void * buf, size_t count, off_t offset);
-#endif
+ssize_t Pwrite(FD_t fd, const void * buf, size_t count, _libio_off_t offset);
 /*@}*/
 
 /** \ingroup rpmrpc
index d4fae9b..922e53c 100644 (file)
@@ -57,7 +57,7 @@ typedef struct {
     void (*Transform) (void * private);
 } FDHASH_t;
 
-extern FDHASH_t rpmio_md5hash;
+/*@observer@*/ extern FDHASH_t rpmio_md5hash;
 
 /** \ingroup rpmio
  * The FD_t File Handle data structure.
@@ -84,7 +84,7 @@ struct _FD_s {
 /*@observer@*/ const void *errcookie;  /* gzdio/bzdio/ufdio: */
 
        FDSTAT_t        *stats;         /* I/O statistics */
-       FDHASH_t        *hash;          /* Hash vectors */
+/*@owned@*/ FDHASH_t   *hash;          /* Hash vectors */
 
        int             ftpFileDoneNeeded; /* ufdio: (FTP) */
        unsigned int    firstFree;      /* fadio: */
@@ -316,8 +316,10 @@ int ufdClose( /*@only@*/ void * cookie);
  */
 /*@unused@*/ static inline void fdInitMD5(FD_t fd) {
     fd->hash = xcalloc(1, sizeof(*fd->hash));
+    /*@-globstate@*/
     *fd->hash = rpmio_md5hash; /* structure assignment */
     fd->hash->private = (*fd->hash->Init) (0);
+    /*@=globstate@*/
 }
 
 /** \ingroup rpmio
index 0bc2090..02d3d99 100644 (file)
@@ -33,7 +33,7 @@ typedef enum rpmlogLvl_e {
 #define        RPMLOG_PRIMASK  0x07    /* mask to extract priority part (internal) */
                                /* extract priority */
 #define        RPMLOG_PRI(p)   ((p) & RPMLOG_PRIMASK)
-#define        RPMLOG_MAKEPRI(fac, pri)        (((fac) << 3) | (pri))
+#define        RPMLOG_MAKEPRI(fac, pri)        ((((unsigned)(fac)) << 3) | (pri))
 
 #ifdef RPMLOG_NAMES
 #define        _RPMLOG_NOPRI   0x10    /* the "no priority" priority */
@@ -90,7 +90,7 @@ typedef       enum rpmlogFac_e {
     RPMLOG_LOCAL7      = (23<<3),      /*!< reserved for local use */
 
 #define        RPMLOG_NFACILITIES 24   /*!< current number of facilities */
-    RPMLOG_ERRMSG      = ((RPMLOG_NFACILITIES+0)<<3)
+    RPMLOG_ERRMSG      = (((unsigned)(RPMLOG_NFACILITIES+0))<<3)
 } rpmlogFac;
 
 #define        RPMLOG_FACMASK  0x03f8  /*!< mask to extract facility part */
index db5dc23..2b51684 100644 (file)
@@ -47,16 +47,6 @@ extern "C" {
 void   rpmDumpMacroTable       (MacroContext * mc, FILE * fp);
 
 /**
- * Return value of macro.
- * @deprecated Used only in build/expression.c.
- * @todo Eliminate.
- * @param mc           macro context (NULL uses global context).
- * @param name         macro name
- * @return             macro body
- */
-const char *getMacroBody (MacroContext *mc, const char *name);
-
-/**
  * Expand macro into buffer.
  * @deprecated Use rpmExpand().
  * @todo Eliminate from API.
@@ -93,6 +83,7 @@ void  delMacro        (MacroContext * mc, const char * n);
  * @param mc           macro context (NULL uses global context).
  * @param n            macro name, options, body
  * @param level                macro recursion level (0 is entry API)
+ * @return             @todo Document.
  */
 int    rpmDefineMacro  (MacroContext * mc, const char * macro, int level);
 
index e71282b..ba82bd3 100644 (file)
@@ -74,6 +74,8 @@ CATALOGS = @CATALOGS@
 CATOBJEXT = @CATOBJEXT@
 CC = @CC@
 CPP = @CPP@
+CSCOPE = @CSCOPE@
+CTAGS = @CTAGS@
 DATADIRNAME = @DATADIRNAME@
 DBLIBOBJS = @DBLIBOBJS@
 DLLTOOL = @DLLTOOL@