- make sure that rpm can verify prelinked shared libraries.
authorjbj <devnull@localhost>
Thu, 20 Jun 2002 02:19:21 +0000 (02:19 +0000)
committerjbj <devnull@localhost>
Thu, 20 Jun 2002 02:19:21 +0000 (02:19 +0000)
- don't install /usr/lib/rpm/redhat per-vendor configuration anymore.

CVS patchset: 5512
CVS date: 2002/06/20 02:19:21

54 files changed:
CHANGES
Makefile.am
autogen.sh
build/files.c
configure.in
installplatform
lib/signature.c
lib/transaction.c
lib/verify.c
libelf/.cvsignore [new file with mode: 0755]
libelf/Makefile.am [new file with mode: 0755]
libelf/autogen.sh [new file with mode: 0755]
libelf/lib/.cvsignore [new file with mode: 0755]
libelf/lib/Makefile.am [new file with mode: 0755]
macros.in
po/cs.po
po/da.po
po/de.po
po/en_RN.po
po/es.po
po/eu_ES.po
po/fi.po
po/fr.po
po/gl.po
po/hu.po
po/id.po
po/is.po
po/it.po
po/ja.po
po/ko.po
po/no.po
po/pl.po
po/pt.po
po/pt_BR.po
po/ro.po
po/rpm.pot
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po
po/wa.po
po/zh.po
po/zh_CN.GB2312.po
python/Makefile.in
python/header-py.c
rpm.spec.in
rpmdb/Makefile.am
rpmdb/legacy.c
rpmdb/legacy.h
rpmrc.in
tools/Makefile.am

diff --git a/CHANGES b/CHANGES
index dc035e706beb37d919f2c74cb69a03931c185344..bd2162392d44cfd0c1f4d1b0ac6d0e53d4228675 100644 (file)
--- a/CHANGES
+++ b/CHANGES
        - beecrypt: merge changes from beecrypt-2.3.0.
        - beecrypt: merge doxygen markup with rpmapi doco.
        - beecrypt: revert cpu/arch compile option mixup (#66752).
+       - make sure that rpm can verify prelinked shared libraries.
+       - don't install /usr/lib/rpm/redhat per-vendor configuration anymore.
 
 4.0.3 -> 4.0.4:
        - solaris: translate i86pc to i386 (#57182).
index 1e5cda7f8ba34383d91ec13c774b50455fbec655..bdf668b6dc667b4bfd61e0abeef32a3fbc64fd43 100644 (file)
@@ -11,7 +11,7 @@ EXTRA_DIST = CHANGES CREDITS Doxyheader GROUPS README.amiga INSTALL \
        Perl-RPM po/*.in po/*.po po/rpm.pot \
        rpm.magic rpmpopt-$(VERSION) rpmqv.c rpm.c
 
-SUBDIRS = intl po @WITH_ZLIB_SUBDIR@ @WITH_DB_SUBDIR@ popt beecrypt rpmio rpmdb lib build misc @WITH_PYTHON_SUBDIR@ tools scripts tests doc .
+SUBDIRS = intl po @WITH_ZLIB_SUBDIR@ @WITH_LIBELF_SUBDIR@ @WITH_DB_SUBDIR@ popt beecrypt rpmio rpmdb lib build misc @WITH_PYTHON_SUBDIR@ tools scripts tests doc .
 
 INCLUDES = \
        -I$(top_srcdir)/build \
@@ -20,6 +20,7 @@ INCLUDES = \
        -I$(top_srcdir)/rpmio \
        -I$(top_srcdir)/beecrypt \
        -I$(top_srcdir)/popt \
+       @WITH_LIBELF_INCLUDE@ \
        @WITH_ZLIB_INCLUDE@ \
        @INCPATH@
 
@@ -34,6 +35,7 @@ myLDADD = \
        $(top_builddir)/rpmdb/librpmdb.la \
        $(top_builddir)/rpmio/librpmio.la \
        $(top_builddir)/popt/libpopt.la \
+       @WITH_LIBELF_LIB@ \
        @WITH_ZLIB_LIB@ \
        @INTLLIBS@ @LIBMISC@
 
index 6749736ebddf9f002f16ec7fc435234b4e531093..a4aa0e0cf91bcdb034959d09492707ee3a22dcab 100755 (executable)
@@ -23,7 +23,9 @@ recent versions of libtool/autoconf/automake.
 (echo "--- popt"; cd popt; ./autogen.sh --noconfigure "$@")
 (echo "--- zlib"; cd zlib; ./autogen.sh --noconfigure "$@")
 (echo "--- beecrypt"; cd beecrypt; ./autogen.sh --noconfigure "$@")
+(echo "--- libelf"; cd libelf; ./autogen.sh --noconfigure "$@")
 
+echo "--- rpm"
 libtoolize --copy --force
 aclocal
 autoheader
index b227700cc72a3628c9ff4204cf2acf50da5e5abb..8912bf2ba21e6f912b67f2e220dc46587e38332e 100644 (file)
@@ -1271,7 +1271,7 @@ static void genCpioListAndHeader(/*@partial@*/ FileList fl,
        
        buf[0] = '\0';
        if (S_ISREG(flp->fl_mode))
-           (void) domd5(flp->diskURL, buf, 1);
+           (void) domd5(flp->diskURL, buf, 1, NULL);
        s = buf;
        (void) headerAddOrAppendEntry(h, RPMTAG_FILEMD5S, RPM_STRING_ARRAY_TYPE,
                               &s, 1);
index 0f9316dee1bc23a0217d851363f2f8050253a337..83961d7d8fec90f9e521ab649730d89be13b4dd5 100644 (file)
@@ -358,6 +358,31 @@ dnl
 
 dnl Checks for libraries.
 
+WITH_LIBELF_SUBDIR=
+WITH_LIBELF_INCLUDE=
+WITH_LIBELF_LIB=
+AC_CHECK_HEADER([libelf/gelf.h], [
+       AC_DEFINE(HAVE_LIBELF_GELF_H, 1, [Define to 1 if you have the <libelf/gelf.h> header file.])
+       WITH_LIBELF_INCLUDE="-I/usr/include/libelf"
+       INCPATH="$INCPATH -I/usr/include/libelf"
+       AC_CHECK_FUNC(gelf_getdyn, [],
+           AC_CHECK_LIB(elf, gelf_getdyn)
+       )
+    ], [
+       if test -d libelf ; then
+           AC_DEFINE(HAVE_LIBELF_GELF_H, 1, [Define to 1 if you have the <libelf/gelf.h> header file.])
+           AC_DEFINE(HAVE_LIBELF, 1, [Define to 1 if you have the `elf' library (-lelf).])
+           WITH_LIBELF_SUBDIR=libelf
+           addlib \${top_builddir}/libelf
+           WITH_LIBELF_INCLUDE="-I\${top_srcdir}/${WITH_LIBELF_SUBDIR}/lib"
+           INCPATH="$INCPATH -I\${top_srcdir}/${WITH_LIBELF_SUBDIR}/lib"
+           WITH_LIBELF_LIB="\${top_builddir}/${WITH_LIBELF_SUBDIR}/lib/libelf.la"
+       fi
+])
+AC_SUBST(WITH_LIBELF_SUBDIR)
+AC_SUBST(WITH_LIBELF_INCLUDE)
+AC_SUBST(WITH_LIBELF_LIB)
+
 AC_CHECK_FUNC(setreuid, [], [
     AC_CHECK_LIB(ucb, setreuid, [if echo $LIBS | grep -- -lucb >/dev/null ;then :; else LIBS="$LIBS -lc -lucb" USEUCB=y;fi])
 ])
@@ -1158,7 +1183,7 @@ dnl XXX this causes popt to depend on zlib et al
 dnl # XXX Propagate -lucb to popt ...
 dnl export LIBS INCPATH CONFIG_SITE
 
-AC_CONFIG_SUBDIRS(popt beecrypt zlib db3)
+AC_CONFIG_SUBDIRS(popt beecrypt zlib libelf db3)
 
 AC_OUTPUT([ Doxyfile Makefile rpmrc macros platform rpmpopt rpm.spec
        rpmio/Makefile rpmdb/Makefile lib/Makefile build/Makefile
index 5c033fcc50da87ee573ff24bd52b8f3abd5622bd..05a24c1af21a52d345117db955ece1d799930ff4 100755 (executable)
@@ -103,15 +103,15 @@ done
   [ -L noarch-${OS} ] && rm -f noarch-${OS} 2>/dev/null
   mkdir -p noarch-${OS}
   sed -e "/^%_arch/s,${arch},noarch," ${arch}-${OS}/macros | grep -v '^%optflags' > noarch-${OS}/macros
-  [ -d ${VENDOR} ] || mkdir ${VENDOR}
-  for i in brp-* find-lang.sh find-provides find-requires perl.prov perl.req
-  do
-    sed -e "s,/usr/lib/rpm,/usr/lib/rpm/${VENDOR},g" < $i > ${VENDOR}/$i
-    chmod +x ${VENDOR}/$i
-  done
-#  chmod -x ${VENDOR}/perl.req
-  echo "macrofiles:     /usr/lib/rpm/macros:/usr/lib/rpm/${VENDOR}/macros:/etc/rpm/macros.specspo:/etc/rpm/macros.cdb" > ${VENDOR}/rpmrc
-  sed -e "s,/usr/lib/rpm,/usr/lib/rpm/${VENDOR},g" < ${arch}-${OS}/macros | grep -v '^%(_arch|optflags)' > ${VENDOR}/macros
+#  [ -d ${VENDOR} ] || mkdir ${VENDOR}
+#  for i in brp-* find-lang.sh find-provides find-requires perl.prov perl.req
+#  do
+#    sed -e "s,/usr/lib/rpm,/usr/lib/rpm/${VENDOR},g" < $i > ${VENDOR}/$i
+#    chmod +x ${VENDOR}/$i
+#  done
+##  chmod -x ${VENDOR}/perl.req
+#  echo "macrofiles:     /usr/lib/rpm/macros:/usr/lib/rpm/${VENDOR}/macros:/etc/rpm/macros.specspo:/etc/rpm/macros.cdb" > ${VENDOR}/rpmrc
+#  sed -e "s,/usr/lib/rpm,/usr/lib/rpm/${VENDOR},g" < ${arch}-${OS}/macros | grep -v '^%(_arch|optflags)' > ${VENDOR}/macros
 }
 
 rm $TEMPRC
index df5d4fcbce24cb37de2599d6fb901725737bb6e8..aeb72d7b28bc1b59c18ecc84117feaa756f9428a 100644 (file)
@@ -509,7 +509,7 @@ static int makeHDRSignature(Header sig, const char * file, int_32 sigTag,
            int_32 uht, uhc;
        
            if (!headerGetEntry(h, RPMTAG_HEADERIMMUTABLE, &uht, &uh, &uhc)
-           ||   uh == NULL)
+            ||  uh == NULL)
            {
                h = headerFree(h, NULL);
                goto exit;
@@ -542,7 +542,7 @@ static int makeHDRSignature(Header sig, const char * file, int_32 sigTag,
            goto exit;
        (void) Fclose(fd);      fd = NULL;
        if (makeGPGSignature(fn, &pkt, &pktlen, passPhrase)
-       ||  !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
+        || !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
            goto exit;
        ret = 0;
        break;
@@ -560,7 +560,7 @@ static int makeHDRSignature(Header sig, const char * file, int_32 sigTag,
            goto exit;
        (void) Fclose(fd);      fd = NULL;
        if (makePGPSignature(fn, &pkt, &pktlen, passPhrase)
-       ||  !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
+        || !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
            goto exit;
        ret = 0;
        break;
@@ -597,15 +597,15 @@ int rpmAddSignature(Header sig, const char * file, int_32 sigTag,
     case RPMSIGTAG_MD5:
        pktlen = 16;
        pkt = xcalloc(1, pktlen);
-       if (mdbinfile(file, pkt)
-       ||  !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
+       if (domd5(file, pkt, 1, NULL)
+        || !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
            break;
        ret = 0;
        break;
     case RPMSIGTAG_PGP5:       /* XXX legacy */
     case RPMSIGTAG_PGP:
        if (makePGPSignature(file, &pkt, &pktlen, passPhrase)
-       ||  !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
+        || !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
            break;
 #ifdef NOTYET  /* XXX needs hdrmd5ctx, like hdrsha1ctx. */
        /* XXX Piggyback a header-only RSA signature as well. */
@@ -615,7 +615,7 @@ int rpmAddSignature(Header sig, const char * file, int_32 sigTag,
        break;
     case RPMSIGTAG_GPG:
        if (makeGPGSignature(file, &pkt, &pktlen, passPhrase)
-       ||  !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
+        || !headerAddEntry(sig, sigTag, RPM_BIN_TYPE, pkt, pktlen))
            break;
        /* XXX Piggyback a header-only DSA signature as well. */
        ret = makeHDRSignature(sig, file, RPMSIGTAG_DSA, passPhrase);
@@ -960,7 +960,7 @@ rpmtsFindPubkey(rpmts ts)
                continue;
            ix = rpmdbGetIteratorFileNum(mi);
            if (ix >= pc
-           || b64decode(pubkeys[ix], (void **) &ts->pkpkt, &ts->pkpktlen))
+            || b64decode(pubkeys[ix], (void **) &ts->pkpkt, &ts->pkpktlen))
                ix = -1;
            pubkeys = headerFreeData(pubkeys, pt);
            break;
index 906f847056a9b4490edd89f8e171258b981d1c0c..50f36001f4f6890175a454fe218bc856a100ffc2 100644 (file)
@@ -140,7 +140,7 @@ static fileAction decideFileFate(const rpmts ts,
 #endif
            const unsigned char * omd5 = ofi->md5s + (16 * ofi->i);
            const unsigned char * nmd5 = nfi->md5s + (16 * nfi->i);
-           if (domd5(fn, buffer, 0))
+           if (domd5(fn, buffer, 0, NULL))
                return FA_CREATE;       /* assume file has been removed */
            if (!memcmp(omd5, buffer, 16))
                return FA_CREATE;       /* unmodified config file, replace. */
@@ -150,7 +150,7 @@ static fileAction decideFileFate(const rpmts ts,
        } else {
            const char * omd5 = ofi->fmd5s[ofi->i];
            const char * nmd5 = nfi->fmd5s[nfi->i];
-           if (domd5(fn, buffer, 1))
+           if (domd5(fn, buffer, 1, NULL))
                return FA_CREATE;       /* assume file has been removed */
            if (!strcmp(omd5, buffer))
                return FA_CREATE;       /* unmodified config file, replace. */
@@ -641,7 +641,7 @@ assert(otherFi != NULL);
            /* Here is a pre-existing modified config file that needs saving. */
            {   char md5sum[50];
                const unsigned char * md5 = fi->md5s + (16 * i);
-               if (!domd5(fn, md5sum, 0) && memcmp(md5, md5sum, 16)) {
+               if (!domd5(fn, md5sum, 0, NULL) && memcmp(md5, md5sum, 16)) {
                    fi->actions[i] = FA_BACKUP;
                    /*@switchbreak@*/ break;
                }
index 42652b6e24fbe79eb8c24825899f82479dfd2367..9330810e4786336b46dd482f69b0292c4be5d575 100644 (file)
@@ -116,8 +116,11 @@ int rpmVerifyFile(const rpmts ts, const rpmfi fi,
 
     if (flags & RPMVERIFY_MD5) {
        unsigned char md5sum[16];
+       size_t fsize;
 
-       rc = domd5(fn, md5sum, 0);
+       /* XXX If --nomd5, then prelinked library sizes are not corrected. */
+       rc = domd5(fn, md5sum, 0, &fsize);
+       sb.st_size = fsize;
        if (rc)
            *result |= (RPMVERIFY_READFAIL|RPMVERIFY_MD5);
        else {
diff --git a/libelf/.cvsignore b/libelf/.cvsignore
new file mode 100755 (executable)
index 0000000..29ea842
--- /dev/null
@@ -0,0 +1,23 @@
+.deps
+.libs
+Makefile
+Makefile.in
+autom4te-*
+config.cache
+config.guess
+config.h
+config.h.in
+config.log
+config.status
+config.sub
+configure
+depcomp
+libtool
+ltconfig
+ltmain.sh
+missing
+pic
+stamp-h
+stamp-h1
+stamp-h.in
+libelf-*.tar.gz
diff --git a/libelf/Makefile.am b/libelf/Makefile.am
new file mode 100755 (executable)
index 0000000..7fb725c
--- /dev/null
@@ -0,0 +1,11 @@
+# Top level Makefile for rpm
+
+AUTOMAKE_OPTIONS = 1.4 foreign
+
+SUBDIRS = lib @POSUB@
+
+EXTRA_DIST = \
+       aclocal.m4 ChangeLog config.guess config.h.in \
+       config.sub configure configure.in COPYING.LIB INSTALL install-sh \
+       Makefile.in mkinstalldirs README stamp-h.in VERSION \
+       po/*.in po/*.po po/@PACKAGE@.pot
diff --git a/libelf/autogen.sh b/libelf/autogen.sh
new file mode 100755 (executable)
index 0000000..60700bf
--- /dev/null
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+libtoolize --copy --force
+aclocal
+autoheader
+automake -a -c
+autoconf
+
+if [ "$1" = "--noconfigure" ]; then 
+    exit 0;
+fi
+
+if [ X"$@" = X  -a "X`uname -s`" = "XLinux" ]; then
+    ./configure --prefix=/usr "$@"
+else
+    ./configure "$@"
+fi
diff --git a/libelf/lib/.cvsignore b/libelf/lib/.cvsignore
new file mode 100755 (executable)
index 0000000..e74f671
--- /dev/null
@@ -0,0 +1,7 @@
+.deps
+.depend
+Makefile
+.libs
+*.la
+*.lo
+sys_elf.h
diff --git a/libelf/lib/Makefile.am b/libelf/lib/Makefile.am
new file mode 100755 (executable)
index 0000000..f23489c
--- /dev/null
@@ -0,0 +1,62 @@
+AUTOMAKE_OPTIONS = 1.4 foreign
+
+EXTRA_DIST = sys_elf.h.in
+
+INCLUDES = -I$(topdir) -I. -I$(srcdir)
+
+# generic sources
+SRCS1 = begin.c cntl.c end.c errmsg.c errno.c fill.c flag.c getarhdr.c \
+       getarsym.c getbase.c getdata.c getident.c getscn.c hash.c kind.c \
+       ndxscn.c newdata.c newscn.c next.c nextscn.c rand.c rawdata.c \
+       rawfile.c strptr.c update.c version.c checksum.c
+
+# 32-bit sources
+SRCS2 = 32.fsize.c 32.getehdr.c 32.getphdr.c 32.getshdr.c 32.newehdr.c \
+       32.newphdr.c 32.xlatetof.c
+
+# support
+SRCS3 = cook.c data.c input.c assert.c
+
+# nlist
+SRCS4 = nlist.c
+
+# opt
+SRCS5 = opt.delscn.c
+
+# 64-bit sources
+SRCS64 = 64.xlatetof.c gelfehdr.c gelfphdr.c gelfshdr.c gelftrans.c swap64.c
+
+# Versioning sources
+SRCS_V = verdef_32_tof.c verdef_32_tom.c verdef_64_tof.c verdef_64_tom.c
+HDRS_V = verdef.h verneed.h
+
+CFLAGS = @CFLAGS@ @PICFLAGS@
+
+#lib_LTLIBRARIES = libelf.la
+noinst_LTLIBRARIES = libelf.la
+
+libelf_la_SOURCES = \
+       $(SRCS1) $(SRCS2) $(SRCS3) $(SRCS4) $(SRCS5) $(SRCS64) $(SRCS_V)
+libelf_la_LIBADD = @LIBOBJS@
+
+#pkgincdir = $(includedir)/@PACKAGE@
+#pkginc_HEADERS = libelf.h nlist.h gelf.h sys_elf.h
+
+# private header files
+noinst_HEADERS = \
+       libelf.h nlist.h gelf.h sys_elf.h \
+       byteswap.h errors.h ext_types.h private.h elf_repl.h $(HDRS_V)
+
+.PHONY: sources
+sources:
+       @echo $(libelf_la_SOURCES:%=libelf/%)
+
+.PHONY: lclint
+lclint:
+       lclint -Dlint $(DEFS) $(INCLUDES) $(SRCS)
+
+t1:    libelf.a t1.o
+       $(CC) -o $@ $@.o libelf.a
+
+t2:    libelf.a t2.o
+       $(CC) -o $@ $@.o libelf.a
index 015779086fac15b9d70e4511251d2b301c5eb01a..a3a29a588bbd59dd0f3249621ed7aa6a5e3a47a8 100644 (file)
--- a/macros.in
+++ b/macros.in
@@ -1,7 +1,7 @@
 #/*! \page config_macros Default configuration: /usr/lib/rpm/macros
 # \verbatim
 #
-# $Id: macros.in,v 1.100 2002/05/21 16:33:33 jbj Exp $
+# $Id: macros.in,v 1.101 2002/06/20 02:19:21 jbj Exp $
 #
 # This is a global RPM configuration file. All changes made here will
 # be lost when the rpm package is upgraded. Any per-system configuration
 #      +OutputInformationFD=1 +OutputWarningFD=1 \
 #      -o %{__signature_filename} %{__plaintext_filename}
 
+#
+# XXX rpm-4.1 verifies prelinked libraries using a prelink undo helper.
+#      Note: The 2nd token is used as argv[0] and "library" is a
+#      placeholder that will be deleted and replaced with the appropriate
+#      library file path.
+%__prelink_undo_cmd     /usr/sbin/prelink prelink -y library
+
 #==============================================================================
 # ---- Transaction macros.
 #      Macro(s) used to parameterize transactions.
index c76b7f54b155d3161b7e5b437bf0c9e01a2532db..215e3fb30f15b50b6bf2503708e308293ae5f285 100644 (file)
--- a/po/cs.po
+++ b/po/cs.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2001-07-24 10:02+0100\n"
 "Last-Translator: Milan Kerslager <kerslage@linux.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -114,7 +114,7 @@ msgstr "<p
 msgid "use <dir> as the top level directory"
 msgstr "pou¾ít <adr> jako adresáø nejvy¹¹í úrovnì"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<adresáø>"
 
@@ -833,7 +833,7 @@ msgstr "Nemohu p
 msgid "Could not open %s: %s\n"
 msgstr "Nemohu otevøít %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nemohu zapsat balíèek: %s\n"
@@ -863,7 +863,7 @@ msgstr "Nemohu p
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nemohu zapsat payload do %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapsáno: %s\n"
@@ -1511,7 +1511,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(není èíslo)"
 
@@ -1544,7 +1544,7 @@ msgstr "mntctl() nevr
 msgid "failed to stat %s: %s\n"
 msgstr "nemohu zjistit stav %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
@@ -1599,7 +1599,7 @@ msgstr "%s unlink %s selhal: %s\n"
 msgid "%s created as %s\n"
 msgstr "%s vytvoøen jako %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
@@ -1643,37 +1643,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread selhalo: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musí zaèínat znakem /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "pøemístìní musejí zaèínat znakem /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "pøemístìní musejí obsahovat ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "pøemístìní musejí mít za znakem = znak /"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 #, fuzzy
 msgid "malformed rollback time/date stamp argument"
 msgstr "poru¹ený rollback èas"
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "nainstalovat v¹echny soubory i konfigurace, které by se jinak mohly vynechat"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1681,146 +1681,146 @@ msgstr ""
 "odstranit v¹echny balíèky odpovídající <balíèku> (obvykle se generuje chyba, "
 "specifikuje-li <balíèek> více balíèkù)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "pøemístìní souborù v nepøemístitelném balíèku"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr "uchovat smazané soubory pøesunem do podadresáøe"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "smazat (deinstalovat) balíèek"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<balíèek>"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "neinstalovat dokumentaci"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "pøeskoèit soubory s úvodní cestou <cesta> "
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<cesta>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "zkratka pro --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "aktualizace balíèku jestli¾e je ji¾ nainstalován"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<soubor_balíèku>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "bìhem instalace balíèku zobrazit dvojité køí¾ky (dobré s -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "nekontrolovat architekturu balíèku"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "nekontrolovat operaèní systém balíèku"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "nekontrolovat volné místo na disku pøed instalací"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "nainstalovat dokumentaci"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "nainstalovat balíèek"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "upravit databázi, ale neupravovat systém souborovù"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "pro vyøe¹ení závislostí nemìnit poøadí instalace balíèkù"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nespou¹tìt ¾ádné skripty (jsou-li nìjaké)"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "nekontrolovat závislosti balíèkù"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ovìøit podpis v balíèku"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nespou¹tìt ¾ádné skripty aktivované tímto balíèkem"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné skripty urèené pro balíèky"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nespou¹tìt ¾ádné instalaèní skripty"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1828,48 +1828,48 @@ msgstr ""
 "aktualizovat na starou verzi balíèku (--force to dìlá pøi aktualizacích "
 "automaticky)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "bìhem instalace balíèku zobrazit procenta"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "pøemístit soubory do <adr>, jsou-li pøemístitelné"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "pøemístit soubory ze <staré_cesty> do <nové_cesty>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<stará_cesta>=<nová_cesta>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "uchovat smazané soubory pomocí pøebalení"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "instalovat, i kdy¾ balíèek pøepí¹e existující soubory"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "pøeinstalovat, i kdy¾ je ji¾ balíèek pøítomen"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 #, fuzzy
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "odinstalovat nové balíèky, reinstalovat staré balíèky zpìt do data"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr "<datum>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "neinstalovat ale sdìlit, zda-li by to fungovalo èi nikoli"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "aktualizace balíèku"
 
@@ -2078,79 +2078,79 @@ msgstr "generovat PGP/GPG podpis"
 msgid "Data type %d not supported\n"
 msgstr "Datový typ %d není podporován\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nemohu zapsat do %%%s %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "oèekávám balíèek se zdrojovými kódy, nalezen v¹ak binární\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balíèek neobsahuje .spec soubor\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: spou¹tím %s skript(y) (pokud existují)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "provedení skripletu %s z %s-%s-%s selhalo, návratový kód byl: %s\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "provedení %s skripletu z %s-%s-%s selhalo, návratový kód: %d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s obsahuje %d souborù, test = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: scriptlet %s selhal (%d), pøeskakuji %s-%s-%s\n"
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "u¾ivatel %s neexistuje - pou¾it u¾ivatel root\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ita skupina root\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalování archívu selhalo %s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " na souboru "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nemohu otevøít %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s selhalo\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "nesprávný formát: %s\n"
@@ -2193,8 +2193,8 @@ msgstr "bal
 msgid "can't query %s: %s\n"
 msgstr "nemohu provést dotaz %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otevøení %s selhalo: %s\n"
@@ -2208,7 +2208,7 @@ msgstr "dotaz na %s se nezda
 msgid "old format source packages cannot be queried\n"
 msgstr "nelze provést dotaz na zdrojové balíèky starého formátu\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾ádný balíèek neaktivuje %s\n"
@@ -2277,17 +2277,17 @@ msgstr "z
 msgid "record %u could not be read\n"
 msgstr "záznam %d nelze pøeèíst\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balíèek %s není nainstalován\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "©patný soubor: %s: %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ANO (pøidáno poskytuje)\n"
@@ -2399,88 +2399,88 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "nezadány ¾ádné balíèky pro instalaci"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM verze %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, fuzzy, c-format
 msgid " ... as %s\n"
 msgstr "%s ulo¾eno jako %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "cesta %s v balíèku %s není pøemístitelná"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pøi vytváøení doèasného souboru %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "neinstalován  "
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "vytvoøení zdrojového a binárního balíèku z <tar_soubor>"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "chybné závislosti pøi sestavování:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "nainstalovat balíèek"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, fuzzy, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "Polo¾ka %s musí být v balíèku pøítomna: %s\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 #, fuzzy
 msgid "removing these packages would break dependencies:\n"
 msgstr "dotaz/ovìøení balíèkù vy¾adujících závislost"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nemohu vytvoøit %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, fuzzy, c-format
 msgid "Installing %s\n"
 msgstr "øádek: %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2641,26 +2641,26 @@ msgstr "
 msgid "bad option '%s' at %s:%d\n"
 msgstr "nemohu zjistit stav %s: %m\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, fuzzy, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznámý typ ikony: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "nemohu znovu otevøít payload: %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nemohu otevøít %s: %s\n"
@@ -2671,7 +2671,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "nemohu otevøít RPM databázi v %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr "získávám seznam pøipojených systémù souborù\n"
 
@@ -2827,17 +2827,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "chybí { po %"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "chybné závislosti pøi sestavování:\n"
@@ -3355,38 +3355,38 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "øádek %d: Polo¾ka Epoch/Serial musí být èíslo: %s\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "nemohu zjistit stav %s: %s\n"
index 91f4beed08f21c1825e269b18668c8b2de0ffb91..85c82df62e527607255ed81daa16b245522e75ac 100644 (file)
--- a/po/da.po
+++ b/po/da.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2001-04-05 23:03GMT\n"
 "Last-Translator: Claus Hindsgaul <claus_h@image.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -115,7 +115,7 @@ msgstr "<kmd>"
 msgid "use <dir> as the top level directory"
 msgstr "brug <katalog> som topniveau-katalog"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<katalog>"
 
@@ -830,7 +830,7 @@ msgstr "Kunne ikke l
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åbne %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -860,7 +860,7 @@ msgstr "Kunne ikke l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive pakkeindhold til %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1510,7 +1510,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(ikke et tal)"
 
@@ -1543,7 +1543,7 @@ msgstr "mntctl() returnerede ingen monteringspunkter: %s\n"
 msgid "failed to stat %s: %s\n"
 msgstr "kunne ikke finde %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
@@ -1597,7 +1597,7 @@ msgstr "
 msgid "%s created as %s\n"
 msgstr "%s oprettet som %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "fejl ved oprettelse af midlertidig fil %s\n"
@@ -1642,37 +1642,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread mislykkedes: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "udeladte stier skal begynde med et /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "omrokeringer skal starte med et /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "omrokeringer skal indeholde et ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "i omrokeringer skal = efterfølges af /"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installér alle filer -- også konfigurationsfiler, der ellers skulle "
 "overspringes"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1680,151 +1680,151 @@ msgstr ""
 "fjern alle pakker, som passer med <pakke> (normalt ville det medføre en "
 "fejl, hvis <pakke> angav flere pakker)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "udfør ingen pakkespecifikke skripter"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "omdirigér filer i ikke-omdirigérbar pakke"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "slet (afinstallér) pakke"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "<pakke>"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "installér ikke dokumentation"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "overspring filer med foranstillet komponent <sti> "
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "forkortelse for --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "opgradér pakke, hvis den allerede er installeret"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<pakkefil>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "udlæs #'er efterhånden som pakken installeres (virker sammen med -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "tjek ikke pakkens arkitektur"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "tjek ikke pakkens operativsystem"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "tjek ikke om der er diskplads, før der installeres"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "installér dokumentation"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "installér pakke"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "opdatér databasen, men rør ikke filsystemet"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "ændr ikke pakkernes installationsrækkefølge for at opfylde afhængigheder"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "udfør ikke eventuelle skripter"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "undlad at tjekke pakkers afhængighedskrav"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verificér pakkesignatur"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "udfør ikke småskripter, der måtte udløses af denne pakke"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "udfør ingen pakkespecifikke skripter"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "udfør ingen installations-småskripter"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1832,49 +1832,49 @@ msgstr ""
 "opgradér til en ældre version af pakken (--force gør ikke dette automatisk "
 "ved opgraderinger)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "vis procenter efterhånden som pakken installeres"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "omdirigér pakken til <katalog>, hvis omdirigérbar"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "omdirigér filer fra <gammelsti> til <nysti>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "<gammelsti>=<nysti>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "intallér selvom pakken erstatter installerede filer"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "geninstallér hvis pakken allerede er installeret"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "installér ikke, men fortæl om det ville lykkes eller ej"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "opgradér pakke"
@@ -2092,81 +2092,81 @@ msgstr "gener
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d understøttes ikke\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke oprette %s: %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kunne ikke skrive til %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær fundet\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke indeholder ingen .spec-fil\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "kører postinstallations-skript (hvis det findes)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "kørsel af småskriptet %s fra %s-%s-%s mislykkedes, afslutningsstatus %d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakke: %s-%s-%s filer test = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "bruger %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "gruppe %s eksisterer ikke - bruger root\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "udpakning af arkiv mislykkedes%s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " for fil "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s mislykkedes\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ugyldigt format: %s\n"
@@ -2209,8 +2209,8 @@ msgstr "pakke har hverken filejerskabs- eller id-lister\n"
 msgid "can't query %s: %s\n"
 msgstr "kunne ikke forespørge %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "åbning af %s mislykkedes %s\n"
@@ -2224,7 +2224,7 @@ msgstr "foresp
 msgid "old format source packages cannot be queried\n"
 msgstr "pakke med gammelt kildeformat kan ikke forespørges\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakker udløser %s\n"
@@ -2293,17 +2293,17 @@ msgstr "pakkens post-nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %d kunne ikke læses\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakken %s er ikke installeret\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "ugyldig db-fil %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (tilføjede 'provide')\n"
@@ -2414,86 +2414,86 @@ msgstr "Forbereder..."
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker til installation..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Modtager %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "overspringer %s - overførsel mislykkedes - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke omrokeres\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fejl ved læsning fra filen %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "filen %s kræver en nyere version af RPM\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kunne ikke installeres\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fandt %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "afhængighedskrav, der ikke kunne imødekommes:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kunne ikke åbne fil %s: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" angiver flere pakker\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjernelse af disse pakker ville bryde afhængighederne:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kunne ikke åbne %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2655,28 +2655,28 @@ msgstr "manglende arkitektur for %s ved %s:%d\n"
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ugyldig tilvalg '%s' ved %s:%d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 "Ukendt system: %s\n"
 "\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontakt venligst rpm-list@redhat.com (på engelsk)\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Kan ikke udfolde %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Kunne ikke læse %s, HOME er for stor.\n"
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åbne %s for læsning: %s.\n"
@@ -2687,7 +2687,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "kunne ikke åbne Packages-database i %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterede filsystemer\n"
 
@@ -2836,17 +2836,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s oversprunget grundet manglende ok-flag\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer kataloget %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "manglende  %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Ikke-tilfredsstillede afhængighedskrav for %s-%s-%s: "
@@ -3362,37 +3362,37 @@ msgstr "advarsel: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "hukommelsesallokering (%u byte) returnerede NULL.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "advarsel: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "advarsel: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, fuzzy, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "advarsel: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Adgangskode for %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "Fejl: %sport skal være et tal\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "url-port skal være et tal\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "kunne ikke oprette %s: %s\n"
index 51395a9dfbd1b0cc1853aa88fb2fea93bdbae101..6ff58d5300547c53c40f798ca1f2158bc17406ef 100644 (file)
--- a/po/de.po
+++ b/po/de.po
@@ -37,7 +37,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -157,7 +157,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "<VERZ> als Stammverzeichnis benutzen"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -921,7 +921,7 @@ msgid "Could not open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen\n"
 
 # , c-format
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
@@ -956,7 +956,7 @@ msgstr "Nicht m
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nicht möglich %s zu schreiben"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1643,7 +1643,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(keine Zahl)"
 
@@ -1679,7 +1679,7 @@ msgid "failed to stat %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
 # , c-format
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
@@ -1734,7 +1734,7 @@ msgstr "
 msgid "%s created as %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
@@ -1782,38 +1782,38 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: »readLead« fehlgeschlagen\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "Verschiebungen müssen mit einem »/« beginnen"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "Verschiebungen müssen ein »=« beinhalten"
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "bei Verschiebungen muss ein »/« dem »=« folgen"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "alle Dateien installieren, auch die config-Dateien, die sonst übergangen "
 "würden"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1821,153 +1821,153 @@ msgstr ""
 "Alle Pakete entfernen, die mit <PAKET> übereinstimmen (normalerweise wird "
 "ein Fehler angezeigt, wenn <PAKET> mehrere Pakete bezeichnet)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "Paket löschen (deinstallieren)"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "Anfrage an alle Pakete"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "Dokumentation nicht installieren"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "Abkürzung für --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<STUFE> <SPEC>      "
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "Fortschrittsanzeige bei der Paketinstallation (gut zusammen mit -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "Paket-Architektur nicht überprüfen"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "Paket-Betriebssystem nicht überprüfen"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "Dokumentation installieren"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "Paket installieren"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "Datenbank erneuern, aber das Dateisystem nicht verändern"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "Paket-Installation nicht neu sortieren, um den Abhängigkeiten zu genügen"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "Keine Stufen ausführen"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "Dateiabhängigkeiten nicht überprüfen"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "Paketsignatur überprüfen"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kein Skript ausführen, das durch dieses Paket veranlasst wurde"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "Keine paketspezifischen Skripte ausführen"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "Keine Installations-Skripte ausführen"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1975,50 +1975,50 @@ msgstr ""
 "Aktualisierung auf eine alte Version des Pakets (--force macht das bei "
 "Aktualisierungen automatisch)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "Prozentangabe bei der Paketinstallation ausgeben"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Verschiebe das Paket, wenn es verschiebbar ist, in das Verzeichnis <VERZ>"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "verschiebe Dateien von <alter_Pfad> nach <neuer_Pfad>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "Auch dann installieren, wenn das Paket installierte Dateien ersetzt"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "Neuinstallation, wenn das Paket schon vorhanden ist"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "Nicht installieren - nur anzeigen, ob es funktionieren würde"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "Paket installieren"
@@ -2254,82 +2254,82 @@ msgstr "PGP-Signatur generieren"
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "Anfrage nach Paket, das die Datei <DATEI> besitzt"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "Keine Stufen ausführen"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "Ausführung des Skripts fehlgeschlagen"
 
 # FIXME shared, besser: "mit anderen geteilte ..."
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "Paket %s-%s-%s beinhaltet geteilte Dateien\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp fehlgeschlagen"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "Fehler beim Format %s\n"
@@ -2374,8 +2374,8 @@ msgstr "Paket hat keinen Namen"
 msgid "can't query %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "öffnen von %s fehlgeschlagen: %s\n"
@@ -2389,7 +2389,7 @@ msgstr "Anfrage von %s fehlgeschlagen\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "altes Sourceformat-Paket kann nicht angefragt werden\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "kein Paket triggert %s\n"
@@ -2462,18 +2462,18 @@ msgstr "ung
 msgid "record %u could not be read\n"
 msgstr "Eintrag %d konnte nicht gelesen werden\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "Paket %s ist nicht installiert\n"
 
 # , c-format
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "Öffnen von %s fehlgeschlagen: %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2584,88 +2584,88 @@ msgid "Preparing packages for installation..."
 msgstr "Es wurden keine Pakete für die Installation angegeben"
 
 # , c-format
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, 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:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "Fehler: überspringe %s - Übertragung fehlgeschlagen - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "Paket %s ist nicht installiert\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "Fehler: %s kann nicht installiert werden\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "Gruppe %s beinhaltet kein einziges Paket\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "fehlgeschlagene Paket-Abhängigkeiten:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "Paket installieren"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kann Datei %s nicht öffnen: "
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" bezeichnet mehrere Pakete\n"
 
 # oder besser: "... verletzen" ?
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "Das Enfernen dieser Pakete würde Paket-Abhängigkeiten missachten:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installiere %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "Es wurden keine Pakete für die Deinstallation angegeben"
@@ -2832,27 +2832,27 @@ msgstr "fehlende Architektur f
 msgid "bad option '%s' at %s:%d\n"
 msgstr "unzureichende Option '%s' bei %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Fehler: kann %s nicht öffnen\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Datei %s kann nicht zum Lesen geöffnet werden: %s."
@@ -2863,7 +2863,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "Fehler: kann nicht öffnen %s%s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -3019,17 +3019,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "Fehler beim Anlegen des Verzeichnisses %s: %s"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "fehlende { nach %{"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nicht erfüllte Abhängigkeiten von %s-%s-%s: "
@@ -3562,39 +3562,39 @@ msgstr "Warnung: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Passworf für %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "Fehler: der FTP-Port muss eine Zahl sein\n"
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "anlegen von %s fehlgeschlagen\n"
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/es.po
+++ b/po/es.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 2c2992da76dc1bdadb1af4434bc840603263ec35..b5559b22d3fe553f597dbe9b72b8eadea66f8602 100644 (file)
--- a/po/fi.po
+++ b/po/fi.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "Last-Translator: Raimo Koski <rkoski@pp.weppi.fi>\n"
 "Language-Team: Finnish <linux@sot.com>\n"
 "Content-Type: text/plain; charset=\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "käytä <hakem> ylimpänä hakemistona"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -844,7 +844,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Could not open %s: %s\n"
 msgstr "%s:n avaus epäonnistui\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
@@ -874,7 +874,7 @@ msgstr "%s:n kirjoitus ei onnistu"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s:n kirjoitus ei onnistu"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1533,7 +1533,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(ei ole luku)"
 
@@ -1566,7 +1566,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "en voinut avata %s: %s"
@@ -1620,7 +1620,7 @@ msgstr "%s:n avaus ei onnistunut: %s\n"
 msgid "%s created as %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
@@ -1668,37 +1668,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead  epäonnistui\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "siirtojen pitää alkaa /-merkillä"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "siirroissa pitää olla =-merkki"
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "siirroissa pitää olla / =-merkin jälkeen"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "asenna kaikki tiedostot, myös konfiguraatiot, jotka muuten ehkä ohitettaisiin"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1706,152 +1706,152 @@ msgstr ""
 "poista kaikki paketit, joiden nimeä vastaa  <paketti> (tavallisesti, jos  "
 "<paketti> määrittää useita paketteja, tulee virhe)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "poista paketti"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "kysele kaikki paketit"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "älä asenna dokumentointia"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "lyhenne parametreille --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<vaihe> <määrittely> "
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "tulosta risuaitaa paketin asentuessa (-v:n kanssa hyvä)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "älä tarkista paketin arkkitehtuuria"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "älä tarkista paketin käyttöjärjestelmää"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "asenna dokumentaatio"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "asenna paketti"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "päivitä tietokanta, mutta älä muuta tiedostojärjestelmää"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "älä muuta asennusjärjestystä riippuvuuksien tyydyttämiseksi"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "älä tarkista paketin riippuvuuksia"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "tarkista paketin allekirjoitus"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "älä aja mitään pakettikohtaisia skriptejä"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "älä suorita asennusskriptejä"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1859,49 +1859,49 @@ msgstr ""
 "päivitä vanhempaan versioon (--force päivitettäessä tekee tämän "
 "automaattisesti)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "tulosta asennuksen eteneminen prosentteina"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "siirrä paketti hakemistoon <hakem>, jos siirrettävissä"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "siirrä tiedostot hakemistosta <vanhapolku> hakemistoon <uusipolku>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "asenna vaikka paketti korvaisi asennettuja tiedostoja"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "asenna uudelleen, jos paketti on jo asennettu"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "älä asenna, mutta kerro onnistuisiko se"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "asenna paketti"
@@ -2137,80 +2137,80 @@ msgstr "generoi PGP-allekirjoitus"
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "kysy pakettia, jonka omistuksessa <tiedosto> on"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "älä suorita mitään vaiheita"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skriptin ajo epäonnistui"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paketti %s-%s-%s  sisältää jaettuja tiedostoja\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "en voinut avata %s: %s"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "pgp epäonnistui"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "virhe formaatissa: %s\n"
@@ -2255,8 +2255,8 @@ msgstr "paketilla ei ole nime
 msgid "can't query %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s:n avaus ei onnistunut: %s\n"
@@ -2270,7 +2270,7 @@ msgstr "%s:n kysely ei onnistunut\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "vanhan formaatin lähdekoodipaketteja ei voi kysellä\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "mikään paketti ei laukaise %s:a\n"
@@ -2340,17 +2340,17 @@ msgstr "virheellinen paketin numero: %s\n"
 msgid "record %u could not be read\n"
 msgstr "tietuetta %d ei voitu lukea\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "en voinut avata %s: %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2460,87 +2460,87 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "asennukselle ei määritelty paketteja"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Haen: %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "virhe: ohitan %s:n, siirto epäonnistui - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketti %s ei ole asennettu\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "virhe: %s ei voida asentaa\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ryhmässä %s ei ole paketteja\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "puuttuvat riippuvuudet:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "asenna paketti"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "en voinut avata tiedostoa %s: "
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" määrittää useita paketteja\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "näiden pakettien poisto rikkoisi riippuvuuksia:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Asennan: %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "poistolle ei määritelty paketteja"
@@ -2701,26 +2701,26 @@ msgstr "%s:n puuttuva arkkitehtuuri %s:%d"
 msgid "bad option '%s' at %s:%d\n"
 msgstr "huono parametri '%s', %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "virhe: en voi avata %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "En voi avata %s luettavaksi: %s."
@@ -2731,7 +2731,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "virhe: en voi avata %s%s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2887,17 +2887,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "virhe luotaessa hakemistoa %s: %s"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "puuttuva '{' '%':n jälkeen"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s:n tyydyttämättömät riippuvuudet:"
@@ -3422,38 +3422,38 @@ msgstr "varoitus: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "%s@%s:n salasana: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "virhe: ftpport pitää olla luku\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s:n luonti epäonnistui\n"
index c582e93c8f761a223c4c719ea4c61f3ecffbb8e6..457767c7250b2e780f4e8682cabbc69b3e1e45fa 100644 (file)
--- a/po/fr.po
+++ b/po/fr.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -122,7 +122,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "      --root <dir>\t- utilise <dir> comme rpertoire racine"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -870,7 +870,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Could not open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -900,7 +900,7 @@ msgstr "impossible d'ouvrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1563,7 +1563,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1594,7 +1594,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1648,7 +1648,7 @@ msgstr "La construction a chou.\n"
 msgid "%s created as %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -1692,195 +1692,195 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "les arguments de --root (-r) doivent commencer par un /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 #, fuzzy
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "      --force           - raccourci pour --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -i <packagefile>\t- installe le package"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 #, fuzzy
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "      --hash            - affiche des '#' pendant l'installation du package "
 "(utile avec -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr ""
 "        -p <packagefile>+ - interroge le package (non install) <packagefile>"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 #, fuzzy
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
@@ -1889,56 +1889,56 @@ msgstr ""
 "      --oldpackage      - mise  jour par une ancienne version du package (--"
 "force"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 #, fuzzy
 msgid "print percentages as package installs"
 msgstr ""
 "      --percent         - affiche des '%' pendant l'installation du package"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 #, fuzzy
 msgid "install even if the package replaces installed files"
 msgstr ""
 "      --replacefiles    - installe mme si le package remplace des fichiers "
 "dj prsents"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 #, fuzzy
 msgid "reinstall if the package is already present"
 msgstr "      --replacepkgs      - rinstalle si le package est dj prsent"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 #, fuzzy
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 "      --test            - n'installe pas, mais indique si ca fonctionnerait "
 "ou pas"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr ""
@@ -2181,81 +2181,81 @@ msgstr "      --sign            - genre une signature PGP"
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr ""
 "        -f <file>+        - interroge le package  qui appartient <file>"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "La construction a chou.\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2300,8 +2300,8 @@ msgstr "aucun package n'a t spcifi pour l'installation"
 msgid "can't query %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "La construction a chou.\n"
@@ -2315,7 +2315,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
@@ -2385,17 +2385,17 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2504,86 +2504,86 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "aucun package n'a t spcifi pour l'installation"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "aucun package n'a t spcifi pour la dsinstallation"
@@ -2742,26 +2742,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "impossible d'ouvrir: %s\n"
@@ -2772,7 +2772,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "impossible d'ouvrir: %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2924,17 +2924,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "impossible d'ouvrir: %s\n"
@@ -3448,37 +3448,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "impossible d'ouvrir: %s\n"
index f3ac50ac79f2bd1a39f70cc87a644b69de2fa750..2eab4439952250da782cb5f6ea8a2c93ad61802b 100644 (file)
--- a/po/gl.po
+++ b/po/gl.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.1\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2001-01-13 22:31+0100\n"
 "Last-Translator: Jesús Bravo Álvarez <jba@pobox.com>\n"
 "Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -113,7 +113,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -810,7 +810,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -840,7 +840,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1474,7 +1474,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1505,7 +1505,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1559,7 +1559,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1603,223 +1603,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2016,79 +2016,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2131,8 +2131,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2146,7 +2146,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2215,16 +2215,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2331,85 +2331,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2568,26 +2568,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2598,7 +2598,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2743,17 +2743,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3263,37 +3263,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/hu.po
+++ b/po/hu.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/id.po
+++ b/po/id.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 636d9b4eac69824fc4c96e2c2c5a79e503b8bd6f..7213b7b704c34d6df313bce5b36ef24a33a04e69 100644 (file)
--- a/po/is.po
+++ b/po/is.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2001-07-12 13:25+0000\n"
 "Last-Translator: Richard Allen <ra@hp.is>\n"
 "Language-Team: is <kde-isl@mmedia.is>\n"
@@ -114,7 +114,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -816,7 +816,7 @@ msgstr "Get ekki lesi
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Get ekki ritað í pakka: %s\n"
@@ -846,7 +846,7 @@ msgstr "Get ekki lesi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Get ekki ritað innihald í %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrifaði: %s\n"
@@ -1482,7 +1482,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1513,7 +1513,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr "gat ekki skoðað %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
@@ -1567,7 +1567,7 @@ msgstr "%s gat ekki eytt %s: %s\n"
 msgid "%s created as %s\n"
 msgstr "%s búið til sem %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1611,226 +1611,226 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<pakkaskrá>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<pakkaskrá>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "setja inn pakka"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ekki skoða pakkaskilyrðin"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<gömul>=<ný>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "uppfæra pakka"
 
@@ -2035,79 +2035,79 @@ msgstr "b
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "gat ekki búið til %%%s %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "get ekki ritað í %%%s %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "pakkinn inniheldur enga .spec skrá\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "gat ekki opnað %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s brást\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2150,8 +2150,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2165,7 +2165,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
@@ -2234,16 +2234,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2350,86 +2350,86 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "gat ekki útbúið pakkaskilyrði:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2588,26 +2588,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ólöglegur rofi '%s' á %s:%d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Get ekki opnað %s til lesturs: %s.\n"
@@ -2618,7 +2618,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "get ekki opnað pakka gagnagrunn í\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2764,17 +2764,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "vantar     %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Óuppfyllt pakkaskilyrði fyrir %s-%s-%s: "
@@ -3284,37 +3284,37 @@ msgstr "a
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "minnisfrátekt (%u bæta) skilaði NULL.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "aðvörun: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "aðvörun: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, fuzzy, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "aðvörun: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Lykilorð fyrir %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "villa: %sport verður að vera tala\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "gátt slóðar verður að vera tala\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "gat ekki búið til %s: %s\n"
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/it.po
+++ b/po/it.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index f6d526955f8c971679a408b439f2a5a3307a378e..c78b152797828077728216397d1a2785758801c8 100644 (file)
--- a/po/ja.po
+++ b/po/ja.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -122,7 +122,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "¥È¥Ã¥×¥Ç¥£¥ì¥¯¥È¥ê¤È¤·¤Æ <dir> ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -862,7 +862,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
@@ -892,7 +892,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î½ñ¤­¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "½ñ¤­¹þ¤ßÃæ: %s\n"
@@ -1558,7 +1558,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(¿ô»ú¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó)"
 
@@ -1591,7 +1591,7 @@ msgstr "mntctl() fugger 
 msgid "failed to stat %s: %s\n"
 msgstr "stat %s ¤Ë¼ºÇÔ: %s"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
@@ -1645,7 +1645,7 @@ msgstr "%s 
 msgid "%s created as %s\n"
 msgstr "·Ù¹ð: %s ¤Ï %s ¤È¤·¤ÆºîÀ®¤µ¤ì¤Þ¤¹"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "°ì»þ¥Õ¥¡¥¤¥ë %s ¤ÎºîÀ®¥¨¥é¡¼"
@@ -1693,36 +1693,36 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "½ü³°¤¹¤ë¥Ñ¥¹¤Ï / ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "ºÆÇÛÃ֤Ϡ/ ¤«¤é»Ï¤Þ¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "ºÆÇÛÃ֤Ϡ= ¤ò´Þ¤ó¤Ç¤¤¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "ºÆÇÛÃ֤Ϡ= ¤Î¼¡¤Ë / ¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "ÀßÄê¤ò¥¹¥­¥Ã¥×¤·¡¢Á´¥Õ¥¡¥¤¥ë¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1730,159 +1730,159 @@ msgstr ""
 "<package> ¤È°ìÃפ¹¤ë¥Ñ¥Ã¥±¡¼¥¸Á´¤Æ¤òºï½ü¤·¤Þ¤¹(°ìÈÌ\n"
 "\t\t\t      Åª¤ËÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤹ¤ë¤È¥¨¥é¡¼¤Ë¤Ê¤ê¤Þ¤¹)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "¥Ñ¥¹ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó(¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤ËÂФ·¤Æ)"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü(¥¢¥ó¥¤¥ó¥¹¥È¡¼¥ë)¤·¤Þ¤¹"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "%d ¸Ä¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò¸«¤Ä¤±¤Þ¤·¤¿\n"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "¥Ñ¥¹ <path> Ãæ¤Î¥Õ¥¡¥¤¥ë¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹"
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¤È --replacefiles ¤òû½Ì¤·¤¿¤â¤Î"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s-%s-%s ¤Ï¤¹¤Ç¤Ë¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤¹"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '#' ¤Çɽ¼¨¤·¤Þ¤¹(-v ¤ò»ÈÍѤ¹¤ë¤ÈÎɤ¤)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ÎÂоݥ¢¡¼¥­¥Æ¥¯¥Á¥ã¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ÂоÝOS¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ëÁ°¤Ë¥Ç¥£¥¹¥¯¤ÎÍÆÎÌ¥Á¥§¥Ã¥¯¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "¥É¥­¥å¥á¥ó¥È¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 "¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¹¹¿·¤·¤Þ¤¹¤¬¡¢\n"
 "¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤ÎÊѹ¹¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "°Í¸À­¤òËþ¤¿¤¹¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤Î\n"
 "¥¤¥ó¥¹¥È¡¼¥ë¤òÍ׵ᤷ¤Þ¤»¤ó"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "¤É¤ÎÃʳ¬¤â¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Î°Í¸´Ø·¸¤Î¸¡¾Ú¤ò¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "½ð̾¤Î¸¡¾Ú¤ò¤·¤Þ¤¹"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "¤³¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¤è¤Ã¤Æ¥È¥ê¥¬¡¼¤µ¤ì¤ë¥¹¥¯¥ê¥×¥È¤ò\n"
 "¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸»ØÄê¤Î¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È¤ò¼Â¹Ô¤·¤Þ¤»¤ó"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1890,53 +1890,53 @@ msgstr ""
 "¸Å¤¤¥Ð¡¼¥¸¥ç¥ó¤Î¥Ñ¥Ã¥±¡¼¥¸¤Ë¥¢¥Ã¥×¥°¥ì¡¼¥É¤·¤Þ¤¹\n"
 "(¥¢¥Ã¥×¥°¥ì¡¼¥É»þ¤Î --force ¤Ï¤³¤ì¤ò¼«Æ°Åª¤Ë¹Ô¤¤¤Þ¤¹)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤¹¤ëºÝ¤Ë '%' ¤Çɽ¼¨¤·¤Þ¤¹"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "ºÆÇÛÃÖ²Äǽ¤Ê¥Ñ¥Ã¥±¡¼¥¸¤ËÂФ·¡¢¥¤¥ó¥¹¥È¡¼¥ë¥Ñ¥¹\n"
 "ÀÜƬ¼­¤ò <dir> ¤ËÀßÄꤷ¤Þ¤¹"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "<oldpath> ¤«¤é <newpath> ¤Ë¥Õ¥¡¥¤¥ë¤òºÆÇÛÃÖ¤µ¤»¤Þ¤¹"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 "¥¤¥ó¥¹¥È¡¼¥ë»þ¤ËÃÖ¤­´¹¤¨¤é¤ì¤ë¥Õ¥¡¥¤¥ë¤¬\n"
 "¤¢¤Ã¤Æ¤â¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "´û¤Ë¸ºß¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ç¤âºÆ¥¤¥ó¥¹¥È¡¼¥ë¤·¤Þ¤¹"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤»¤º¤Ë¡¢¥Æ¥¹¥È¤Î¤ß¹Ô¤¤¤Þ¤¹"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸¥Õ¥¡¥¤¥ë¤Ë¤Ä¤¤¤ÆÌ䤤¹ç¤ï¤»¤Þ¤¹"
@@ -2173,82 +2173,82 @@ msgstr "PGP/GPG 
 msgid "Data type %d not supported\n"
 msgstr "¥Ç¡¼¥¿¥¿¥¤¥× %d ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%s ¤òºîÀ®¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%s ¤Ø½ñ¤­¹þ¤á¤Þ¤»¤ó"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤¬´üÂÔ¤µ¤ì¤Þ¤¹¡¢¥Ð¥¤¥Ê¥ê¤Ï¸«¤Ä¤«¤ê¤Þ¤·¤¿"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤Ï .spec ¥Õ¥¡¥¤¥ë¤ò´Þ¤ó¤Ç¤¤¤Þ¤»¤ó"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "¥Ý¥¹¥È¥¤¥ó¥¹¥È¡¼¥ë¥¹¥¯¥ê¥×¥È(¤¬Í­¤ì¤Ð)¤ò¼Â¹Ô¤·¤Þ¤¹\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "¥¹¥¯¥ê¥×¥È¤Î¼Â¹Ô¤Ë¼ºÇÔ"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸: %s-%s-%s ¥Õ¥¡¥¤¥ë¥Æ¥¹¥È = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "¥æ¡¼¥¶ %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "¥°¥ë¡¼¥× %s ¤Ï¸ºß¤·¤Þ¤»¤ó - root ¤ò»ÈÍѤ·¤Þ¤¹"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Î¥¢¡¼¥«¥¤¥Ö¤Î¿­Ä¹¤Ë¼ºÇÔ %s%s: %s"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 #, fuzzy
 msgid " on file "
 msgstr "¥Õ¥¡¥¤¥ë¾å"
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ¼ºÇÔ"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "¥Õ¥©¡¼¥Þ¥Ã¥ÈÃæ¤Î¥¨¥é¡¼: %s\n"
@@ -2292,8 +2292,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "%s ¤òºï½ü(unlink)¤Ç¤­¤Þ¤»¤ó: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s ¤Î¥ª¡¼¥×¥ó¤Ë¼ºÇÔ: %s\n"
@@ -2307,7 +2307,7 @@ msgstr "%s 
 msgid "old format source packages cannot be queried\n"
 msgstr "µì·Á¼°¤Î¥½¡¼¥¹¥Ñ¥Ã¥±¡¼¥¸¤òÌ䤤¹ç¤ï¤»¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s ¤ò¥È¥ê¥¬¡¼¤¹¤ë¥Ñ¥Ã¥±¡¼¥¸¤Ï¸ºß¤·¤Þ¤»¤ó\n"
@@ -2377,17 +2377,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "¥ì¥³¡¼¥É %d ¤òÆɤळ¤È¤¬¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤Ï¥¤¥ó¥¹¥È¡¼¥ë¤µ¤ì¤Æ¤¤¤Þ¤»¤ó\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë¤Î¾õÂÖ: %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %s ¤Ï provide ¤Ë²Ã¤¨¤ë¤³¤È¤Ë¤è¤Ã¤ÆËþ¤µ¤ì¤Þ¤¹¡£\n"
@@ -2500,86 +2500,86 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "¥¤¥ó¥¹¥È¡¼¥ë¤Î¤¿¤á¤Î¥Ñ¥Ã¥±¡¼¥¸¤¬¤¢¤ê¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s ¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr "%s ¤È¤·¤Æ...\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ¤ò¥¹¥­¥Ã¥×¤·¤Þ¤¹ - Å¾Á÷¼ºÇÔ - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "¥Ñ¥Ã¥±¡¼¥¸ %s ¤ÏºÆÇÛÃ֤Ǥ­¤Þ¤»¤ó"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤«¤é¤ÎÆɤ߹þ¤ß¥¨¥é¡¼ "
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤Ë¤Ï¤è¤ê¿·¤·¤¤ RPM ¤Î¥Ð¡¼¥¸¥ç¥ó¤¬É¬ÍפǤ¹\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ë¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d ¸Ä¤Î¥½¡¼¥¹¤È %d ¸Ä¤Î¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "°Í¸À­¤Î·çÇ¡:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "¥Ð¥¤¥Ê¥ê¥Ñ¥Ã¥±¡¼¥¸¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "¥Õ¥¡¥¤¥ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¤ÏÊ£¿ô¤Î¥Ñ¥Ã¥±¡¼¥¸¤ò»ØÄꤷ¤Æ¤¤¤Þ¤¹\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "¤³¤ì¤é¤Î¥Ñ¥Ã¥±¡¼¥¸¤òºï½ü¤¹¤ë¤È°Í¸À­¤òÇ˲õ¤·¤Þ¤¹:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s ¤ò¥¤¥ó¥¹¥È¡¼¥ëÃæ\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2749,26 +2749,26 @@ msgstr "%s 
 msgid "bad option '%s' at %s:%d\n"
 msgstr "'%s' ¤ÎÉÔÀµ¤Ê¥ª¡¼¥×¥ó %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "ÉÔÌÀ¤Ê¥·¥¹¥Æ¥à: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "rpm-list@redhat.com ¤ËÏ¢Íí¤ò²¼¤µ¤¤\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "¿­Ä¥¤Ç¤­¤Þ¤»¤ó %s"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Æɤ߹þ¤à¤¿¤á¤Ë %s ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s¡£"
@@ -2779,7 +2779,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "%s/packages.rpm ¤ò¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr "¥Þ¥¦¥ó¥È¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¥·¥¹¥Æ¥à¤Î¥ê¥¹¥È¤ò¼èÆÀ¤·¤Æ¤¤¤Þ¤¹\n"
 
@@ -2935,17 +2935,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s ¤Ï missingok ¥Õ¥é¥°¤Î¤¿¤á¥¹¥­¥Ã¥×¤·¤Þ¤¹\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î½ü³°: %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "%s ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó\n"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s ¤Î¤¿¤á¤Î°Í¸À­¤òËþ¤¿¤·¤Æ¤¤¤Þ¤»¤ó:"
@@ -3472,38 +3472,38 @@ msgstr "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "%s@%s ¤Î¥Ñ¥¹¥ï¡¼¥É:"
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "¥¨¥é¡¼: %s¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "url ¥Ý¡¼¥È¤Ï¿ô»ú¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s ¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n"
index bac87a8674867ff6594fbfbc0a7ee664ca98c7cd..4843f2eb05009ae4d8b9f4b935e8565bd2ebbbf3 100644 (file)
--- a/po/ko.po
+++ b/po/ko.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.4\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2002-03-04 17:17+0900\n"
 "Last-Translator: Jong-Hoon Ryu <redhat4u@netian.com>\n"
 "Language-Team: GNU Translation project <ko@li.org>\n"
@@ -114,7 +114,7 @@ msgstr "<
 msgid "use <dir> as the top level directory"
 msgstr "<µð·ºÅ丮>¸¦ ÃÖ»óÀ§ µð·ºÅ丮·Î »ç¿ëÇÕ´Ï´Ù"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<µð·ºÅ丮>"
 
@@ -823,7 +823,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "ÆÐÅ°Áö¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
@@ -853,7 +853,7 @@ msgstr "%s
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s¿¡ payload¸¦ ÀÛ¼ºÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "ÀÛ¼º: %s\n"
@@ -1497,7 +1497,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(¼ýÀÚ°¡ ¾Æ´Õ´Ï´Ù)"
 
@@ -1528,7 +1528,7 @@ msgstr "mntctl()
 msgid "failed to stat %s: %s\n"
 msgstr "%sÀÇ »óÅÂ(stat)¸¦ Ç¥½ÃÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -1583,7 +1583,7 @@ msgstr "%s %s 
 msgid "%s created as %s\n"
 msgstr "%s(ÀÌ)°¡ %s(À¸)·Î »ý¼ºµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "ÀӽàÆÄÀÏ %s(À»)¸¦ »ý¼ºÇϴ µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
@@ -1627,37 +1627,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: FreadÀÌ ½ÇÆÐÇß½À´Ï´Ù: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "Á¦¿Ü½Ãų °æ·Î´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '/' ·Î ½ÃÀÛÇؾߠÇÕ´Ï´Ù"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '=' À» Æ÷ÇÔÇؾߠÇÕ´Ï´Ù"
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "Àç¹èÄ¡½Ã¿¡´Â ¹Ýµå½Ã '=' µÚ¿¡ '/' °¡ ¿Í¾ß ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr "·Ñ¹é(rollback)ÀÇ Àμö´Â ½Ã°£/³¯Â¥ ½ºÅÆÇÁ ÀÔ´Ï´Ù"
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr "·Ñ¹é(rollback)ÀÇ ÀμöÀΠ½Ã°£/³¯Â¥ ½ºÅÆÇÁ°¡ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ƯÁ¤ ÆÄÀÏÀ» »ý·«Çϱâ À§ÇÑ ¼³Á¤ÀÌ Àû¿ëµÈ °æ¿ì¿¡µµ, ÆÐÅ°Áö ¾ÈÀÇ ¸ðµç ÆÄÀÏÀ» ¼³"
 "Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1665,150 +1665,150 @@ msgstr ""
 "<ÆÐÅ°Áö> À̸§°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö´Â ¸ðµÎ Á¦°ÅÇÕ´Ï´Ù (<ÆÐÅ°Áö>¿¡ ¿©·¯°³ÀÇ ÆÐÅ°Áö"
 "¸¦ µ¿½Ã¿¡ ÁöÁ¤ÇÒ °æ¿ì¿¡´Â ¿À·ù°¡ ¹ß»ýÇÕ´Ï´Ù)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "ÆÐÅ°Áö ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "Àç¹èÄ¡ ±â´ÉÀÌ ¾ø´Â ÆÐÅ°ÁöÀÇ ÆÄÀÏÀ» Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr "ÇϺÎ-µð·ºÅ丮·Î À̸§ º¯°æ½Ã »èÁ¦µÈ ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "ÆÐÅ°Áö¸¦ (Á¦°Å) »èÁ¦ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<ÆÐÅ°Áö>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇԵȠ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "<°æ·Î>·Î ½ÃÀ۵Ǵ ÆÄÀÏÀº ¼³Ä¡ÇÏÁö ¾Ê½À´Ï´Ù "
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<°æ·Î>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs ¿Í --replacefiles ¿É¼ÇÀ» µ¿½Ã¿¡ »ç¿ëÇÕ´Ï´Ù"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "±âÁ¸¿¡ ¼³Ä¡µÈ ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<ÆÐÅ°ÁöÆÄÀÏ>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "ÆÐÅ°Áö ¼³Ä¡¸¦ Çؽø¶Å©(#)·Î Ç¥½ÃÇÕ´Ï´Ù (-v ¿É¼Ç°ú ÇÔ²² »ç¿ëÇϴ °ÍÀÌ ÁÁ½À´Ï"
 "´Ù)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "ÆÐÅ°ÁöÀÇ ¾ÆÅ°ÅØÃĸ¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "ÆÐÅ°ÁöÀÇ ¿î¿µÃ¼Á¦¸¦ °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡Çϱâ Àü¿¡ µð½ºÅ© °ø°£À» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "ÆÐÅ°Áö¿¡ Æ÷ÇԵȠ¹®¼­ ÆÄÀÏÀ» ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÆÄÀϽýºÅÛÀ» º¯°æÇÏÁö ¾Ê°í, µ¥ÀÌÅͺ£À̽º¸¦ °»½ÅÇÕ´Ï´Ù"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÀÇÁ¸¼ºÀÌ Àִ ÆÐÅ°Áö¸¦ ¼³Ä¡Çϵµ·Ï Àç¿ä±¸ÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "%%pre ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "%%post ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "%%preun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "%%postun ½ºÅ©¸³Æ²¸´(scriptlet)À» ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù (ÀÖÀ» °æ¿ì)"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ÆÐÅ°ÁöÀÇ ÀÇÁ¸¼ºÀ» °Ë»çÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ÆÐÅ°ÁöÀÇ ¼­¸íÀ» °Ë»çÇÕ´Ï´Ù"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 "ÀÌ ÆÐÅ°Áö¿¡ ÀÇÇØ »ý¼ºµÇ´Â(triggered) ¾î¶°ÇÑ ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö "
 "¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerprein ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerin ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "¾î¶°ÇÑ %%triggerpostun ½ºÅ©¸³Æ²¸´(scriptlet)µµ ½ÇÇàÇÏÁö ¾Ê½À´Ï´Ù"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1816,48 +1816,48 @@ msgstr ""
 "ÀÌÀü ¹öÀüÀÇ ÆÐÅ°Áö·Î ´Ù¿î±×·¹À̵å ÇÕ´Ï´Ù (--force ¿É¼ÇÀ» »ç¿ë½Ã¿¡´Â ÀÌ ¿É¼Ç"
 "ÀÌ ÀÚµ¿À¸·Î Àû¿ëµË´Ï´Ù)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "ÆÐÅ°Áö ¼³Ä¡¸¦ ÆÛ¼¾Æ®(%)·Î Ç¥½ÃÇÕ´Ï´Ù"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 "Àç¹èÄ¡ ±â´ÉÀÌ Àִ ÆÐÅ°ÁöÀÇ °æ¿ì, ÁöÁ¤ÇÑ <µð·ºÅ丮>·Î Àç¹èÄ¡ÇÏ¿© ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "<ÀÌÀü°æ·Î>¿¡¼­ <»õ·Î¿î°æ·Î>·Î ÆÄÀÏÀ» Àç¹èÄ¡ ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<ÀÌÀü°æ·Î>=<»õ·Î¿î°æ·Î>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "ÀçÆÐŰ¡(repackaging)À¸·Î ÀÎÇØ »èÁ¦µÇ´Â ÆÐÅ°Áö ÆÄÀÏÀ» ÀúÀåÇÕ´Ï´Ù"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "ÆÐÅ°Áö ¼³Ä¡½Ã ±âÁ¸¿¡ ¼³Ä¡µÇ¾î Àִ ÆÄÀÏÀ» µ¤¾î¾¹´Ï´Ù"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "ÆÐÅ°Áö°¡ À̹̠¼³Ä¡µÇ¾î Àִ °æ¿ì¿¡µµ ¼³Ä¡ÇÕ´Ï´Ù"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "»õ·Î ¼³Ä¡ »èÁ¦, ÀÌÀü ¼³Ä¡ À缳ġ, ÆÐÅ°Áö, <³¯Â¥> º¹±¸(back to date)"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr "<³¯Â¥>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÏÁö ¾Ê°í, Á¦´ë·Î ¼³Ä¡µÇ´ÂÁö¸¸ È®ÀÎÇÕ´Ï´Ù"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "ÆÐÅ°Áö¸¦ ¾÷±×·¹À̵å ÇÕ´Ï´Ù"
 
@@ -2062,84 +2062,84 @@ msgstr "
 msgid "Data type %d not supported\n"
 msgstr "%d µ¥ÀÌÅÍ À¯ÇüÀº »ç¿ëÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s %s(À»)¸¦ »ý¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s %s(À»)¸¦ ÀÛ¼ºÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "¼Ò½º ÆÐÅ°Áö°¡ ÇÊ¿äÇϸç, ¹ÙÀ̳ʸ®°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "¼Ò½º ÆÐÅ°Áö¿¡ .spec ÆÄÀÏÀÌ Æ÷ÇԵǾî ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s ½ºÅ©¸³Æ®¸¦ ½ÇÇàÇÕ´Ï´Ù (ÀÖÀ» °æ¿ì)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, waitpid°¡ %5"
 "$s(À»)¸¦ ¹ÝȯÇÏ¿´½À´Ï´Ù\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "%2$s-%3$s-%4$sÀÇ %1$s ½ºÅ©¸³Æ²¸´(scriptlet) ½ÇÇà¿¡ ½ÇÆÐÇß½À´Ï´Ù, Á¾·á »óȲ %5"
 "$d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s¿¡ %dÀÇ ÆÄÀÏÀÌ ÀÖ½À´Ï´Ù, Å×½ºÆ® = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 "%s: %s ½ºÅ©¸³Æ²¸´(scriptlet)ÀÌ ½ÇÆÐÇß½À´Ï´Ù (%d), %s-%s-%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "%s »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "%s ±×·ìÀÌ Á¸ÀçÇÏÁö ¾Ê½À´Ï´Ù - root¸¦ ÀÌ¿ëÇÕ´Ï´Ù\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "¾ÆÄ«À̺긦 Çª´Âµ¥ ½ÇÆÐÇÔ%s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " ´ÙÀ½ ÆÄÀÏÀÇ "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%2$s ÆÄÀÏÀÇ %1$s(ÀÌ)°¡ ½ÇÆÐÇÔ: %3$s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s(ÀÌ)°¡ ½ÇÆÐÇÔ: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "¿Ã¹Ù¸£Áö ¸øÇÑ Çü½Ä: %s\n"
@@ -2182,8 +2182,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "%s(À»)¸¦ ÁúÀÇÇÒ ¼ö ¾øÀ½: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s(À»)¸¦ ¿©´Âµ¥ ½ÇÆÐÇÔ: %s\n"
@@ -2197,7 +2197,7 @@ msgstr "%s(
 msgid "old format source packages cannot be queried\n"
 msgstr "ÀÌÀü Çü½ÄÀÇ ¼Ò½º ÆÐÅ°Áö´Â ÁúÀÇÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s(¿Í)°ú ÀÏÄ¡Çϴ ÆÐÅ°Áö°¡ ¾øÀ½: %s\n"
@@ -2267,17 +2267,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "±â·Ï(record) ¹øÈ£ %u(Àº)´Â ÀÐÀ» ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s ÆÐÅ°Áö°¡ ¼³Ä¡µÇ¾î ÀÖÁö ¾Ê½À´Ï´Ù\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "À߸øµÈ db ÆÄÀÏ %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s ¿¹ (Á¦°øÀÌ Ãß°¡µÊ)\n"
@@ -2387,86 +2387,86 @@ msgstr "
 msgid "Preparing packages for installation..."
 msgstr "¼³Ä¡ÇÒ ÆÐÅ°Áö¸¦ ÁغñÇÏ°í ÀÖ½À´Ï´Ù..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "%s(À»)¸¦ º¹±¸ÇÕ´Ï´Ù\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... %s(À¸)·Î\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s(À»)¸¦ »ý·«ÇÕ´Ï´Ù - Àü¼Û(transfer)¿¡ ½ÇÆÐÇÔ - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s ÆÐÅ°Áö´Â Àç¹èÄ¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s ÆÄÀÏÀ» Àд µµÁß ¿À·ù°¡ ¹ß»ýÇß½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s ÆÄÀÏÀº ÃֽŠ¹öÀüÀÇ RPMÀ» ÇÊ¿ä·Î ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s(Àº)´Â ¼³Ä¡ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%dÀÇ ¼Ò½º¿Í %dÀÇ ¹ÙÀ̳ʸ® ÆÐÅ°Áö°¡ °Ë»öµÇ¾ú½À´Ï´Ù\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÀÇÁ¸¼º ¹®Á¦·Î ÀÎÇØ ½ÇÆÐÇÔ:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "¹ÙÀ̳ʸ® ÆÐÅ°Áö¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s ÆÄÀÏÀ» ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¿©·¯°³ÀÇ ÆÐÅ°Áö¸¦ ÁöÁ¤ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÀÌ ÆÐÅ°ÁöµéÀ» Á¦°ÅÇÒ °æ¿ì ÀÇÁ¸¼ºÀÌ ±úÁú ¼ö ÀÖÀ½:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s(À»)¸¦ ¼³Ä¡ÇÕ´Ï´Ù\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "(+%d,-%d) ÆÐÅ°Áö¸¦ %sÀ¸·Î ·Ñ¹é(rollback)ÇÕ´Ï´Ù"
@@ -2633,26 +2633,26 @@ msgstr "%2$s
 msgid "bad option '%s' at %s:%d\n"
 msgstr "%2$s¿¡ À߸øµÈ '%1$s' ¿É¼Ç:%3$d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "¾Ë ¼ö ¾ø´Â ½Ã½ºÅÛ: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "rpm-list@redhat.comÀ¸·Î ¿¬¶ô¹Ù¶ø´Ï´Ù\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "%s(À»)¸¦ È®Àå(expand)ÇÒ ¼ö ¾ø½À´Ï´Ù\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "%s(À»)¸¦ ÀÐÀ» ¼ö ¾ø½À´Ï´Ù, HOMEÀÌ ³Ê¹« Å®´Ï´Ù.\n"
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s.\n"
@@ -2663,7 +2663,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "%s ¾ÈÀÇ ÆÐÅ°Áö µ¥ÀÌÅͺ£À̽º¸¦ ¿­ ¼ö ¾ø½À´Ï´Ù\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2812,17 +2812,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "missingok Ç÷¡±×·Î ÀÎÇØ %s(À»)¸¦ »ý·«ÇÕ´Ï´Ù\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s µð·ºÅ丮¸¦ Á¦¿Ü½Ãŵ´Ï´Ù\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "´ÙÀ½À» Ã£À» ¼ö ¾øÀ½    %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s¿¡ ÀÇÁ¸¼º ¹®Á¦ ¹ß»ý: "
@@ -3341,37 +3341,37 @@ msgstr "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "¸Þ¸ð¸® ÇÒ´ç °ª (%u ¹ÙÀÌÆ®)ÀÌ NULLÀ» ¹ÝȯÇÏ¿´½À´Ï´Ù.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "°æ°í: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "°æ°í: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "°æ°í: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "%s@%sÀÇ Æнº¿öµå: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "¿À·ù: %s Æ÷Æ®´Â ¹Ýµå½Ã ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "URL Æ÷Æ®´Â ¹Ýµå½Ã ¼ýÀÚÀ̾î¾ß ÇÕ´Ï´Ù\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s(À»)¸¦ »ý¼ºÇϴµ¥ ½ÇÆÐÇÔ: %s\n"
index 33d17eea389a9b6b834231091c232ceefe5904ac..c42a4a596deb9bc8c0f698174817d3e2ca301db1 100644 (file)
--- a/po/no.po
+++ b/po/no.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2001-06-27 12:24+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
 "Language-Team: Norwegian <no@li.org>\n"
@@ -114,7 +114,7 @@ msgstr "<kmd>"
 msgid "use <dir> as the top level directory"
 msgstr "bruk <katalog> som toppnivåkatalog"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<kat>"
 
@@ -827,7 +827,7 @@ msgstr "Kunne ikke 
 msgid "Could not open %s: %s\n"
 msgstr "Kunne ikke åpne %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunne ikke skrive pakke: %s\n"
@@ -857,7 +857,7 @@ msgstr "Kunne ikke lese \"payload\" fra %s: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kunne ikke skrive \"payload\" til %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1497,7 +1497,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1528,7 +1528,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr "feil under kjøring av stat på %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
@@ -1582,7 +1582,7 @@ msgstr "%s unlink av %s feilet: %s\n"
 msgid "%s created as %s\n"
 msgstr "%s opprettet som %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "feil under oppretting av midlertidig fil %s\n"
@@ -1626,35 +1626,35 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread feilet: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "eksluderingssti må begynne med en /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "relokasjoner må begynne med en /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "relokasjoner må inneholde et ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "relokasjoner må ha et / etter ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "installer alle filer, selv konfigurasjoner som ellers kan hoppes over"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1662,146 +1662,146 @@ msgstr ""
 "fjern alle pakker som er lik <pakke> (normalt vil en feil genereres hvis "
 "<pakke> spesifiserer flere pakker)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "ikke kjør pakkespesifikke skriptlet"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "omplasser filer i ikke-omplasserbar pakke"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr "lagre slettede pakkefiler ved å endre navn til underkatalog"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "slett (avinstaller) pakke"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<pakke>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "ikke installer dokumentasjon"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "hopp over filer med innledende komponent <sti> "
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<sti>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "forkortning for --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "oppgrader pakke(r) hvis allerede installert"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<pakkefil>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "skriv ut skigarder etter som pakken installeres (nyttig med -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "ikke verifiser pakkearkitektur"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "ikke verifiser operativsystem for pakken"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "ikke sjekk diskplass før installasjon"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "installer dokumentasjon"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "installer pakke"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "oppdater databasen, men ikke modifiser filsystemet"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ikke ordne pakkeinstallasjon for å tilfredsstille avhengigheter"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ikke kjør noen %%pre skriptlet (hvis noen)"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ikke kjør %%post skriptlet (hvis noen)"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ikke kjør %%preun skriptlet (hvis noen)"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ikke kjør %%postun skriptlet (hvis noen)"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ikke verifiser pakkeavhengigheter"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verifiser pakkesignatur"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "Ikke kjør noen skriptlets som utløses av denne pakken"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "ikke kjør %%triggerprein skriptlets"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "ikke kjør %%triggerin skriptlets"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "ikke kjør %%triggerun skriplets"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "ikke kjør %%triggerpostun skriptlets"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1809,48 +1809,48 @@ msgstr ""
 "oppgrader til en gammel versjon av pakken (--force ved oppgraderinger gjør "
 "dette automatisk)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "skriv ut prosentvis fremgang etter som pakken installeres"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "omplasser pakken til <kat>, hvis den er omplasserbar"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "omplasser filer fra sti <gml> til <ny>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<gml>=<ny>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "lagre slettede pakkefiler ved ompakking"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "installer selv om pakken erstatter installerte filer"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "reinstaller selv om pakken allerede er installert"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 #, fuzzy
 msgid "<date>"
 msgstr "<sti>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "ikke installer, men si ifra om det ville virke eller ikke"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "oppgrader pakke(r)"
 
@@ -2058,79 +2058,79 @@ msgstr "generer signatur"
 msgid "Data type %d not supported\n"
 msgstr "Datatype %d ikke støttet\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan ikke opprette %%%s %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan ikke skrive til %%%s %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "kildepakke forventet, binær funnet\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "kildepakke inneholder ikke en .spec-fil\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kjører %s-skript (hvis noen)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "klarte ikke å åpne %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s feilet\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ukorrekt format: %s\n"
@@ -2173,8 +2173,8 @@ msgstr "pakken har verken fileier eller id-lister\n"
 msgid "can't query %s: %s\n"
 msgstr "kan ikke spørre på %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "feil under åpning av %s: %s\n"
@@ -2188,7 +2188,7 @@ msgstr "sp
 msgid "old format source packages cannot be queried\n"
 msgstr "kildepakker i gammelt format kan ikke spørres\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ingen pakke utløser %s\n"
@@ -2257,16 +2257,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakke %s er ikke installert\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2373,86 +2373,86 @@ msgstr "Forbereder..."
 msgid "Preparing packages for installation..."
 msgstr "Forbereder pakker for installasjon..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Henter %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hopper over %s - overføring feilet - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakke %s kan ikke relokeres\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "feil under lesing fra fil %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, 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:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "fant %d kilde- og %d binærpakker\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "feilede avhengigheter:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "installerer binærpakker\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" spesifiserer flere pakker\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "fjerning av disse pakkene vil ødelegge avhengigheter:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan ikke åpne %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerer %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2613,26 +2613,26 @@ msgstr "manglende arkitektur for %s ved %s:%d\n"
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ugyldig flagg '%s' ved %s:%d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Kan ikke utvide %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kunne ikke åpne spec fil %s: %s\n"
@@ -2643,7 +2643,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "kan ikke åpne pakkedatabase i %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr "henter liste over monterte filsystemer\n"
 
@@ -2791,17 +2791,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ekskluderer katalog %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "mangler    %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "feilede avhengigheter:\n"
@@ -3311,37 +3311,37 @@ msgstr "advarsel: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, fuzzy, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "advarseo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Passord for %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "feil: %s-port må være et tall\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "url-port må være et tall\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "kunne ikke opprette %s: %s\n"
index af52a8627d1a7ffffc638251533b17da6b79ef9f..5bdf75edd5a974881c3ec2e13404535cee54b74b 100644 (file)
--- a/po/pl.po
+++ b/po/pl.po
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -122,7 +122,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "u¿yj <katalogu> jako katalogu najwy¿szego poziomu"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -853,7 +853,7 @@ msgstr "Nie mo
 msgid "Could not open %s: %s\n"
 msgstr "Nie mo¿na otworzyæ %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
@@ -883,7 +883,7 @@ msgstr "Nie mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie mo¿na zapisaæ pakietu: %s"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1540,7 +1540,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(nie jest liczb±)"
 
@@ -1573,7 +1573,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr "stat nie powiod³o siê %s: %s"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
@@ -1627,7 +1627,7 @@ msgstr "otwarcie %s nie powiod
 msgid "%s created as %s\n"
 msgstr "ostrze¿enie: %s utworzony jako %s"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "b³±d w tworzeniu pliku tymczasowego %s"
@@ -1675,37 +1675,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead nie powiod³o siê\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "¶cie¿ki wy³±czeñ musz± siê zaczynaæ od /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "drzewa przesuniêæ musz± zaczynaæ sie od /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "specyfikacja przesuniêcia musi zawieraæ / po ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaluj wszystkie pliki, nawet konfiguracyjne, które w innym przypadku by "
 "pominêto"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1713,153 +1713,153 @@ msgstr ""
 "usuñ wszystkie pakiety, które spe³niaj± wzorzec <pakiet> (zazwyczaj "
 "wy¶wietlany jest b³±d gdy <pakiet> opisuje wiele pakietów)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "nie mo¿na u¿yæ ¶cie¿ki %s przy przesuwaniu pakietu %s-%s-%s"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "usuñ (odinstaluj) pakiet"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "znaleziono %d pakietów\n"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "nie instaluj dokumentacji"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "pomiñ pliki le¿±ce w <¶cie¿ce>"
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skrócona wersja kombinacji --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "pakiet %s-%s-%s jest ju¿ zainstalowany"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <nazwa pakietu>+ "
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "wy¶wietlaj znaki hash przy instalacji (fajne z -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "nie sprawdzaj architektury systemu"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "nie sprawdzaj rodzaju systemu operacyjnego"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "nie sprawdzaj zajêto¶ci dysku przed instalacj±"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "zainstaluj dokumentacjê"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "instaluj pakiet"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "od¶wie¿ bazê, ale nie modyfikuj systemu plików"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nie zmieniaj kolejno¶ci instalacji pakietów by zapewniæ zale¿no¶ci"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nie wykonuj ¿adnych etapów"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "nie sprawdzaj zale¿no¶ci pakietu"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "sprawd¼ sygnaturê pakietu"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "odpytywanie pakietów zahaczanych przez pakiet"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nie wykonuj ¿adnych skryptów instalacyjnych"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1867,49 +1867,49 @@ msgstr ""
 "uaktualnij do starej wersji (--force robi to samo automatycznie podczas "
 "uaktualniania)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "wy¶wietlaj stan instalacji w procentach"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "przesuñ pliki pakietu do drzewa <katalog>, je¶li jest przesuwalny"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "przesuñ pliki z drzewa <stara-¶cie¿ka> do drzewa <nowa-¶cie¿ka>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <stara-¶cie¿ka>=<nowa-¶cie¿ka>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "instaluj nawet gdy pakiet zastêpuje inne zainstalowane pliki"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "przeinstaluj je¶li pakiet jest ju¿ zainstalowany"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "nie instaluj, podaj tylko czy instalacja zadzia³a czy nie"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <nazwa pakietu>"
@@ -2137,81 +2137,81 @@ msgstr "generuj sygnatur
 msgid "Data type %d not supported\n"
 msgstr "Typ danych %d nie jest obs³ugiwany\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie mo¿na utworzyæ %s"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie mo¿na zapisaæ do %s"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "spodziewany pakiet ¼ród³owy a nie binarny"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pakiet ¼ród³owy nie zawiera pliku .spec"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "uruchamianie skryptu postinstall (je¶li istnieje)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "wykonanie skryptu nie powiod³o siê"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "pakiet: %s-%s-%s test plików = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "u¿ytkownik %s nie istnieje - u¿yto konta root"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s nie istnieje - u¿yto grupy root"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozpakowanie archiwum nie powiod³o siê %s%s: %s"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " na pliku "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s: %s"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s nie powiod³o siê"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "b³±d w formacie: %s\n"
@@ -2255,8 +2255,8 @@ msgstr "pakiet nie ma ani w
 msgid "can't query %s: %s\n"
 msgstr "nie mo¿na odwi±zaæ %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otwarcie %s nie powiod³o siê\n"
@@ -2270,7 +2270,7 @@ msgstr "odpytywanie %s nie powiod
 msgid "old format source packages cannot be queried\n"
 msgstr "pakiety w starym formacie nie mog± byæ odpytywane\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¿aden pakiet nie zahacza %s\n"
@@ -2340,17 +2340,17 @@ msgstr "numer rekordu pakietu: %d\n"
 msgid "record %u could not be read\n"
 msgstr "nie mo¿na odczytaæ rekordu %d\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "pakiet %s nie jest zainstalowany\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "b³êdny status pliku: %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2460,86 +2460,86 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "nie podano nazw plików do zainstalowania"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, 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:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr "... jako %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s pomijany - transmisja %s nie powiod³a siê\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "pakiet %s nie jest przesuwalny\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "b³±d czytania z pliku %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "plik %s wymaga nowszej wersji RPM\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie mo¿e byæ zainstalowany\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, 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:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "niespe³nione zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "instalacja pakietów binarnych\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie mo¿na otworzyæ pliku %s: %s"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" okre¶la wiele pakietów\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "usuniêcie tych pakietów zerwie zale¿no¶ci:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie mo¿na otworzyæ %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instalacja %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2702,26 +2702,26 @@ msgstr "brak architektury dla %s przy %s:%d"
 msgid "bad option '%s' at %s:%d\n"
 msgstr "b³êdna opcja '%s' przy %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Nieznany system: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Skontaktuj siê, proszê, z rpm-list@redhat.com\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Nie mo¿na rozszerzyæ %s"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie mo¿na otworzyæ %s do odczytu: %s."
@@ -2732,7 +2732,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "nie mo¿na otworzyæ %s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2887,17 +2887,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s pominiêty z powodu flagi missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "tworzenie katalogu: %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "brak    %s\n"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Niespe³nione zale¿no¶ci dla %s-%s-%s: "
@@ -3416,37 +3416,37 @@ msgstr "ostrze
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Has³o dla %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "b³±d: %sport musi byæ liczb±\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "port musi byæ liczb±\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "utworzenie %s nie powiod³o siê\n"
index b7df83fad5bc1d52a450a5567a3bad011635f1bd..00866ac5017a5f504fb12673ba9c257fade58019 100644 (file)
--- a/po/pt.po
+++ b/po/pt.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2002-02-14 10:51+0000\n"
 "Last-Translator: José Nuno Coelho Sanarra Pires <jncp@rnl.ist.utl.pt>\n"
 "Language-Team: pt <morais@kde.org\n"
@@ -114,7 +114,7 @@ msgstr "<com>"
 msgid "use <dir> as the top level directory"
 msgstr "usa <dir> como a directoria de topo"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<dir>"
 
@@ -833,7 +833,7 @@ msgstr "N
 msgid "Could not open %s: %s\n"
 msgstr "Não consigo aceder ao %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Não consegui gravar o pacote: %s\n"
@@ -863,7 +863,7 @@ msgstr "N
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Não consegui escrever o conteúdo de %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Gravei: %s\n"
@@ -1512,7 +1512,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(não é um número)"
 
@@ -1543,7 +1543,7 @@ msgstr "o mntctl() falhou ao devolver o n
 msgid "failed to stat %s: %s\n"
 msgstr "Não consegui analisar o %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "falhei ao aceder ao %s: %s\n"
@@ -1600,7 +1600,7 @@ msgstr "%s unlink de %s falhou: %s\n"
 msgid "%s created as %s\n"
 msgstr "%s criado como %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "erro ao criar o ficheiro temporário %s\n"
@@ -1644,37 +1644,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: O fread falhou: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "as directorias de exclusão têm de começar por /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "os novos locais têm de começar por /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "os novos locais têm de conter um ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "os novos locais têm de ter um / a seguir ao ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr "'rollback' recebe como argumento uma hora/data"
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr "argumento hora/data inválido para 'rollback'"
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instala todos os ficheiros, mesmo as configurações que de outro modo seriam "
 "ignoradas"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1682,148 +1682,148 @@ msgstr ""
 "remove todos os pacotes que correspondam a <pacote> (normalmente aparece um "
 "erro se o <pacote> especifica vários pacotes)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "não executar nenhuns scripts do pacote"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "muda os ficheiros de sítio num pacote de localização fixa"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "gravar os ficheiros do pacote apagado mudando o nome para sub-directoria"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "apaga (desinstala) o pacote"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<pacote>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "não instala a documentação"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "ignorar os ficheiros com a componente inicial <dir> "
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<caminho>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "abreviatura para --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "actualizar o pacote(s) se já estiver instalado"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<pacote>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostra cardinais enquanto o pacote instala (conveniente com o -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "não verifica a arquitectura do pacote"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "não verifica o sistema operativo do pacote"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "não verifica o espaço em disco antes de instalar"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "instala a documentação"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "instala o pacote"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "actualiza a base de dados, mas não altera o sistema de ficheiros"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "não verifica as dependências do pacote"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "não reorganiza a instalação dos pacotes para satisfazer as dependências"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "não executar o script %%pre (se existir)"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "não executar o script %%post (se existir)"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "não executar o script %%preun (se existir)"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "não executar o script %%postun (se existir)"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "não verificar as dependências do pacote"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verificar a assinatura do pacote"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "não executar nenhum dos scripts activados por este pacote"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerprein"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerin"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerun"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "não executar nenhum dos scripts %%triggerpostun"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1831,47 +1831,47 @@ msgstr ""
 "actualiza para um versão antiga do pacote (o --force faz isto "
 "automaticamente)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "mostra percentagens enquanto o pacote instala"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "muda o pacote para <dir>, se for possível"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "muda os ficheiros de <velho> para <novo>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<velho>=<novo>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "gravar ficheiros apagados reempacotando-os"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "instala mesmo se o pacote substituir ficheiros instalados"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "reinstalar se o pacote já estiver presente"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "desinstalador novo, reinstalar velho, pacote(s) voltar à <data>"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr "<data>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "não instala, mas indica se iria funcionar ou não"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "actualizar pacote(s)"
 
@@ -2077,81 +2077,81 @@ msgstr "gerar a assinatura"
 msgid "Data type %d not supported\n"
 msgstr "O tipo de dados %d não é suportado\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "não consigo criar o %%%s %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "não consigo escrever em %%%s %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 "esperava-se um pacote com código-fonte, foi encontrado um pacote binário\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "o pacote de código-fonte não contem um ficheiro .spec\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: a correr os scripts(s) %s (se existirem)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "a execução do script %s do %s-%s-%s falhou, waitpid devolveu %s\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 "a execução do 'scriptlet' %s do %s-%s-%s falhou com código de erro %d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s tem %d ficheiros, teste = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s script falhou (%d), a saltar %s-%s-%s\n"
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "o utilizador %s não existe - a usar o root\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "o grupo %s não existe - a usar o root\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "a abertura do pacote falhou%s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " no ficheiro "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s falhou no ficheiro %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s falhou: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "formato incorrecto: %s\n"
@@ -2194,8 +2194,8 @@ msgstr "o pacote nem tem um dono do ficheiro ou as listas de IDs\n"
 msgid "can't query %s: %s\n"
 msgstr "não consigo pesquisar o %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "o acesso ao %s falhou: %s\n"
@@ -2210,7 +2210,7 @@ msgid "old format source packages cannot be queried\n"
 msgstr ""
 "os pacotes com código-fonte no formato antigo não podem ser pesquisados\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nenhum pacote coincide com %s: %s\n"
@@ -2279,17 +2279,17 @@ msgstr "n
 msgid "record %u could not be read\n"
 msgstr "o registo %u não pôde ser lido\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "o pacote %s não está instalado\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "ficheiro db inválido %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s SIM (oferecidos para adição)\n"
@@ -2399,86 +2399,86 @@ msgstr "A preparar..."
 msgid "Preparing packages for installation..."
 msgstr "A preparar os pacotes para a instalação..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "A obter o %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... como %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "a ignorar o %s - a transferência falhou - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "o pacote %s não pode ser mudado de sítio\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "erro ao ler do ficheiros %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "o %s precisa duma versão mais recente do RPM\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "o %s não pode ser instalado\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "encontrados %d pacotes com código-fonte e %d binários\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "dependências falhadas:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "a instalar os pacotes binários\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "não consigo aceder ao ficheiro %s: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "o \"%s\" especifica vários pacotes\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "a remoção destes pacotes irá quebrar dependências:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "não consigo aceder ao %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "A instalar o %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "a efectuar o 'rollback' (+%d,-%d) pacotes para %s"
@@ -2643,26 +2643,26 @@ msgstr "falta a arquitectura para o %s em %s:%d\n"
 msgid "bad option '%s' at %s:%d\n"
 msgstr "má opção '%s' em %s:%d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Sistema desconhecido: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Por favor contacte o rpm-list@redhat.com\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Não consigo expandir o %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Não consigo ler o %s, a HOME é demasiado grande.\n"
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Não consegui abrir o %s para leitura: %s.\n"
@@ -2673,7 +2673,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "não consigo abrir a base de dados Packages em %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2823,17 +2823,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s ignorado devido à opção missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "a excluir a directoria %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "falta     %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Dependências não satisfeitas para o %s-%s-%s: "
@@ -3346,37 +3346,37 @@ msgstr "aviso: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "a alocação de memória (%u bytes) devolveu NULL.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "aviso: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "aviso: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "aviso: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Senha para o %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "erro: o %sport tem de ser um número\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "o porto do URL tem de ser um número\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "não consegui criar o %s: %s\n"
index 2c88a5413b0e62a31b61faad0d4ad2016c5a9e5a..0f825b703e8971fb4725a86494846d4036d8b6af 100644 (file)
@@ -4,7 +4,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 
 #: build.c:40
 #, fuzzy
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "use <diretrio> como diretrio raiz"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -912,7 +912,7 @@ msgid "Could not open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -947,7 +947,7 @@ msgstr "No consegui abrir: %s\n"
 msgid "Unable to write payload to %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1652,7 +1652,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1686,7 +1686,7 @@ msgid "failed to stat %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1745,7 +1745,7 @@ msgid "%s created as %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "No consegui abrir: %s\n"
@@ -1791,37 +1791,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 #, fuzzy
 msgid "relocations must begin with a /"
 msgstr "argumentos para o --dbpath devem comear com uma /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1829,154 +1829,154 @@ msgstr ""
 "remova todos os pacotes iguais a <pacote> (normalmente um erro  gerado se "
 "<pacote> especificou mltiplos pacotes)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "no execute nenhuma script especfica do pacote"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "apague (desinstale) pacote"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "pesquise todos os pacotes"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "no instale documentao"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "alis para --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<estgio> <spec>    "
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "mostre caracteres # a medida que o pacote instala (bom com -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 #, fuzzy
 msgid "don't verify package architecture"
 msgstr "no verifique a arquitetura do pacote"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "no verifique o sistema operacional do pacote"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "instale documentao"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "instale pacote"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 #, fuzzy
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "no execute nenhum estgio"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "no verifique as dependncias do pacote"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verifique a assinatura do pacote"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "no execute nenhuma script especfica do pacote"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "no execute nenhuma script de instalao"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1984,48 +1984,48 @@ msgstr ""
 "atualize para uma verso mais velha do pacote (--force em atualizaes no faz "
 "isto automaticamente)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "imprima porcentagens a medida que o pacote vai sendo instalado"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "realoque o pacote para <diretrio>, se realocvel"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "                        [--nomd5] [alvos]"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "instale mesmo que o pacote substitua arquivos j instalados"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "reinstale se o pacote j estiver presente"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "no instale, mas diga se a instalao funcionar ou no"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "instale pacote"
@@ -2263,82 +2263,82 @@ msgid "Data type %d not supported\n"
 msgstr ""
 
 # , c-format
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
 # , c-format
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "pesquise o pacote ao qual <arquivo> pertence"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "no execute nenhum estgio"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
 # , c-format
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "Construo falhou.\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2384,8 +2384,8 @@ msgstr "no foi passado pacote para instalao"
 msgid "can't query %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "Construo falhou.\n"
@@ -2399,7 +2399,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "no foram passados pacotes para assinatura"
@@ -2470,18 +2470,18 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, fuzzy, c-format
 msgid "package %s is not installed\n"
 msgstr "no foi passado pacote para instalao"
 
 # , c-format
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2602,90 +2602,90 @@ msgstr "no foi passado pacote para instalao"
 # "Content-Type: text/plain; charset=ISO-8859-1\n"
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, fuzzy, c-format
 msgid "Retrieving %s\n"
 msgstr "RPM verso %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "no foi passado pacote para instalao"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lista dependncias do pacote"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instale pacote"
 
 # , c-format
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 #, fuzzy
 msgid "removing these packages would break dependencies:\n"
 msgstr "lista dependncias do pacote"
 
 # , c-format
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "no foi passado pacote para desinstalao"
@@ -2849,28 +2849,28 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "No consegui abrir: %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
 # , c-format
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "No consegui abrir: %s\n"
@@ -2882,7 +2882,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "No consegui abrir: %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -3045,17 +3045,17 @@ msgstr ""
 # "Content-Transfer-Encoding: 8-bit\n"
 # , c-format
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "RPM verso %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "lista dependncias do pacote"
@@ -3593,38 +3593,38 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 # , c-format
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "No consegui abrir o pipe tar: %s\n"
index 59c2f2b0e7a5861c66a8f65922e0fae6c590484f..3ec303b02fdb58a0d9ba96fa3861ce71e9b97da3 100644 (file)
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -113,7 +113,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -810,7 +810,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -840,7 +840,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1474,7 +1474,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1505,7 +1505,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1559,7 +1559,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1603,223 +1603,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2016,79 +2016,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2131,8 +2131,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2146,7 +2146,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2215,16 +2215,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2331,85 +2331,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2568,26 +2568,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2598,7 +2598,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2743,17 +2743,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3263,37 +3263,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 6a03fbad0c1700288c1bbb889c289a3a32524585..20d423fbb0dd770b0304ff291aeeba08b0fdfdea 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -119,7 +119,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -816,7 +816,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -846,7 +846,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1480,7 +1480,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1511,7 +1511,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1565,7 +1565,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1609,223 +1609,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2022,79 +2022,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2137,8 +2137,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2152,7 +2152,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2221,16 +2221,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2337,85 +2337,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2574,26 +2574,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2604,7 +2604,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2749,17 +2749,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3269,37 +3269,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 64364102eab3efcdccfc5dbd46f4307a22c2d597..aefb16636c0337d64c6965da5d8a5820db80d1be 100644 (file)
--- a/po/ru.po
+++ b/po/ru.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2002-04-09 16:44-0400\n"
 "Last-Translator: Eugene Kanter, <eugene@bcl.bz>\n"
 "Language-Team: Black Cat Linux Team <blackcat-support@blackcatlinux.com>\n"
@@ -116,7 +116,7 @@ msgstr "<
 msgid "use <dir> as the top level directory"
 msgstr "ÉÓÐÏÌØÚÏ×ÁÔØ <ËÁÔÁÌÏÇ> ËÁË ËÏÒÎÅ×ÏÊ ËÁÔÁÌÏÇ"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<ËÁÔÁÌÏÇ>"
 
@@ -835,7 +835,7 @@ msgstr "
 msgid "Could not open %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÐÁËÅÔ: %s\n"
@@ -865,7 +865,7 @@ msgstr "
 msgid "Unable to write payload to %s: %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÚÁÐÉÓÁÔØ ÓÏÄÅÒÖÉÍÏÅ × %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "úÁÐÉÓÁÎ: %s\n"
@@ -1519,7 +1519,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(ÎÅ ÞÉÓÌÏ)"
 
@@ -1550,7 +1550,7 @@ msgstr "mntctl() 
 msgid "failed to stat %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÉÎÆÏÒÍÁÃÉÀ Ï %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@@ -1605,7 +1605,7 @@ msgstr "%s 
 msgid "%s created as %s\n"
 msgstr "%s ÓÏÚÄÁΠËÁË %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "ÏÛÉÂËÁ ÓÏÚÄÁÎÉÑ ×ÒÅÍÅÎÎÏÇÏ ÆÁÊÌÁ %s\n"
@@ -1649,37 +1649,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: ÏÛÉÂËÁ Fread: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "ÉÓËÌÀÞÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÎÁÞÉÎÁÔØÓÑ Ó /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÓÏÄÅÒÖÁÔØ ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "ÐÅÒÅÍÅÝÅÎÉÑ ÄÏÌÖÎÙ ÉÍÅÔØ / ÐÏÓÌÅ ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr "ÏÔËÁÔ ÔÒÅÂÕÅÔ ÁÒÇÕÍÅÎÔ ×ÒÅÍÅÎÉ"
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr "ÎÅÐÒÁ×ÉÌØÎÙÊ ÆÏÒÍÁÔ ×ÒÅÍÅÎÉ ÏÔËÁÔÁ"
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ×ÓÅ ÆÁÊÌÙ, ÄÁÖÅ ËÏÎÆÉÇÕÒÁÃÉÏÎÎÙÅ, ËÏÔÏÒÙÅ ÍÏÇÌÉ ÂÙ ÂÙÔØ "
 "ÐÒÏÐÕÝÅÎÙ"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1687,146 +1687,146 @@ msgstr ""
 "ÕÄÁÌÉÔØ ×ÓÅ ÐÁËÅÔÙ, ÓÏ×ÐÁÄÁÀÝÉÅ Ó <ÐÁËÅÔ> (ÏÂÙÞÎÏ, ÅÓÌÉ <ÐÁËÅÔ> "
 "ÓÏÏÔ×ÅÔÓÔ×ÕÅÔ ÎÅÓËÏÌØËÉÍ ÐÁËÅÔÁÍ, ÇÅÎÅÒÉÒÕÅÔÓÑ ÏÛÉÂËÁ)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÎÉËÁËÉÈ ÓÃÅÎÁÒÉÅ× ÐÁËÅÔÁ(Ï×)"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ × ÎÅÐÅÒÅÍÅÝÁÅÍÏÍ ÐÁËÅÔÅ"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr "ÓÏÈÒÁÎÉÔØ × ÐÏÄËÁÔÁÌÏÇÅ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "ÕÄÁÌÉÔØ (ÄÅÉÎÓÔÁÌÌÉÒÏ×ÁÔØ) ÐÁËÅÔ"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<ÐÁËÅÔ>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "ÐÒÏÐÕÓÔÉÔØ ÆÁÊÌÙ × ÐÕÔÉ <ÐÕÔØ>"
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<ÐÕÔØ>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "ÓÏËÒÁÝÅÎÉÅ ÄÌÑ --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù) ÅÓÌÉ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<ÆÁÊÌ ÐÁËÅÔÁ>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "×Ù×ÏÄÉÔØ \"#\" ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ (ÈÏÒÏÛÏ Ó -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÁÒÈÉÔÅËÔÕÒÕ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÏÐÅÒÁÃÉÏÎÎÕÀ ÓÉÓÔÅÍÕ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÄÉÓËÏ×ÏÅ ÐÒÏÓÔÒÁÎÓÔ×Ï ÐÅÒÅÄ ÕÓÔÁÎÏ×ËÏÊ"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÄÏËÕÍÅÎÔÁÃÉÀ"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "ÕÓÔÁÎÏ×ÉÔØ ÐÁËÅÔ"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "ÏÂÎÏ×ÉÔØ ÂÁÚÕ ÄÁÎÎÙÈ, ÎÏ ÎÅ ÍÏÄÉÆÉÃÉÒÏ×ÁÔØ ÆÁÊÌÏ×ÕÀ ÓÉÓÔÅÍÕ"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "ÎÅ ÍÅÎÑÔØ ÐÏÒÑÄÏË ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÏ× ÄÌÑ ÕÄÏ×ÌÅÔ×ÏÒÅÎÉÑ ÚÁ×ÉÓÉÍÏÓÔÅÊ"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ  %%pre ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%post ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%preun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%postun ÓÃÅÎÁÒÉÅ× (ÅÓÌÉ ÅÓÔØ)"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "ÎÅ ÐÒÏ×ÅÒÑÔØ ÚÁ×ÉÓÉÍÏÓÔÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "ÐÒÏ×ÅÒÉÔØ ÐÏÄÐÉÓØ × ÐÁËÅÔÅ"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ ÔÒÉÇÇÅÒ-ÓÃÅÎÁÒÉÅ×, ×Ú×ÅÄÅÎÎÙÈ ÜÔÉÍ ÐÁËÅÔÏÍ"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerprein ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerin ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerun ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "ÎÅ ÉÓÐÏÌÎÑÔØ %%triggerpostun ÓÃÅÎÁÒÉÅ×"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1834,49 +1834,49 @@ msgstr ""
 "ÏÔËÁÔ ÎÁ ÂÏÌÅÅ ÓÔÁÒÕÀ ×ÅÒÓÉÀ ÐÁËÅÔÁ (--force ÐÒÉ ÏÂÎÏ×ÌÅÎÉÉ ÄÅÌÁÅÔ ÜÔÏ "
 "Á×ÔÏÍÁÔÉÞÅÓËÉ)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "×Ù×ÏÄÉÔØ ÐÒÏÃÅÎÔ ÇÏÔÏ×ÎÏÓÔÉ ÐÏ ÍÅÒÅ ÕÓÔÁÎÏ×ËÉ ÐÁËÅÔÁ"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÐÁËÅÔ × <ËÁÔÁÌÏÇ>, ÅÓÌÉ ÐÁËÅÔ ÜÔÏ ÐÏÚ×ÏÌÑÅÔ"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "ÐÅÒÅÍÅÓÔÉÔØ ÆÁÊÌÙ ÉÚ ÐÕÔÉ <old> × <new>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<old>=<new>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "ÓÏÈÒÁÎÉÔØ ÐÏÄÌÅÖÁÝÉÅ ÕÄÁÌÅÎÉÀ ÆÁÊÌÙ × ÎÏ×ÏÍ ÐÁËÅÔÅ"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, ÄÁÖÅ ÅÓÌÉ ÐÁËÅÔ ÐÅÒÅÐÉÛÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎÎÙÅ ÆÁÊÌÙ"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ, ÅÓÌÉ ÐÁËÅÔ ÕÖÅ ÕÓÔÁÎÏ×ÌÅÎ"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "ÕÄÁÌÉÔØ ÎÏ×ÙÊ(Å) ÐÁËÅÔ(Ù), ÐÅÒÅÕÓÔÁÎÏ×ÉÔØ ÓÔÁÒÙÊ(Å) ÐÁËÅÔ(Ù), ÏÂÒÁÔÎÏ ÎÁ "
 "ÕËÁÚÁÎÎÕÀ ÄÁÔÕ"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr "<ÄÁÔÁ>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "ÎÅ ÕÓÔÁÎÁ×ÌÉ×ÁÔØ, Á ÔÏÌØËÏ ÓÏÏÂÝÉÔØ, ÕÄÁÓÔÓÑ ÌÉ ÕÓÔÁÎÏ×ËÁ"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "ÏÂÎÏ×ÉÔØ ÐÁËÅÔ(Ù)"
 
@@ -2081,79 +2081,79 @@ msgstr "
 msgid "Data type %d not supported\n"
 msgstr "ôÉРÄÁÎÎÙÈ %d ÎÅ ÐÏÄÄÅÒÖÉ×ÁÅÔÓÑ\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %%%s %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÉÓÁÔØ × %%%s %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "ÏÂÎÁÒÕÖÅΠÄ×ÏÉÞÎÙÊ ÐÁËÅÔ ×ÍÅÓÔÏ ÏÖÉÄÁÅÍÏÇÏ ÉÓÈÏÄÎÏÇÏ\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "ÉÓÈÏÄÎÙÊ ÐÁËÅÔ ÎÅ ÓÏÄÅÒÖÉÔ ÆÁÊÌÁ ÓÐÅÃÉÆÉËÁÃÉÉ\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: ×ÙÐÏÌÎÑÅÔÓÑ ÓÃÅÎÁÒÉÊ %s (ÅÓÌÉ ÅÓÔØ)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, waitpid() ×ÏÚ×ÒÁÔÉÌ %s\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "ÏÛÉÂËÁ ×ÙÐÏÌÎÅÎÉÑ ÓÃÅÎÁÒÉÑ %s ÉÚ %s-%s-%s, ËÏÄ ×ÏÚ×ÒÁÔÁ %d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s ÓÏÄÅÒÖÉÔ %d ÆÁÊÌÏ×, test = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: ÏÛÉÂËÁ ÓÃÅÎÁÒÉÑ %s (%d), %s-%s-%s ÐÒÏÐÕÓËÁÅÔÓÑ\n"
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "ÐÏÌØÚÏ×ÁÔÅÌØ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "ÇÒÕÐÐÁ %s ÎÅ ÓÕÝÅÓÔ×ÕÅÔ - ÉÓÐÏÌØÚÕÅÔÓÑ root\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "ÒÁÓÐÁËÏ×ËÁ ÁÒÈÉ×Á ÎÅ ÕÄÁÌÁÓØ%s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " ÎÁ ÆÁÊÌÅ "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s ÏÛÉÂËÁ ÎÁ ÆÁÊÌÅ %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s ÎÅ ÕÄÁÌÏÓØ: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "ÏÛÉÂËÁ × ÆÏÒÍÁÔÅ: %s\n"
@@ -2196,8 +2196,8 @@ msgstr "
 msgid "can't query %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÚÁÐÒÏÓÉÔØ %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
@@ -2211,7 +2211,7 @@ msgstr "
 msgid "old format source packages cannot be queried\n"
 msgstr "ÚÁÐÒÏÓÙ Ë ÉÓÈÏÄÎÙÍ ÐÁËÅÔÁÍ × ÓÔÁÒÏÍ ÆÏÒÍÁÔÅ ÎÅ ÐÏÄÄÅÒÖÉ×ÁÀÔÓÑ\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "ÎÉ ÏÄÉΠÐÁËÅÔ ÎÅ ÐÏÄÈÏÄÉÔ Ë %s: %s\n"
@@ -2280,17 +2280,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ ÚÁÐÉÓØ %u\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "ÐÁËÅÔ %s ÎÅ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "ÎÅ×ÅÒÎÙÊ ÆÁÊÌ ÂÁÚÙ ÄÁÎÎÙÈ %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s YES (added provide)\n"
@@ -2400,86 +2400,86 @@ msgstr "
 msgid "Preparing packages for installation..."
 msgstr "ðÏÄÇÏÔÏ×ËÁ ÐÁËÅÔÏ× ÄÌÑ ÕÓÔÁÎÏ×ËÉ..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "úÁÇÒÕÖÁÅÔÓÑ %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... ËÁË %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s ÐÒÏÐÕÓËÁÅÔÓÑ - ÏÛÉÂËÁ ÐÅÒÅÄÁÞÉ - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "ÐÁËÅÔ %s - ÎÅ ÐÅÒÅÍÅÝÁÅÍÙÊ\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "ÏÛÉÂËÁ ÞÔÅÎÉÑ ÉÚ ÆÁÊÌÁ %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "ÄÌÑ ÆÁÊÌÁ %s ÎÅÏÂÈÏÄÉÍÁ ÂÏÌÅÅ ÎÏ×ÁÑ ×ÅÒÓÉÑ RPM\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ÎÅ ÍÏÖÅÔ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎ\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "ÎÁÊÄÅÎÏ %d ÉÓÈÏÄÎÙÈ É %d ÂÉÎÁÒÎÙÈ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ÎÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "ÕÓÔÁÎÁ×ÌÉ×ÁÀ ÂÉÎÁÒÎÙÅ ÐÁËÅÔÙ\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ ÆÁÊÌ %s: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ÚÁÄÁÅÔ ÎÅÓËÏÌØËÏ ÐÁËÅÔÏ×\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "ÕÄÁÌÅÎÉÅ ÜÔÉÈ ÐÁËÅÔÏ× ÎÁÒÕÛÉÔ ÚÁ×ÉÓÉÍÏÓÔÉ:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "ÏÔËÁÔÉÔØ (+%d,-%d) ÐÁËÅÔÙ Ë %s"
@@ -2641,26 +2641,26 @@ msgstr "
 msgid "bad option '%s' at %s:%d\n"
 msgstr "ÎÅ×ÅÒÎÙÊ ÐÁÒÁÍÅÔÒ '%s' × %s:%d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "îÅÉÚ×ÅÓÔÎÁÑ ÓÉÓÔÅÍÁ: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "ó×ÑÖÉÔÅÓØ Ó rpm-list@redhat.com\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÒÁÓËÒÙÔØ %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÐÒÏÞÉÔÁÔØ %s, ÚÎÁÞÅÎÉÅ HOME ÓÌÉÛËÏÍ ×ÅÌÉËÏ.\n"
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s ÄÌÑ ÞÔÅÎÉÑ: %s.\n"
@@ -2671,7 +2671,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "ÎÅ ÍÏÇÕ ÏÔËÒÙÔØ ÂÁÚÕ ÄÁÎÎÙÈ Packages × %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2821,17 +2821,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s ÐÒÏÐÕÝÅΠÉÚ-ÚÁ ÆÌÁÇÁ missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "ÉÓËÌÀÞÁÅÔÓÑ ËÁÔÁÌÏÇ %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "ÏÔÓÕÔÓÔ×ÕÅÔ %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "îÅÕÄÏ×ÌÅÔ×ÏÒÅÎÎÙÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÄÌÑ %s-%s-%s: "
@@ -3345,37 +3345,37 @@ msgstr "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "memory alloc (%u bytes) returned NULL.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "×ÎÉÍÁÎÉÅ: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "×ÎÉÍÁÎÉÅ: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "ÐÒÅÄÕÐÒÅÖÄÅÎÉÅ: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "ðÁÒÏÌØ ÄÌÑ %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "ÏÛÉÂËÁ: %s ÐÏÒÔ ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "url ÐÏÒÔ ÄÏÌÖÅΠÂÙÔØ ÞÉÓÌÏÍ\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÓÏÚÄÁÔØ %s: %s\n"
index 03dea3d27610fb9913927c8ff14ed5f96d5c905b..94da12946ffe2f41ba5f7c97e1295ecfa890aadd 100644 (file)
--- a/po/sk.po
+++ b/po/sk.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -115,7 +115,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "pou¾i» <adresár> ako adresár najvy¹¹ej úrovne"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -850,7 +850,7 @@ msgstr "Nie je mo
 msgid "Could not open %s: %s\n"
 msgstr "Otvorenie %s zlyhalo\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
@@ -880,7 +880,7 @@ msgstr "Nie je mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Nie je mo¾né zapísa» balík: %s"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapísané: %s\n"
@@ -1538,7 +1538,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(nie je èíslo)"
 
@@ -1571,7 +1571,7 @@ msgstr "mntctl() nevr
 msgid "failed to stat %s: %s\n"
 msgstr "nepodarilo sa zisti» stav %s: %s"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
@@ -1625,7 +1625,7 @@ msgstr "otvorenie %s zlyhalo\n"
 msgid "%s created as %s\n"
 msgstr "varovanie: %s vytvorené ako %s"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
@@ -1671,37 +1671,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: readLead zlyhalo\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "vynechané cesty musia zaèína» znakom /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "presunutia musia zaèína» znakom /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "presunutia musia obsahova» znak ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "presunutia musia ma» za znakom = znak /"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "in¹talova» v¹etky súbory vrátane konfiguraèných súborov, ktoré by inak mohli "
 "by» vynechané"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1709,153 +1709,153 @@ msgstr ""
 "odin¹talova» v¹etky balíky urèené <balíkom> (inak je chybou, pokiaµ <balík> "
 "¹pecifikuje viac ako jeden balík)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "odin¹talova» balík"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "nájdených %d balíkov\n"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "nein¹talova» dokumentáciu"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "vynecha» súbory v ceste <cesta>"
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skratka pre --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <súbor_balíku>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "vypisova» znaèky poèas in¹talácie balíka (vhodné s -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "neoverova» architektúru balíka"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "neoverova» operaèný systém balíka"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "pred in¹taláciou nekontrolova» dostupné miesto na disku"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "in¹talova» dokumentáciu"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "in¹talova» balík"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "aktualizova» databázu bez zmeny súborového systému"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "neoverova» závislosti balíka"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "nemeni» poradie balíkov kvôli vyrie¹eniu závislostí"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nevykona» ¾iadne etapy"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "neoverova» závislosti balíka"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "overi» podpis balíka"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "nevykona» ¾iadne skripty spú¹»ané týmto balíkom"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nevykona» ¾iadne skripty ¹pecifikované balíkom"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nevykona» ¾iadne in¹talaèné skripty"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1863,49 +1863,49 @@ msgstr ""
 "aktualizova» na star¹iu verziu balíka (--force to pri aktualizácii urobí "
 "automaticky)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "vypisova» percentá poèas in¹talácie balíka"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "presunú» balík do <adresára>, pokiaµ to balík povoµuje"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "presunú» súbory zo <starej_cesty> do <novej_cesty>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <stará_cesta>=<nová_cesta>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "in¹talova» aj pokiaµ balík prepí¹e in¹talované súbory"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "prein¹talova», pokiaµ u¾ balík existuje"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "nein¹talova», ale oznámi», èi by to bolo mo¾né"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <súbor_balíka>"
@@ -2135,81 +2135,81 @@ msgstr "vytvori
 msgid "Data type %d not supported\n"
 msgstr "Typ údajov %d nie je podorovaný\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "nie je mo¾né zapísa» do %s: "
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "oèakávaný zdrojový balík, nájdený binárny"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "zdrojový balík neobsahuje ¾iadny .spec súbor"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "vykonávajú sa poin¹talaèné skripty (ak existujú)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "vykonanie skriptu zlyhalo"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "balík: %s-%s-%s test súborov = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "pou¾ívateµ %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s neexistuje - pou¾ije sa root"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "rozbalenie archívu zlyhalo%s%s: %s"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " pre súbor "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "nepodarilo sa otvori» %s: %s"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s zlyhalo"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "chyba formátu: %s\n"
@@ -2253,8 +2253,8 @@ msgstr "bal
 msgid "can't query %s: %s\n"
 msgstr "zmazanie %s zlyhalo: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "otvorenie %s zlyhalo\n"
@@ -2268,7 +2268,7 @@ msgstr "ot
 msgid "old format source packages cannot be queried\n"
 msgstr "nie je mo¾né pýta» sa zdrojových balíkov v starom formáte\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "¾iadny z balíkov nespú¹»a %s\n"
@@ -2338,17 +2338,17 @@ msgstr "po
 msgid "record %u could not be read\n"
 msgstr "záznam %d nie je mo¾né preèíta»\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "chybný stav súboru: %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2458,86 +2458,86 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "neboli zadané ¾iadne balíky pre in¹taláciu"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, 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:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr "... ako %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s vynechané - prenos zlyhal - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "balík %s nie je nain¹talovaný\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "chyba pri vytváraní doèasného súboru %s"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s nie je mo¾né nain¹talova»\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, 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:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "nevyrie¹ené závislosti:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "in¹talujú sa binárne balíky\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "nie je mo¾né otvori» súbor %s: %s"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" ¹pecifikuje viac balíkov\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstránenie týchto balíkov by poru¹ilo závislosti:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "nie je mo¾né otvori» %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "In¹taluje sa %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2698,26 +2698,26 @@ msgstr "ch
 msgid "bad option '%s' at %s:%d\n"
 msgstr "chybná voµba '%s' na %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznámy systém: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Kontaktujte prosím rpm-list@redhat.com\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Nie je mo¾né expandova» %s"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Nie je mo¾né otvori» %s pre èítanie: %s."
@@ -2728,7 +2728,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "nie je mo¾né otvori» %s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2883,17 +2883,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s vynechané kvôli príznaku missingok\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "vytvára sa adresár %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "chýbajúce    %s\n"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nevyrie¹ené závislosti pre %s-%s-%s: "
@@ -3412,37 +3412,37 @@ msgstr "varovanie: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Heslo pre %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "chyba: %sport musí by» èíslo\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "url port musí by» èíslo\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "nepodarilo sa vytvori» %s\n"
index cd2d2c966d9942379799006a7437d95a412549b9..d82ec7a27a813702322e46daa2b6221170751679 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.257 2002/06/15 19:44:15 jbj Exp $
+# $Id: sl.po,v 1.258 2002/06/20 02:19:56 jbj Exp $
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2000-10-08 19:05+0200\n"
 "Last-Translator: Grega Fajdiga <gregor.fajdiga@telemach.net>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -120,7 +120,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "uporabi <imenik> za korenski imenik"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -849,7 +849,7 @@ msgstr "Ikone %s ni mo
 msgid "Could not open %s: %s\n"
 msgstr "Ni mo¾no odpreti %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ni mo¾no zapisati paketa: %s"
@@ -879,7 +879,7 @@ msgstr "Ikone %s ni mo
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ni mo¾no zapisati paketa %s: %s"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Zapisano: %s\n"
@@ -1541,7 +1541,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(ni ¹tevilo)"
 
@@ -1574,7 +1574,7 @@ msgstr "mntctl() ni uspe
 msgid "failed to stat %s: %s\n"
 msgstr "status %s ni na voljo: %s"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
@@ -1628,7 +1628,7 @@ msgstr "odpiranje %s je bilo neuspe
 msgid "%s created as %s\n"
 msgstr "opozorilo: %s ustvarjen kot %s"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "napaka pri ustvarjanju zaèasne datoteke %s"
@@ -1674,36 +1674,36 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: branje Fread je bilo neuspe¹no: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "poti, ki niso obdelane, se morajo zaèeti z /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "premikanja se morajo zaèeti z /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "premikanja morajo vsebovati ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "premikanja morajo imeti /, ki mu sledi ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "namestitev vseh datotek, vkljuèno z nastavitvenimi, ki so sicer izpu¹èene"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1711,153 +1711,153 @@ msgstr ""
 "odstrani vse pakete, ki vsebujejo vzorec <paket> (sicer program izide z "
 "napako, èe paket <paket> doloèa veè paketov)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "brez izvajanja skriptov paketa"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (odstrani) paket"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "ni paketov\n"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "brez namestitve dokumentacije"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 #, fuzzy
 msgid "skip files with leading component <path> "
 msgstr "preskok datotek v navedeni poti"
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "okraj¹ava za --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paket %s-%s-%s je ¾e name¹èen"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "        -p <paket>+       "
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "z izpisom znakov # ob namestitvi (uporabno z -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "brez preverjanja arhitekture paketa"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "brez preverjanja operacijskega sistema paketa"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "brez preverjanja prostora na disku pred name¹èanjem"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "namesti dokumentacijo"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "name¹èanje paketa"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "obnovi podatkovno zbirko, a ne spreminjaj datoteènega sistema"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "brez spreminjanja vrstnega reda paketov z namenom zadovoljevanja soodvisnosti"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "brez izvajanja katerekoli stopen izgradnje"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "brez preverjanja soodvisnosti paketa"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "preveri podpis paketa(-ov)"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "brez izvajanja katerihkoli skriptov, ki jih po¾ene ta paket"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "brez izvajanja skriptov paketa"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "brez izvajanja namestitvenih skriptov"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1865,49 +1865,49 @@ msgstr ""
 "nadgraditev na starej¹o razlièico paketa (--force pri nadgradnjah "
 "avtomatièno vkljuèi to izbiro)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "izpis odstotkov med namestitvijo"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "èe je mogoèe, bo paket prestavljen v imenik <imenik>"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "prestavljanje datoteke iz stare poti v novo"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "      --relocate <starapot>=<novapot>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "namesti, èetudi paket pi¹e prek ¾e name¹èene datoteke"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "ponovno namesti, èe paket ¾e obstaja"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "ne namesti, a ugotovi, èe bi delovalo"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "    --upgrade <paket>      "
@@ -2135,81 +2135,81 @@ msgstr "izdelava podpisa PGP/GPG"
 msgid "Data type %d not supported\n"
 msgstr "Tip podatkov %d ni podprt\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "ni mo¾no ustvariti %s: %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "pisanje na %s ni mo¾no"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 #, fuzzy
 msgid "source package expected, binary found\n"
 msgstr "prièakovan je bil izvorni paket, najden binarni"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "izvorni paket ne vsebuje datoteke .spec"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "poganjanje ponamestitvenih skript (èe obstajajo)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "skript se ni uspe¹no izvedel"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket: %s-%s-%s datoteke test = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, fuzzy, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "uporabnik %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "skupina %s ne obstaja - uporabljam root"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "raz¹iritev arhiva je bilo neuspe¹no%s%s: %s"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " za datoteko "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspe¹no odpiranje %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s neuspe¹en"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "napaka v obliki: %s\n"
@@ -2253,8 +2253,8 @@ msgstr "paket ne vsebuje ne lastnika datotek niti seznamov id"
 msgid "can't query %s: %s\n"
 msgstr "ni mo¾no poizvedeti o %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "odpiranje %s je bilo neuspe¹no: %s\n"
@@ -2268,7 +2268,7 @@ msgstr "poizvedba po %s je bila neuspe
 msgid "old format source packages cannot be queried\n"
 msgstr "poizvedba po izvornih paketih v stari obliki ni mo¾na\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "noben paket ne pro¾i %s\n"
@@ -2338,17 +2338,17 @@ msgstr "
 msgid "record %u could not be read\n"
 msgstr "zapisa %d ni mo¾no prebrati\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s ni name¹èen\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "po¹kodovana zbirka podatkov %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s DA (dodane ponudbe)\n"
@@ -2460,86 +2460,86 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "paketi za namestitev niso navedeni"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Prena¹anje %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... kot %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "preskoèeno - %s - prenos neuspe¹en - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paketa %s ni mo¾no premakniti\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "napaka pri branju iz datoteke %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, 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:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s ni mo¾no namestiti\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "najdeno %d izvornih in %d binarnih paketov\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "neuspe¹ne soodvisnosti:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "name¹èanje binarnih paketov\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "ni mo¾no odpreti datoteke %s: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" doloèa veè paketov\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "odstranitev teh paketov bi podrla soodvisnosti:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "ni mo¾no odpreti %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Name¹èanje %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2701,26 +2701,26 @@ msgstr "manjkajo
 msgid "bad option '%s' at %s:%d\n"
 msgstr "nepravilna izbira ,%s` v %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Neznan sistem: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Prosimo, pi¹ite na rpm-list@redhat.com\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "Ni mo¾no raz¹iriti %s"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, fuzzy, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Ni mo¾no prebrati %s, HOME je prevelik."
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s ni mo¾no odpreti za branje: %s."
@@ -2731,7 +2731,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "zbirko podatkov paketov ni mo¾no odpreti v %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr "zbiranje seznama priklopljenih datoteènih sistemov.\n"
 
@@ -2886,17 +2886,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s preskoèen zaradi manjkajoèe zastavice OK\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "izkljuèevanje imenika %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "manjka     %s\n"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nezadovoljene soodvisnosti za %s-%s-%s: "
@@ -3419,37 +3419,37 @@ msgstr "opozorilo: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "alokacija pomnilnika (%u bajtov) vrnjeno NIÈ.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "opozorilo: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "opozorilo: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, fuzzy, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "opozorilo: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Geslo za %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "napaka: vrata %s morajo biti ¹tevilka\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "vrata URL morajo biti ¹tevilka\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "neuspe¹no ustvarjanje %s: %s\n"
index 037d4078503b3c97ed4d1f64cdadd2ec1785ed25..06927ca38e904a5b7ca4fa18f1976c82d0dbe4d9 100644 (file)
--- a/po/sr.po
+++ b/po/sr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "Content-Type: text/plain; charset=\n"
 "Date: 1998-05-02 21:41:47-0400\n"
 
@@ -112,7 +112,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr "koristi <dir> kao direktorijum najvi¹eg nivoa"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -837,7 +837,7 @@ msgstr "Ne mogu da upi
 msgid "Could not open %s: %s\n"
 msgstr "neuspelo otvaranje %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, fuzzy, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Ne mogu da upi¹em %s"
@@ -867,7 +867,7 @@ msgstr "Ne mogu da upi
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Ne mogu da upi¹em %s"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1526,7 +1526,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(nije broj)"
 
@@ -1559,7 +1559,7 @@ msgstr "mntctl() nije vratio 'fugger' veli
 msgid "failed to stat %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, fuzzy, c-format
 msgid "failed to open %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
@@ -1613,7 +1613,7 @@ msgstr "neuspelo otvaranje %s: %s\n"
 msgid "%s created as %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, fuzzy, c-format
 msgid "error creating temporary file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
@@ -1659,37 +1659,37 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Neuspeo 'readLead'\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 #, fuzzy
 msgid "exclude paths must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "preme¹tanja moraju poèeti znakom '/'"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "preme¹tanja moraju imati znak ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "preme¹tanja moraju imati / praæeno sa ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "instaliraj sve datoteke, èak i konfiguracije koje bi inaèe bile preskoèene"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1697,202 +1697,202 @@ msgstr ""
 "ukloni sve pakete koji odgovaraju <paketu> (normalno, javlja se gre¹ka ako "
 "<paket> oznaèava vi¹e paketa)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 #, fuzzy
 msgid "do not execute package scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 #, fuzzy
 msgid "relocate files in non-relocateable package"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "izbri¹i (deinstaliraj) paket"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 #, fuzzy
 msgid "<package>+"
 msgstr "upit nad svim paketima"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "nemoj da instalira¹ dokumentaciju"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "skraæenica za --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 #, fuzzy
 msgid "upgrade package(s) if already installed"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 #, fuzzy
 msgid "<packagefile>+"
 msgstr "    -b<faza> <spec>\t "
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "pi¹i he¹-znak (#) kako odmièe instaliranje paketa (dobro doðe sa -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "nemoj proveravati arhitekturu paketa"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "nemoj proveravati operativni sistem za paket"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "instaliraj dokumentaciju"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "instaliraj paket"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "a¾uriraj bazu podataka, ali nemoj menjati fajl-sistem"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 "nemoj preurediti redosled instalacije paketa kako bi zadovoljio zavisnosti"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, fuzzy, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, fuzzy, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, fuzzy, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, fuzzy, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "nemoj proveravati zavisnosti paketa"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "proveri potpis u paketu"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 #, fuzzy
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, fuzzy, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan skript iz paketa"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, fuzzy, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, fuzzy, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, fuzzy, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "nemoj izvr¹iti nijedan instalacioni skript"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 "a¾uriraj na staru verziju paketa (--force kod a¾uriranja ovo radi automatski)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "pi¹i procente instalacije paketa"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "premesti paket u <dir>, ako se mo¾e premestiti"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 #, fuzzy
 msgid "relocate files from path <old> to <new>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 #, fuzzy
 msgid "<old>=<new>"
 msgstr "premesti datoteke iz <starog-puta> u <novi-put>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "instaliraj èak iako æe paket zameniti instalirane datoteke"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "ponovo instaliraj ako je paket veæ prisutan"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "nemoj instalirati, ali reci da li æe da radi ili ne"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 #, fuzzy
 msgid "upgrade package(s)"
 msgstr "instaliraj paket"
@@ -2128,80 +2128,80 @@ msgstr "napravi PGP potpis"
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, fuzzy, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, fuzzy, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 #, fuzzy
 msgid "source package contains no .spec file\n"
 msgstr "upit nad paketom koji ima <datoteku>"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "nemoj izvr¹iti nijednu fazu"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, fuzzy, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "neuspelo izvr¹avanje skripta"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "paket %s-%s-%s sadr¾i deljene datoteke\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, fuzzy, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, fuzzy, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "PGP omanuo"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, fuzzy, c-format
 msgid "incorrect format: %s\n"
 msgstr "gre¹ka u formatu: %s\n"
@@ -2246,8 +2246,8 @@ msgstr "paket nema imena"
 msgid "can't query %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, fuzzy, c-format
 msgid "open of %s failed: %s\n"
 msgstr "neuspelo otvaranje %s: %s\n"
@@ -2261,7 +2261,7 @@ msgstr "upit nad %s neuspeo\n"
 msgid "old format source packages cannot be queried\n"
 msgstr "Upit se ne mo¾e izvesti nad izvorni paketima u starom formatu\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "nijedan paket ne aktivira %s\n"
@@ -2331,17 +2331,17 @@ msgstr "pogre
 msgid "record %u could not be read\n"
 msgstr "ne mogu da proèitam slog %d\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "neuspelo otvaranje %s: %s"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2451,87 +2451,87 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr "nedostaje paket za instalaciju"
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr "Pribavljam %s\n"
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, fuzzy, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "gre¹ka: preskaèem %s - neuspelo preno¹enje - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, fuzzy, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s nije instaliran\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, fuzzy, c-format
 msgid "error reading from file %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, fuzzy, c-format
 msgid "%s cannot be installed\n"
 msgstr "gre¹ka: %s se ne mo¾e instalirati\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, fuzzy, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "grupa %s ne sadr¾i nijedan paket\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "lo¹e meðuzavisnosti:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 #, fuzzy
 msgid "installing binary packages\n"
 msgstr "instaliraj paket"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, fuzzy, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "Ne mogu da otvorim datoteku %s: "
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" odreðuje vi¹e paketa\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "uklanjanje oviha paketa æe naru¹iti zavisnosti:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, fuzzy, c-format
 msgid "cannot open %s: %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Instaliram %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "neodstaje paket za deinstalaciju"
@@ -2692,26 +2692,26 @@ msgstr "nedostaje arhitektura za %s na %s:%d"
 msgid "bad option '%s' at %s:%d\n"
 msgstr "lo¹a opcija '%s' na %s:%d"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, fuzzy, c-format
 msgid "Cannot expand %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, fuzzy, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Ne mogu da otvorim %s za èitanje: %s"
@@ -2722,7 +2722,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "gre¹ka: ne mogu da otvorim %s%s/packages.rpm\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2878,17 +2878,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, fuzzy, c-format
 msgid "excluding directory %s\n"
 msgstr "gre¹ka kod kreiranja direktorijuma %s: %s"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, fuzzy, c-format
 msgid "missing    %s"
 msgstr "nedostaje { posle %"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Nezadovoljene meðuzavisnosti za %s-%s-%s: "
@@ -3413,38 +3413,38 @@ msgstr "upozorenje: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Lozinka za %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, fuzzy, c-format
 msgid "error: %sport must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 #, fuzzy
 msgid "url port must be a number\n"
 msgstr "gre¹ka: FTP port mora biti broj\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, fuzzy, c-format
 msgid "failed to create %s: %s\n"
 msgstr "neuspelo kreiranje %s\n"
index 9630a97ffbaf0182845cf69d6080dab9115e2138..0925f24dab4868bdb658245ffa1ab0974f077c72 100644 (file)
--- a/po/sv.po
+++ b/po/sv.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2002-02-18 21:13+0100\n"
 "Last-Translator: Göran Uddeborg <goeran@uddeborg.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -114,7 +114,7 @@ msgstr "<kommando>"
 msgid "use <dir> as the top level directory"
 msgstr "använd <kat> som toppkatalog"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<kat>"
 
@@ -826,7 +826,7 @@ msgstr "Kan inte l
 msgid "Could not open %s: %s\n"
 msgstr "Kunde inte öppna %s: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "Kunde inte skriva paket: %s\n"
@@ -856,7 +856,7 @@ msgstr "Kan inte l
 msgid "Unable to write payload to %s: %s\n"
 msgstr "Kan inte skriva last till %s: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Skrev: %s\n"
@@ -1504,7 +1504,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(inte ett tal)"
 
@@ -1535,7 +1535,7 @@ msgstr "mntctl() kunde inte returnera monteringspunkter: %s\n"
 msgid "failed to stat %s: %s\n"
 msgstr "kunde inte ta status på %s: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "kunde inte öppna %s: %s\n"
@@ -1590,7 +1590,7 @@ msgstr "%s unlink av %s misslyckades: %s\n"
 msgid "%s created as %s\n"
 msgstr "%s skapades som %s\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "fel när tämporärfil %s skapades\n"
@@ -1634,36 +1634,36 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread misslyckades: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "uteslutna sökvägar måste börja med /"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "omflyttningar måste börja med /"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "omflyttningar måste innehålla ett ="
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "omflyttningar måste ha ett / efter ="
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr "återställning tar en tid-/datumstämpel som argument"
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr "felformaterat tid-/datumstämpelargument för återställning"
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 "installera alla filer, även konfigurationer som annars kunde hoppats över"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1671,147 +1671,147 @@ msgstr ""
 "ta bort alla paket som matchar <paket> (normalt ger det ett fel om <paket> "
 "anger flera paket)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "kör inte paketskript"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "relokera filer i ej relokerbart paket"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr "spara raderade paketfiler genom att spara dem i underkatalog"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "radera (avinstallera) paket"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<paket>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "installera inte dokumentation"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "hoppa över filer med inledande <sökväg>"
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<sökväg>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "kortform för --replacepkgs --replacefiles"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "uppgradera paket om redan installerat/de"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<paketfil>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 "skriv ut brädgårdar allteftersom paketet installeras (bra tillsammans med -v)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "verifiera inte paketarkitektur"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "verifiera inte paketets operativsystem"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "kontrollera inte diskutrymme före installation"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "installera dokumentation"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "installera paket"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "uppdatera databasen, men ändra inte filsystemet"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "verifiera inte paketberoenden"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "flytta inte om paketinstallationen för att tillfredsställa beroenden"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%pre-skript"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%post-skript"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%preun-skript"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "utför inte (eventuellt) %%postun-skript"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "verifiera inte paketberoenden"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "verifiera paketsignatur"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "kör inte skript utlösta av detta paket"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "kör inte %%triggerprein-skript"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "kör inte %%triggerin-skript"
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "kör inte %%triggerun-skript"
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "kör inte %%triggerpostun-skript"
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1819,47 +1819,47 @@ msgstr ""
 "uppgradera till en gammal version av paketet (--force vid uppgraderingar gör "
 "detta automatiskt)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "skriv procent allt eftersom paketet installeras"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "flytta paketet till <katalog>, om flyttbart"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "relokera filer från <gammal> till <ny>"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<gammal>=<ny>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "spara raderade paketfiler genom ompaketering"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "installera även om paketet byter ut installerade filer"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "installera om ifall paketet redan är installerat"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr "avinstallera nya, ominstallera gamla, paket tillbaka till <datum>"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr "<datum>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "installera inte, men tala om ifall det skulle fungera eller inte"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "uppgradera paket"
 
@@ -2064,80 +2064,80 @@ msgstr "generera signatur"
 msgid "Data type %d not supported\n"
 msgstr "Datatyp %d stöds inte\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "kan inte skapa %%%s %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "kan inte skriva till %%%s %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "källpaket förväntades, fann binärpaket\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "källpaket innehåller ingen .spec-fil\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: kör (eventuellt) %s-skript\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 "körning av %s-skript från %s-%s-%s misslyckades, waitpid returnerade %s\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "körning av %s-skript från %s-%s-%s misslyckades, slutstatus %d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s har %d filer, test = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s-skript misslyckades (%d), hoppar över %s-%s-%s\n"
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "användare %s finns inte - använder root\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grupp %s finns inte - använder root\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "uppackning av arkiv misslyckades%s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " vid fil "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s misslyckades på fil %s: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr "%s misslyckades: %s\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "fel format: %s\n"
@@ -2180,8 +2180,8 @@ msgstr "paketet har varken fil
 msgid "can't query %s: %s\n"
 msgstr "kan inte fråga %s: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "misslyckades med att öppna %s: %s\n"
@@ -2195,7 +2195,7 @@ msgstr "fr
 msgid "old format source packages cannot be queried\n"
 msgstr "källpaket i gammalt format går inte att fråga om\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "inga paket matchar %s: %s\n"
@@ -2264,17 +2264,17 @@ msgstr "paketpost nummer: %u\n"
 msgid "record %u could not be read\n"
 msgstr "post %u kunde inte läsas\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "paket %s är inte installerat\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "felaktig db-fil %s\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s JA (lade till tillhandahållande)\n"
@@ -2384,86 +2384,86 @@ msgstr "F
 msgid "Preparing packages for installation..."
 msgstr "Förbereder paket för installation ..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, 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:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr " ... som %s\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "hoppar över %s - överföring misslyckades - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "paket %s är inte relokerbart\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "fel vid läsning från fil %s\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, 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:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s kan inte installeras\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "hittade %d käll- och %d binärpaket\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "ouppfyllda beroenden:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "installerar binärpaket\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "kan inte öppna filen %s: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" anger flera paket\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "att ta bort dessa paket skulle göra sönder beroenden:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "kan inte öppna %s: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "Installerar %s\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, fuzzy, c-format
 msgid "rollback %d packages to %s"
 msgstr "återställer (+%d,-%d) paket till %s"
@@ -2624,26 +2624,26 @@ msgstr "arkitektur saknas f
 msgid "bad option '%s' at %s:%d\n"
 msgstr "okänd flagga \"%s\" vid %s:%d\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Okänt system: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Var vänlig kontakta rpm-list@redhat.com\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "Kan inte expandera %s\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "Kan inte läsa %s, HOME är för stor.\n"
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "Kan inte öppna %s för läsning: %s.\n"
@@ -2654,7 +2654,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "kan inte öppna paketdatabas i %s\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2805,17 +2805,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "%s överhoppad på grund av missingok-flagga\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "hoppar över katalogen %s\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "saknas     %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "Ouppfyllda beroenden för %s-%s-%s: "
@@ -3325,37 +3325,37 @@ msgstr "varning: "
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "minnesallokering (%u byte) returnerade NULL.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "varning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "varning: u %p data %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "varning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "Lösenord för %s@%s: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "fel: %s-port måste vara ett tal\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "url-port måste vara ett tal\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "kunde inte skapa %s: %s\n"
index a0896da26de5d5ea67931dd3775064a2d76b67d3..5eca9cf06fed7b88e74575603dae73a416a7be79 100644 (file)
--- a/po/tr.po
+++ b/po/tr.po
@@ -1,7 +1,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-0400\n"
 "PO-Revision-Date: 2001-07-05 08:02+300\n"
 "Last-Translator: Nilgun Belma Buguner <nilgun@technologist.com>\n"
 "Language-Team: Turkish <tr@li.org>\n"
@@ -115,7 +115,7 @@ msgstr "<kmt>"
 msgid "use <dir> as the top level directory"
 msgstr "Üst düzey dizin olarak <dizin> kullanýlýr"
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr "<dizin>"
 
@@ -838,7 +838,7 @@ msgstr "%s'den ba
 msgid "Could not open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr "paket yazýlamadý: %s\n"
@@ -868,7 +868,7 @@ msgstr "%s'den payload okunamad
 msgid "Unable to write payload to %s: %s\n"
 msgstr "%s'e payload yazýlamadý: %s\n"
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr "Yazýldý: %s\n"
@@ -1525,7 +1525,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr "(bir sayý deðil)"
 
@@ -1558,7 +1558,7 @@ msgstr "mntctl() sonu
 msgid "failed to stat %s: %s\n"
 msgstr "stat %s baþarýsýz: %s\n"
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
@@ -1613,7 +1613,7 @@ msgstr "%s / %s ba
 msgid "%s created as %s\n"
 msgstr "%s %s olarak oluþturuldu\n"
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr "%s geçici dosyasý oluþturulurken hata\n"
@@ -1659,36 +1659,36 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr "%s: Fread baþarýsýz: %s\n"
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr "dýþlanan dosya yolu / ile baþlamalý"
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr "yeniden konumlandýrma iþlemleri / ile baþlamalý"
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr "yeniden konumlandýrma iþlemleri = içermelidir"
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr "yeniden konumlandýrma için = den sonra bir / gerekir"
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 #, fuzzy
 msgid "malformed rollback time/date stamp argument"
 msgstr "tekrarlama zamaný bozuk"
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr "yapýlandýrmalarda atlanmýþ bile olsa tüm dosyalarý kurar"
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
@@ -1696,148 +1696,148 @@ msgstr ""
 "<paket> ile eþlenen tüm paketleri kaldýrýr(<paket> ile çok sayýda paket "
 "belirtilmiþse normalde bir hata oluþur)"
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr "paket betikleri çalýþtýrýlmaz"
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr "yeniden konumlanamayan paketin dosyalarýný yeniden konumlandýrýr"
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 "ismi deðiþtirilerek alt dizine kaydedilmek suretiyle silinen dosyalarý "
 "kaydeder"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr "paketi kaldýrýr"
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr "<paket>+"
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr "belgeleri kurmaz"
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr "<dosyayolu> ile baþlayan dosyalarý atlar "
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr "<dosyaYolu>"
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr "--replacepkgs --replacefiles için kýsaltma"
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr "paket(ler) kurulu ise paket(ler)i günceller"
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr "<paketDosyasý>+"
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr "paketin kurulma sürecini gösteren imler basar (-v ile)"
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr "paket mimarisi denetlenmez"
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr "paketin ait olduðu iþletim sistemini doðrulamaz"
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr "yüklemeden önce yeterli disk alaný kontrolu yapmaz"
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr "paket ile gelen belgeleri kurar"
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 #, fuzzy
 msgid "install package(s)"
 msgstr "paketi kurar"
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr "veri tabanýný günceller, ama dosya sistemini deðiþtirmez"
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr "paket baðýmlýlýklarýný denetlemez"
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr "paket kurulum sýrasýný baðýmlýlýklara göre düzenlemez"
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr "%%pre betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr "%%post betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr "%%preun betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr "%%postun betiði (varsa) çalýþtýrýlmaz"
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 #, fuzzy
 msgid "don't verify package digest(s)"
 msgstr "paket baðýmlýlýklarý doðrulanmaz"
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 #, fuzzy
 msgid "don't verify package signature(s)"
 msgstr "paket imzasýný denetler"
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr "bu paket tarafýndan tetiklenen hiç bir betik çalýþtýrýlmaz"
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr "hiçbir %%triggerprein betiði çalýþtýrýlmaz"
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr "hiçbir %%triggerin betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr "hiçbir %%triggerun betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr "hiçbir %%triggerpostun betiði çalýþtýrýlmaz."
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
@@ -1845,49 +1845,49 @@ msgstr ""
 "paketin eski bir sürüme güncellenmesini saðlar (--force ayný iþi otomatik "
 "yapar)"
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr "kurulumun geliþimi yüzde olarak gösterilir"
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr "eðer deðitirilebiliyorsa paketin yerini <dizin>'e deðiþtirir"
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr "dosyalarý <eski> dizininden kaldýrýp <yeni> dizinine yerleþtirir"
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr "<eski>=<yeni>"
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr "yeniden paketleme sýrasýnda silinen paket dosyalarýný kaydeder"
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr "paket dosyalarý mevcut dosyalarla yer deðiþtirse bile paketi kurar"
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr "paketi yeniden kurar"
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 #, fuzzy
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 "yeni paket(ler) kaldýrýlýr, geriye dönük eski paket(ler) yeniden kurulur"
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr "<tarih>"
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr "yükleme yapmaz, sadece çalýþýp çalýþmayacaðýný belirtir"
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr "paket günceller"
 
@@ -2098,79 +2098,79 @@ msgstr "imza 
 msgid "Data type %d not supported\n"
 msgstr "%d veri türü desteklenmiyor\n"
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr "%%%s dosyasý oluþturulamýyor: %s\n"
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr "%%%s dosyasýna yazýlamaz %s\n"
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr "kaynak paketi gerekirken çalýþtýrýlabilir paketi bulundu\n"
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr "kaynak paketi .spec dosyasý içermiyor\n"
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, fuzzy, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr "%s: %s betiði çalýþtýrýlýyor (varsa)\n"
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, waitpid sonucu %s\n"
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr "%s betiðinin %s-%s-%s'den icrasý baþarýsýz, çýkýþta durum %d\n"
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, fuzzy, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr "%s: %s-%s-%s %d dosya içeriyor, test = %d\n"
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, fuzzy, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr "%s: %s betiði baþarýsýz (%d), %s-%s-%s atlanýyor\n"
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr "kullanýcý %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr "grup %s yok - root kullanýlacak\n"
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr "arþiv paketi açýlýrken baþarýsýz%s%s: %s\n"
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr " dosyada "
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, fuzzy, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, fuzzy, c-format
 msgid "%s failed: %s\n"
 msgstr "%s baþarýsýz\n"
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr "biçem yanlýþ: %s\n"
@@ -2213,8 +2213,8 @@ msgstr "paket ne dosya sahibi ne de kimlik listesi i
 msgid "can't query %s: %s\n"
 msgstr "%s sorgulanamýyor: %s\n"
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr "%s açýlamadý: %s\n"
@@ -2228,7 +2228,7 @@ msgstr "%s 'nin sorgulamas
 msgid "old format source packages cannot be queried\n"
 msgstr "eski biçem kaynak paketleri sorgulanamaz\n"
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, fuzzy, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr "%s tetikleyen paket yok\n"
@@ -2297,17 +2297,17 @@ msgstr "paket kay
 msgid "record %u could not be read\n"
 msgstr "%u. kayýt okunamadý\n"
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr "%s paketi kurulu deðil\n"
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 #, fuzzy
 msgid "(added files)"
 msgstr "db dosyasý %s hatalý\n"
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 #, fuzzy
 msgid "(added provide)"
 msgstr "%s: %-45s EVET (önlem eklendi)\n"
@@ -2417,86 +2417,86 @@ msgstr "Haz
 msgid "Preparing packages for installation..."
 msgstr "Kurulacak paketler hazýrlanýyor..."
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, 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:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr "... %s olarak\n"
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr "%s atlanýyor - aktarým baþarýsýz - %s\n"
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr "%s paketi yeniden konumlandýrýlamaz\n"
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr "%s dosyasýndan okuma hatalý\n"
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr "%s dosyasý RPM'nin daha yeni bir sürümünü gerektiriyor\n"
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr "%s yüklenemedi\n"
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr "%d kaynak ve %d icra edilebilir paketi bulundu\n"
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 #, fuzzy
 msgid "Failed dependencies:\n"
 msgstr "baðýmlýlýklarda hata; gerekli paketler:\n"
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr "icra edilebilir paketleri kuruluyor\n"
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr "%s dosyasý açýlamadý: %s\n"
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr "\"%s\" birden fazla paketi tanýmlýyor\n"
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr "bu paketin silinmesi aþaðýdakilerin baðýmlýlýklarýný etkileyecektir:\n"
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr "%s açýlamadý: %s\n"
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr "%s kuruluyor\n"
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2657,26 +2657,26 @@ msgstr "%s i
 msgid "bad option '%s' at %s:%d\n"
 msgstr "seçenek '%s' (%s:%d) de hatalý\n"
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr "Bilinmeyen sistem: %s\n"
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr "Lütfen rpm-list@redhat.com listesine üye olun\n"
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr "%s geniþletilemiyor\n"
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr "%s okunamýyor, EV çok büyük\n"
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr "%s okuma eriþimi için açýlamadý: %s.\n"
@@ -2687,7 +2687,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr "%s de Paket veritabaný açýlamadý\n"
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr "baðlý dosya sistemlerinin listesi alýnýyor\n"
 
@@ -2836,17 +2836,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr "missingok flamasýndan dolayý %s atlandý\n"
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr "%s dizini dýþlanýyor\n"
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr "eksik      %s"
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, fuzzy, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr "%s-%s-%s için tatmin edici olmayan baðýmlýlýklar: "
@@ -3358,37 +3358,37 @@ msgstr "uyar
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr "bellek ayrýlýrken (%u bayt) NULL döndü.\n"
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr "uyarý: u %p ctrl %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr "uyarý: u %p veri %p nrefs != 0 (%s %s)\n"
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, fuzzy, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr "uyarý: uCache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr "%s@%s için parola: "
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr "hata: %sport bir sayý olmalý\n"
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr "url portu bir sayý olmalý\n"
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr "%s oluþturulamadý: %s\n"
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/uk.po
+++ b/po/uk.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/wa.po
+++ b/po/wa.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
--- a/po/zh.po
+++ b/po/zh.po
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index ff81a26116a838a38dbbfa6150a51f0df3c3a609..21f7f9b402c58bcf9cd478464fdd378c175cf9c0 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: rpm 4.0.3\n"
-"POT-Creation-Date: 2002-06-15 10:10-0400\n"
+"POT-Creation-Date: 2002-06-19 19:58-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"
@@ -118,7 +118,7 @@ msgstr ""
 msgid "use <dir> as the top level directory"
 msgstr ""
 
-#: rpmqv.c:129 lib/poptI.c:215
+#: rpmqv.c:129 lib/poptI.c:217
 msgid "<dir>"
 msgstr ""
 
@@ -815,7 +815,7 @@ msgstr ""
 msgid "Could not open %s: %s\n"
 msgstr ""
 
-#: build/pack.c:627 lib/psm.c:1463
+#: build/pack.c:627 lib/psm.c:1465
 #, c-format
 msgid "Unable to write package: %s\n"
 msgstr ""
@@ -845,7 +845,7 @@ msgstr ""
 msgid "Unable to write payload to %s: %s\n"
 msgstr ""
 
-#: build/pack.c:708 lib/psm.c:1753
+#: build/pack.c:708 lib/psm.c:1755
 #, c-format
 msgid "Wrote: %s\n"
 msgstr ""
@@ -1479,7 +1479,7 @@ msgid "rpmtsOrder failed, %d elements remain\n"
 msgstr ""
 
 #: lib/formats.c:30 lib/formats.c:55 lib/formats.c:87 lib/formats.c:291
-#: rpmdb/header.c:2990 rpmdb/header.c:3011 rpmdb/header.c:3033
+#: rpmdb/header.c:3000 rpmdb/header.c:3021 rpmdb/header.c:3043
 msgid "(not a number)"
 msgstr ""
 
@@ -1510,7 +1510,7 @@ msgstr ""
 msgid "failed to stat %s: %s\n"
 msgstr ""
 
-#: lib/fs.c:153 rpmio/url.c:508
+#: lib/fs.c:153 rpmio/url.c:512
 #, c-format
 msgid "failed to open %s: %s\n"
 msgstr ""
@@ -1564,7 +1564,7 @@ msgstr ""
 msgid "%s created as %s\n"
 msgstr ""
 
-#: lib/misc.c:206 lib/misc.c:211 lib/misc.c:217
+#: lib/misc.c:208 lib/misc.c:213 lib/misc.c:219
 #, c-format
 msgid "error creating temporary file %s\n"
 msgstr ""
@@ -1608,223 +1608,223 @@ msgstr ""
 msgid "%s: Fread failed: %s\n"
 msgstr ""
 
-#: lib/poptI.c:49
+#: lib/poptI.c:50
 msgid "exclude paths must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:61
+#: lib/poptI.c:62
 msgid "relocations must begin with a /"
 msgstr ""
 
-#: lib/poptI.c:63
+#: lib/poptI.c:64
 msgid "relocations must contain a ="
 msgstr ""
 
-#: lib/poptI.c:66
+#: lib/poptI.c:67
 msgid "relocations must have a / following the ="
 msgstr ""
 
-#: lib/poptI.c:80
+#: lib/poptI.c:81
 msgid "rollback takes a time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:87
+#: lib/poptI.c:88
 msgid "malformed rollback time/date stamp argument"
 msgstr ""
 
-#: lib/poptI.c:106
+#: lib/poptI.c:108
 msgid "install all files, even configurations which might otherwise be skipped"
 msgstr ""
 
-#: lib/poptI.c:110
+#: lib/poptI.c:112
 msgid ""
 "remove all packages which match <package> (normally an error is generated if "
 "<package> specified multiple packages)"
 msgstr ""
 
-#: lib/poptI.c:116 lib/poptI.c:171
+#: lib/poptI.c:118 lib/poptI.c:173
 msgid "do not execute package scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:120
+#: lib/poptI.c:122
 msgid "relocate files in non-relocateable package"
 msgstr ""
 
-#: lib/poptI.c:123
+#: lib/poptI.c:125
 msgid "save erased package files by renaming into sub-directory"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "erase (uninstall) package"
 msgstr ""
 
-#: lib/poptI.c:126
+#: lib/poptI.c:128
 msgid "<package>+"
 msgstr ""
 
-#: lib/poptI.c:129
+#: lib/poptI.c:131
 msgid "do not install documentation"
 msgstr ""
 
-#: lib/poptI.c:131
+#: lib/poptI.c:133
 msgid "skip files with leading component <path> "
 msgstr ""
 
-#: lib/poptI.c:132
+#: lib/poptI.c:134
 msgid "<path>"
 msgstr ""
 
-#: lib/poptI.c:135
+#: lib/poptI.c:137
 msgid "short hand for --replacepkgs --replacefiles"
 msgstr ""
 
-#: lib/poptI.c:138
+#: lib/poptI.c:140
 msgid "upgrade package(s) if already installed"
 msgstr ""
 
-#: lib/poptI.c:139 lib/poptI.c:155 lib/poptI.c:236
+#: lib/poptI.c:141 lib/poptI.c:157 lib/poptI.c:238
 msgid "<packagefile>+"
 msgstr ""
 
-#: lib/poptI.c:141
+#: lib/poptI.c:143
 msgid "print hash marks as package installs (good with -v)"
 msgstr ""
 
-#: lib/poptI.c:144
+#: lib/poptI.c:146
 msgid "don't verify package architecture"
 msgstr ""
 
-#: lib/poptI.c:147
+#: lib/poptI.c:149
 msgid "don't verify package operating system"
 msgstr ""
 
-#: lib/poptI.c:150
+#: lib/poptI.c:152
 msgid "don't check disk space before installing"
 msgstr ""
 
-#: lib/poptI.c:152
+#: lib/poptI.c:154
 msgid "install documentation"
 msgstr ""
 
-#: lib/poptI.c:155
+#: lib/poptI.c:157
 msgid "install package(s)"
 msgstr ""
 
-#: lib/poptI.c:157
+#: lib/poptI.c:159
 msgid "update the database, but do not modify the filesystem"
 msgstr ""
 
-#: lib/poptI.c:159
+#: lib/poptI.c:161
 msgid "do not verify package dependencies"
 msgstr ""
 
-#: lib/poptI.c:162
+#: lib/poptI.c:164
 msgid "do not reorder package installation to satisfy dependencies"
 msgstr ""
 
-#: lib/poptI.c:167
+#: lib/poptI.c:169
 msgid "do not suggest missing dependency resolution(s)"
 msgstr ""
 
-#: lib/poptI.c:174
+#: lib/poptI.c:176
 #, c-format
 msgid "do not execute %%pre scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:177
+#: lib/poptI.c:179
 #, c-format
 msgid "do not execute %%post scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:180
+#: lib/poptI.c:182
 #, c-format
 msgid "do not execute %%preun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:183
+#: lib/poptI.c:185
 #, c-format
 msgid "do not execute %%postun scriptlet (if any)"
 msgstr ""
 
-#: lib/poptI.c:186 lib/poptQV.c:272 lib/poptQV.c:309
+#: lib/poptI.c:188 lib/poptQV.c:272 lib/poptQV.c:309
 msgid "don't verify package digest(s)"
 msgstr ""
 
-#: lib/poptI.c:188 lib/poptQV.c:275 lib/poptQV.c:311
+#: lib/poptI.c:190 lib/poptQV.c:275 lib/poptQV.c:311
 msgid "don't verify package signature(s)"
 msgstr ""
 
-#: lib/poptI.c:192
+#: lib/poptI.c:194
 msgid "do not execute any scriptlet(s) triggered by this package"
 msgstr ""
 
-#: lib/poptI.c:195
+#: lib/poptI.c:197
 #, c-format
 msgid "do not execute any %%triggerprein scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:198
+#: lib/poptI.c:200
 #, c-format
 msgid "do not execute any %%triggerin scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:201
+#: lib/poptI.c:203
 #, c-format
 msgid "do not execute any %%triggerun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:204
+#: lib/poptI.c:206
 #, c-format
 msgid "do not execute any %%triggerpostun scriptlet(s)"
 msgstr ""
 
-#: lib/poptI.c:208
+#: lib/poptI.c:210
 msgid ""
 "upgrade to an old version of the package (--force on upgrades does this "
 "automatically)"
 msgstr ""
 
-#: lib/poptI.c:212
+#: lib/poptI.c:214
 msgid "print percentages as package installs"
 msgstr ""
 
-#: lib/poptI.c:214
+#: lib/poptI.c:216
 msgid "relocate the package to <dir>, if relocatable"
 msgstr ""
 
-#: lib/poptI.c:217
+#: lib/poptI.c:219
 msgid "relocate files from path <old> to <new>"
 msgstr ""
 
-#: lib/poptI.c:218
+#: lib/poptI.c:220
 msgid "<old>=<new>"
 msgstr ""
 
-#: lib/poptI.c:221
+#: lib/poptI.c:223
 msgid "save erased package files by repackaging"
 msgstr ""
 
-#: lib/poptI.c:224
+#: lib/poptI.c:226
 msgid "install even if the package replaces installed files"
 msgstr ""
 
-#: lib/poptI.c:227
+#: lib/poptI.c:229
 msgid "reinstall if the package is already present"
 msgstr ""
 
-#: lib/poptI.c:229
+#: lib/poptI.c:231
 msgid "deinstall new, reinstall old, package(s), back to <date>"
 msgstr ""
 
-#: lib/poptI.c:230
+#: lib/poptI.c:232
 msgid "<date>"
 msgstr ""
 
-#: lib/poptI.c:232
+#: lib/poptI.c:234
 msgid "don't install, but tell if it would work or not"
 msgstr ""
 
-#: lib/poptI.c:235
+#: lib/poptI.c:237
 msgid "upgrade package(s)"
 msgstr ""
 
@@ -2021,79 +2021,79 @@ msgstr ""
 msgid "Data type %d not supported\n"
 msgstr ""
 
-#: lib/psm.c:455
+#: lib/psm.c:457
 #, c-format
 msgid "cannot create %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:461
+#: lib/psm.c:463
 #, c-format
 msgid "cannot write to %%%s %s\n"
 msgstr ""
 
-#: lib/psm.c:492
+#: lib/psm.c:494
 msgid "source package expected, binary found\n"
 msgstr ""
 
-#: lib/psm.c:611
+#: lib/psm.c:613
 msgid "source package contains no .spec file\n"
 msgstr ""
 
-#: lib/psm.c:731
+#: lib/psm.c:733
 #, c-format
 msgid "%s: running %s scriptlet\n"
 msgstr ""
 
-#: lib/psm.c:901
+#: lib/psm.c:903
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, waitpid returned %s\n"
 msgstr ""
 
-#: lib/psm.c:908
+#: lib/psm.c:910
 #, c-format
 msgid "execution of %s scriptlet from %s-%s-%s failed, exit status %d\n"
 msgstr ""
 
-#: lib/psm.c:1248
+#: lib/psm.c:1250
 #, c-format
 msgid "%s: %s has %d files, test = %d\n"
 msgstr ""
 
-#: lib/psm.c:1370
+#: lib/psm.c:1372
 #, c-format
 msgid "%s: %s scriptlet failed (%d), skipping %s\n"
 msgstr ""
 
-#: lib/psm.c:1514
+#: lib/psm.c:1516
 #, c-format
 msgid "user %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1523
+#: lib/psm.c:1525
 #, c-format
 msgid "group %s does not exist - using root\n"
 msgstr ""
 
-#: lib/psm.c:1565
+#: lib/psm.c:1567
 #, c-format
 msgid "unpacking of archive failed%s%s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1566
+#: lib/psm.c:1568
 msgid " on file "
 msgstr ""
 
-#: lib/psm.c:1761
+#: lib/psm.c:1763
 #, c-format
 msgid "%s failed on file %s: %s\n"
 msgstr ""
 
-#: lib/psm.c:1764
+#: lib/psm.c:1766
 #, c-format
 msgid "%s failed: %s\n"
 msgstr ""
 
-#: lib/query.c:127 lib/rpmts.c:264
+#: lib/query.c:127 lib/rpmts.c:265
 #, c-format
 msgid "incorrect format: %s\n"
 msgstr ""
@@ -2136,8 +2136,8 @@ msgstr ""
 msgid "can't query %s: %s\n"
 msgstr ""
 
-#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:363 lib/rpminstall.c:500
-#: lib/rpminstall.c:884
+#: lib/query.c:620 lib/query.c:654 lib/rpminstall.c:364 lib/rpminstall.c:501
+#: lib/rpminstall.c:886
 #, c-format
 msgid "open of %s failed: %s\n"
 msgstr ""
@@ -2151,7 +2151,7 @@ msgstr ""
 msgid "old format source packages cannot be queried\n"
 msgstr ""
 
-#: lib/query.c:664 lib/rpminstall.c:513
+#: lib/query.c:664 lib/rpminstall.c:514
 #, c-format
 msgid "%s: not a package manifest: %s\n"
 msgstr ""
@@ -2220,16 +2220,16 @@ msgstr ""
 msgid "record %u could not be read\n"
 msgstr ""
 
-#: lib/query.c:962 lib/rpminstall.c:672
+#: lib/query.c:962 lib/rpminstall.c:674
 #, c-format
 msgid "package %s is not installed\n"
 msgstr ""
 
-#: lib/rpmal.c:688
+#: lib/rpmal.c:690
 msgid "(added files)"
 msgstr ""
 
-#: lib/rpmal.c:765
+#: lib/rpmal.c:767
 msgid "(added provide)"
 msgstr ""
 
@@ -2336,85 +2336,85 @@ msgstr ""
 msgid "Preparing packages for installation..."
 msgstr ""
 
-#: lib/rpminstall.c:310
+#: lib/rpminstall.c:311
 #, c-format
 msgid "Retrieving %s\n"
 msgstr ""
 
 #. XXX undefined %{name}/%{version}/%{release} here
 #. XXX %{_tmpdir} does not exist
-#: lib/rpminstall.c:323
+#: lib/rpminstall.c:324
 #, c-format
 msgid " ... as %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:327
+#: lib/rpminstall.c:328
 #, c-format
 msgid "skipping %s - transfer failed - %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:424
+#: lib/rpminstall.c:425
 #, c-format
 msgid "package %s is not relocateable\n"
 msgstr ""
 
-#: lib/rpminstall.c:474
+#: lib/rpminstall.c:475
 #, c-format
 msgid "error reading from file %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:480
+#: lib/rpminstall.c:481
 #, c-format
 msgid "file %s requires a newer version of RPM\n"
 msgstr ""
 
-#: lib/rpminstall.c:492 lib/rpminstall.c:740
+#: lib/rpminstall.c:493 lib/rpminstall.c:742
 #, c-format
 msgid "%s cannot be installed\n"
 msgstr ""
 
-#: lib/rpminstall.c:528
+#: lib/rpminstall.c:529
 #, c-format
 msgid "found %d source and %d binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:542 lib/rpminstall.c:1071
+#: lib/rpminstall.c:543 lib/rpminstall.c:1073
 msgid "Failed dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:549
+#: lib/rpminstall.c:550
 msgid "    Suggested resolutions:\n"
 msgstr ""
 
-#: lib/rpminstall.c:579
+#: lib/rpminstall.c:580
 msgid "installing binary packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:600
+#: lib/rpminstall.c:601
 #, c-format
 msgid "cannot open file %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:675
+#: lib/rpminstall.c:677
 #, c-format
 msgid "\"%s\" specifies multiple packages\n"
 msgstr ""
 
-#: lib/rpminstall.c:700
+#: lib/rpminstall.c:702
 msgid "removing these packages would break dependencies:\n"
 msgstr ""
 
-#: lib/rpminstall.c:727
+#: lib/rpminstall.c:729
 #, c-format
 msgid "cannot open %s: %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:733
+#: lib/rpminstall.c:735
 #, c-format
 msgid "Installing %s\n"
 msgstr ""
 
-#: lib/rpminstall.c:1065
+#: lib/rpminstall.c:1067
 #, c-format
 msgid "rollback %d packages to %s"
 msgstr ""
@@ -2573,26 +2573,26 @@ msgstr ""
 msgid "bad option '%s' at %s:%d\n"
 msgstr ""
 
-#: lib/rpmrc.c:1521
+#: lib/rpmrc.c:1523
 #, c-format
 msgid "Unknown system: %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1522
+#: lib/rpmrc.c:1524
 msgid "Please contact rpm-list@redhat.com\n"
 msgstr ""
 
-#: lib/rpmrc.c:1747
+#: lib/rpmrc.c:1749
 #, c-format
 msgid "Cannot expand %s\n"
 msgstr ""
 
-#: lib/rpmrc.c:1752
+#: lib/rpmrc.c:1754
 #, c-format
 msgid "Cannot read %s, HOME is too large.\n"
 msgstr ""
 
-#: lib/rpmrc.c:1769
+#: lib/rpmrc.c:1771
 #, c-format
 msgid "Unable to open %s for reading: %s.\n"
 msgstr ""
@@ -2603,7 +2603,7 @@ msgid "cannot open Packages database in %s\n"
 msgstr ""
 
 #. Get available space on mounted file systems.
-#: lib/rpmts.c:561
+#: lib/rpmts.c:563
 msgid "getting list of mounted filesystems\n"
 msgstr ""
 
@@ -2748,17 +2748,17 @@ msgid "%s skipped due to missingok flag\n"
 msgstr ""
 
 #. @innercontinue@
-#: lib/transaction.c:894
+#: lib/transaction.c:895
 #, c-format
 msgid "excluding directory %s\n"
 msgstr ""
 
-#: lib/verify.c:285
+#: lib/verify.c:288
 #, c-format
 msgid "missing    %s"
 msgstr ""
 
-#: lib/verify.c:383
+#: lib/verify.c:386
 #, c-format
 msgid "Unsatisifed dependencies for %s: "
 msgstr ""
@@ -3268,37 +3268,37 @@ msgstr ""
 msgid "memory alloc (%u bytes) returned NULL.\n"
 msgstr ""
 
-#: rpmio/url.c:118
+#: rpmio/url.c:122
 #, c-format
 msgid "warning: u %p ctrl %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:138
+#: rpmio/url.c:142
 #, c-format
 msgid "warning: u %p data %p nrefs != 0 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:166
+#: rpmio/url.c:170
 #, c-format
 msgid "warning: _url_cache[%d] %p nrefs(%d) != 1 (%s %s)\n"
 msgstr ""
 
-#: rpmio/url.c:262
+#: rpmio/url.c:266
 #, c-format
 msgid "Password for %s@%s: "
 msgstr ""
 
-#: rpmio/url.c:287 rpmio/url.c:313
+#: rpmio/url.c:291 rpmio/url.c:317
 #, c-format
 msgid "error: %sport must be a number\n"
 msgstr ""
 
-#: rpmio/url.c:462
+#: rpmio/url.c:466
 msgid "url port must be a number\n"
 msgstr ""
 
 #. XXX Fstrerror
-#: rpmio/url.c:528
+#: rpmio/url.c:532
 #, c-format
 msgid "failed to create %s: %s\n"
 msgstr ""
index 426f2ddc6d2d4b92648f13766f1fc3ffb1ba0cbf..088126ea76870744570e17be9759938fcf9d79ab 100644 (file)
@@ -149,6 +149,9 @@ WITH_APIDOCS_TARGET = @WITH_APIDOCS_TARGET@
 WITH_BZIP2 = @WITH_BZIP2@
 WITH_DB_SUBDIR = @WITH_DB_SUBDIR@
 WITH_INTERNAL_DB = @WITH_INTERNAL_DB@
+WITH_LIBELF_INCLUDE = @WITH_LIBELF_INCLUDE@
+WITH_LIBELF_LIB = @WITH_LIBELF_LIB@
+WITH_LIBELF_SUBDIR = @WITH_LIBELF_SUBDIR@
 WITH_PYTHON_SUBDIR = @WITH_PYTHON_SUBDIR@
 WITH_PYTHON_SUBPACKAGE = @WITH_PYTHON_SUBPACKAGE@
 WITH_PYTHON_VERSION = @WITH_PYTHON_VERSION@
index 74238c7de314203024b6fc872446b96c3b26b447..4ecb4adbfd4d13f35d2c02f952c1fd38df058d9f 100644 (file)
@@ -230,7 +230,7 @@ static PyObject * hdrVerifyFile(hdrObject * s, PyObject * args)
                     &count);
        }
 
-       if (domd5(s->fileList[fileNumber], buf, 1)) {
+       if (domd5(s->fileList[fileNumber], buf, 1, NULL)) {
            strcpy(buf, "00000000000000000000000000000000");
        }
 
index 0f9075d0d5cefadc2cf5625e4468a7fa282dd7d3..48e277652e6803257213e75d575ef63f885d24ca 100644 (file)
@@ -17,7 +17,7 @@ Name: rpm
 %define version @VERSION@
 Version: %{version}
 %{expand: %%define rpm_version %{version}}
-Release: 0.27
+Release: 0.28
 Group: System Environment/Base
 Source: ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/rpm-%{rpm_version}.tar.gz
 Copyright: GPL
@@ -519,6 +519,10 @@ fi
 %{__prefix}/include/popt.h
 
 %changelog
+* Wed Jun 19 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.28
+- make sure that rpm can verify prelinked shared libraries.
+- don't install /usr/lib/rpm/redhat per-vendor configuration anymore.
+
 * Sat Jun 15 2002 Jeff Johnson <jbj@redhat.com> 4.1-0.27
 - beecrypt: merge changes from beecrypt-2.3.0.
 - beecrypt: merge doxygen markup with rpmapi doco.
index 50e579178c890281408b95dbbc514734b7eea07b..9e585219f675002527b9bc9e7a05e3904bee9278 100644 (file)
@@ -8,6 +8,7 @@ INCLUDES = -I. \
        -I$(top_srcdir)/rpmio \
        -I$(top_srcdir)/beecrypt \
        -I$(top_srcdir)/popt \
+       @WITH_LIBELF_INCLUDE@ \
        @INCPATH@
 
 EXTRA_DIST = db3.c
@@ -27,7 +28,7 @@ mylibpaths = \
        -L$(top_builddir)/rpmio \
        -L$(top_builddir)/popt
 
-mylibs = -lrpm -lrpmio -lpopt @LIBS@ @INTLLIBS@ @LIBMISC@
+mylibs = -lrpm -lrpmio -lpopt @WITH_LIBELF_LIB@ @LIBS@ @INTLLIBS@ @LIBMISC@
 LIBS =
 
 DB3LOBJS = $(shell cat $(top_builddir)/$(WITH_DB_SUBDIR)/db3lobjs)
index d9e84e4d3e3767e5ef0e57d1ab191a5bfe046013..1607b452f5a67176e7e52b237605181ae0270648 100644 (file)
  */
 
 #include "system.h"
+
+#if HAVE_LIBELF_GELF_H
+#include <gelf.h>
+#define        DT_GNU_PRELINKED        0x6ffffdf5
+#endif
+
 #include "rpmio_internal.h"
 #include <rpmlib.h>
+#include <rpmmacro.h>
 #include "misc.h"
 #include "legacy.h"
 #include "debug.h"
 
 #define alloca_strdup(_s)      strcpy(alloca(strlen(_s)+1), (_s))
 
-int domd5(const char * fn, unsigned char * digest, int asAscii)
+/**
+ * Open a file descriptor to verify file MD5 and size.
+ * @param path         file path
+ * @retval pidp                prelink helper pid or 0
+ * @retval fsizep      file size
+ * @return             -1 on error, otherwise open file descriptor
+ */ 
+static int open_dso(const char * path, /*@null@*/ pid_t * pidp, /*@null@*/ size_t *fsizep)
+       /*@globals rpmGlobalMacroContext, fileSystem @*/
+       /*@modifies *pidp, *fsizep, rpmGlobalMacroContext, fileSystem @*/
+{
+    static const char * cmd = NULL;
+    static int initted = 0;
+    pid_t pid;
+    int fdno;
+
+    if (!initted) {
+       cmd = rpmExpand("%{?__prelink_undo_cmd}", NULL);
+       initted++;
+    }
+
+    if (pidp) *pidp = 0;
+
+    if (fsizep) {
+       struct stat sb, * st = &sb;
+       if (stat(path, st) < 0)
+           return -1;
+       *fsizep = st->st_size;
+    }
+
+    fdno = open(path, O_RDONLY);
+    if (fdno < 0)
+       return fdno;
+
+    if (!(cmd && *cmd))
+       return fdno;
+
+#if HAVE_LIBELF_GELF_H && HAVE_LIBELF
+ {  Elf *elf = NULL;
+    Elf_Scn *scn = NULL;
+    Elf_Data *data = NULL;
+    GElf_Ehdr ehdr;
+    GElf_Shdr shdr;
+    GElf_Dyn dyn;
+    int bingo;
+
+    elf_version(EV_CURRENT);
+
+    if ((elf = elf_begin (fdno, ELF_C_READ, NULL)) == NULL
+     || elf_kind(elf) != ELF_K_ELF
+     || gelf_getehdr(elf, &ehdr) == NULL
+     || !(ehdr.e_type == ET_DYN || ehdr.e_type == ET_EXEC))
+       goto exit;
+
+    bingo = 0;
+    while (!bingo && (scn = elf_nextscn(elf, scn)) != NULL) {
+       gelf_getshdr(scn, &shdr);
+       if (shdr.sh_type != SHT_DYNAMIC)
+           continue;
+       while (!bingo && (data = elf_getdata (scn, data)) != NULL) {
+           int maxndx = data->d_size / shdr.sh_entsize;
+           int ndx;
+
+            for (ndx = 0; ndx < maxndx; ++ndx) {
+               gelf_getdyn (data, ndx, &dyn);
+               if (dyn.d_tag != DT_GNU_PRELINKED)
+                   continue;
+               bingo = 1;
+               break;
+           }
+       }
+    }
+
+    if (bingo) {
+       int pipes[2];
+       int xx;
+
+       xx = close(fdno);
+       pipes[0] = pipes[1] = -1;
+       xx = pipe(pipes);
+       if (!(pid = fork())) {
+           const char ** av;
+           int ac;
+           xx = close(pipes[0]);
+           xx = dup2(pipes[1], STDOUT_FILENO);
+           xx = close(pipes[1]);
+           if (!poptParseArgvString(cmd, &ac, &av)) {
+               av[ac-1] = path;
+               av[ac] = NULL;
+               xx = execve(av[0], (char *const *)av+1, environ);
+           }
+           _exit(127);
+       }
+       *pidp = pid;
+       fdno = pipes[0];
+       xx = close(pipes[1]);
+    }
+
+exit:
+    if (elf) (void) elf_end(elf);
+ }
+#endif
+
+    return fdno;
+}
+
+int domd5(const char * fn, unsigned char * digest, int asAscii, size_t *fsizep)
 {
     const char * path;
+    urltype ut = urlPath(fn, &path);
     unsigned char * md5sum = NULL;
     size_t md5len;
+    unsigned char buf[32*BUFSIZ];
+    FD_t fd;
+    size_t fsize = 0;
+    pid_t pid = 0;
     int rc = 0;
+    int fdno;
+    int xx;
 
-    switch(urlPath(fn, &path)) {
+    fdno = open_dso(path, &pid, &fsize);
+    if (fdno < 0) {
+       rc = 1;
+       goto exit;
+    }
+
+    switch(ut) {
     case URL_IS_PATH:
     case URL_IS_UNKNOWN:
 #if HAVE_MMAP
-    {  struct stat sb, * st = &sb;
+      if (pid == 0) {
        DIGEST_CTX ctx;
        void * mapped;
-       int fdno;
-       int xx;
 
-       if (stat(path, st) < 0
-       || (fdno = open(path, O_RDONLY)) < 0)
-           return 1;
-       mapped = mmap(NULL, st->st_size, PROT_READ, MAP_SHARED, fdno, 0);
+       mapped = mmap(NULL, fsize, PROT_READ, MAP_SHARED, fdno, 0);
        if (mapped == (void *)-1) {
            xx = close(fdno);
-           return 1;
+           rc = 1;
+           break;
        }
 
 #ifdef MADV_SEQUENTIAL
-        xx = madvise(mapped, st->st_size, MADV_SEQUENTIAL);
+        xx = madvise(mapped, fsize, MADV_SEQUENTIAL);
 #endif
 
        ctx = rpmDigestInit(PGPHASHALGO_MD5, RPMDIGEST_NONE);
-       xx = rpmDigestUpdate(ctx, mapped, st->st_size);
+       xx = rpmDigestUpdate(ctx, mapped, fsize);
        xx = rpmDigestFinal(ctx, (void **)&md5sum, &md5len, asAscii);
-       xx = munmap(mapped, st->st_size);
+       xx = munmap(mapped, fsize);
        xx = close(fdno);
-
-    }  break;
+       break;
+      }        /*@fallthrough@*/
 #endif
     case URL_IS_FTP:
     case URL_IS_HTTP:
     case URL_IS_DASH:
     default:
-    {  FD_t fd;
-       unsigned char buf[32*BUFSIZ];
-
-       fd = Fopen(fn, "r.ufdio");
+       /* Either use the pipe to prelink -y or open the URL. */
+       fd = (pid != 0) ? fdDup(fdno) : Fopen(fn, "r.ufdio");
+       (void) close(fdno);
        if (fd == NULL || Ferror(fd)) {
+           rc = 1;
            if (fd != NULL)
                (void) Fclose(fd);
-           return 1;
+           break;
        }
-
+       
        fdInitDigest(fd, PGPHASHALGO_MD5, 0);
-
+       fsize = 0;
        while ((rc = Fread(buf, sizeof(buf[0]), sizeof(buf), fd)) > 0)
-           {};
+           fsize += rc;
        fdFiniDigest(fd, PGPHASHALGO_MD5, (void **)&md5sum, &md5len, asAscii);
-
        if (Ferror(fd))
            rc = 1;
+
        (void) Fclose(fd);
-    }  break;
+       break;
+    }
+
+    /* Reap the prelink -y helper. */
+    if (pid) {
+       int status;
+       (void) waitpid(pid, &status, 0);
+       if (!WIFEXITED(status) || WEXITSTATUS(status))
+           rc = 1;
     }
 
+exit:
+    if (fsizep)
+       *fsizep = fsize;
     if (!rc)
        memcpy(digest, md5sum, md5len);
     md5sum = _free(md5sum);
index d0c6ac9cc09f639195abe38b24b3c061fac9d572..fcf4e7c85cabbcaead1c633cb28e5912a853dff1 100644 (file)
@@ -18,48 +18,17 @@ extern "C" {
 #endif
 
 /**
- * Calculate MD5 sum for file.
- * @todo Eliminate, use beecrypt instead.
+ * Return MD5 sum and size of a file.
  * @param fn           file name
  * @retval digest      address of md5sum
  * @param asAscii      return md5sum as ascii string?
+ * @retval *fsizep     file size pointer (or NULL)
  * @return             0 on success, 1 on error
  */
-/*@-exportlocal@*/
-int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii)
+int domd5(const char * fn, /*@out@*/ unsigned char * digest, int asAscii,
+               /*@null@*/ /*@out@*/ size_t *fsizep)
        /*@globals fileSystem@*/
        /*@modifies digest, fileSystem @*/;
-/*@=exportlocal@*/
-
-/**
- * Return MD5 sum of file as ASCII string.
- * @todo Eliminate, use beecrypt instead.
- * @param fn           file name
- * @retval digest      MD5 digest
- * @return             0 on success, 1 on error
- */
-/*@unused@*/ static inline
-int mdfile(const char * fn, /*@out@*/ unsigned char * digest)
-       /*@globals fileSystem@*/
-       /*@modifies digest, fileSystem @*/
-{
-    return domd5(fn, digest, 1);
-}
-
-/**
- * Return MD5 sum of file as binary data.
- * @todo Eliminate, use beecrypt instead.
- * @param fn           file name
- * @retval bindigest   MD5 digest
- * @return             0 on success, 1 on error
- */
-/*@unused@*/ static inline
-int mdbinfile(const char * fn, /*@out@*/ unsigned char * bindigest)
-       /*@globals fileSystem@*/
-       /*@modifies bindigest, fileSystem @*/
-{
-    return domd5(fn, bindigest, 0);
-}
 
 /**
  * Convert absolute path tag to (dirname,basename,dirindex) tags.
index 9550ae0b8325b6c858422f9ffa41aad829a0853f..c7256d9fdecea82cc683bacc0d6f43854585c248 100644 (file)
--- a/rpmrc.in
+++ b/rpmrc.in
@@ -1,7 +1,7 @@
 #/*! \page config_rpmrc Default configuration: /usr/lib/rpm/rpmrc
 # \verbatim
 #
-# $Id: rpmrc.in,v 2.48 2002/05/21 16:33:33 jbj Exp $
+# $Id: rpmrc.in,v 2.49 2002/06/20 02:19:21 jbj Exp $
 #
 # This is a global RPM configuration file. All changes made here will
 # be lost when the rpm package is upgraded. Any per-system configuration
@@ -343,7 +343,7 @@ buildarch_compat: ia64: noarch
 buildarch_compat: s390: noarch
 buildarch_compat: s390x: noarch
 
-macrofiles:    @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.specspo:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
+macrofiles:    @RPMCONFIGDIR@/macros:@RPMCONFIGDIR@/%{_target}/macros:@SYSCONFIGDIR@/macros.specspo:@SYSCONFIGDIR@/macros.prelink:@SYSCONFIGDIR@/macros:@SYSCONFIGDIR@/%{_target}/macros:~/.rpmmacros
 
 # \endverbatim
 #*/
index ad9ce9f1b016b185dc199a602024ae089e805c26..e681ac02065ede69d28811f1557986c3d983f341 100644 (file)
@@ -23,6 +23,7 @@ LDADD = \
        $(top_builddir)/rpmdb/librpmdb.la \
        $(top_builddir)/rpmio/librpmio.la \
        $(top_builddir)/popt/libpopt.la \
+       @WITH_LIBELF_LIB@ \
        @INTLLIBS@
 
 noinst_PROGRAMS = \