summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--Makefile.am4
-rwxr-xr-xautogen.sh2
-rw-r--r--build/files.c2
-rw-r--r--configure.in27
-rwxr-xr-xinstallplatform18
-rw-r--r--lib/signature.c16
-rw-r--r--lib/transaction.c6
-rw-r--r--lib/verify.c5
-rwxr-xr-xlibelf/.cvsignore23
-rwxr-xr-xlibelf/Makefile.am11
-rwxr-xr-xlibelf/autogen.sh17
-rwxr-xr-xlibelf/lib/.cvsignore7
-rwxr-xr-xlibelf/lib/Makefile.am62
-rw-r--r--macros.in9
-rw-r--r--po/cs.po228
-rw-r--r--po/da.po228
-rw-r--r--po/de.po228
-rw-r--r--po/en_RN.po228
-rw-r--r--po/es.po228
-rw-r--r--po/eu_ES.po228
-rw-r--r--po/fi.po228
-rw-r--r--po/fr.po228
-rw-r--r--po/gl.po228
-rw-r--r--po/hu.po228
-rw-r--r--po/id.po228
-rw-r--r--po/is.po228
-rw-r--r--po/it.po228
-rw-r--r--po/ja.po228
-rw-r--r--po/ko.po228
-rw-r--r--po/no.po228
-rw-r--r--po/pl.po228
-rw-r--r--po/pt.po228
-rw-r--r--po/pt_BR.po228
-rw-r--r--po/ro.po228
-rw-r--r--po/rpm.pot228
-rw-r--r--po/ru.po228
-rw-r--r--po/sk.po228
-rw-r--r--po/sl.po230
-rw-r--r--po/sr.po228
-rw-r--r--po/sv.po228
-rw-r--r--po/tr.po228
-rw-r--r--po/uk.po228
-rw-r--r--po/wa.po228
-rw-r--r--po/zh.po228
-rw-r--r--po/zh_CN.GB2312.po228
-rw-r--r--python/Makefile.in3
-rw-r--r--python/header-py.c2
-rw-r--r--rpm.spec.in6
-rw-r--r--rpmdb/Makefile.am3
-rw-r--r--rpmdb/legacy.c183
-rw-r--r--rpmdb/legacy.h39
-rw-r--r--rpmrc.in4
-rw-r--r--tools/Makefile.am1
54 files changed, 3897 insertions, 3625 deletions
diff --git a/CHANGES b/CHANGES
index dc035e706..bd2162392 100644
--- a/CHANGES
+++ b/CHANGES
@@ -136,6 +136,8 @@
- 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).
diff --git a/Makefile.am b/Makefile.am
index 1e5cda7f8..bdf668b6d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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@
diff --git a/autogen.sh b/autogen.sh
index 6749736eb..a4aa0e0cf 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -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
diff --git a/build/files.c b/build/files.c
index b227700cc..8912bf2ba 100644
--- a/build/files.c
+++ b/build/files.c
@@ -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);
diff --git a/configure.in b/configure.in
index 0f9316dee..83961d7d8 100644
--- a/configure.in
+++ b/configure.in
@@ -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
diff --git a/installplatform b/installplatform
index 5c033fcc5..05a24c1af 100755
--- a/installplatform
+++ b/installplatform
@@ -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
diff --git a/lib/signature.c b/lib/signature.c
index df5d4fcbc..aeb72d7b2 100644
--- a/lib/signature.c
+++ b/lib/signature.c
@@ -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;
diff --git a/lib/transaction.c b/lib/transaction.c
index 906f84705..50f36001f 100644
--- a/lib/transaction.c
+++ b/lib/transaction.c
@@ -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;
}
diff --git a/lib/verify.c b/lib/verify.c
index 42652b6e2..9330810e4 100644
--- a/lib/verify.c
+++ b/lib/verify.c
@@ -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
index 000000000..29ea84237
--- /dev/null
+++ b/libelf/.cvsignore
@@ -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
index 000000000..7fb725c6a
--- /dev/null
+++ b/libelf/Makefile.am
@@ -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
index 000000000..60700bfff
--- /dev/null
+++ b/libelf/autogen.sh
@@ -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
index 000000000..e74f67161
--- /dev/null
+++ b/libelf/lib/.cvsignore
@@ -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
index 000000000..f23489c69
--- /dev/null
+++ b/libelf/lib/Makefile.am
@@ -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
diff --git a/macros.in b/macros.in
index 015779086..a3a29a588 100644
--- 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
@@ -490,6 +490,13 @@
# +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.
diff --git a/po/cs.po b/po/cs.po
index c76b7f54b..215e3fb30 100644
--- 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řík>"
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řečíst hlavičku z %s: %s\n"
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řečíst payload z %s: %s\n"
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átil přípojné body: %s\n"
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íček nemá vlastníka souboru ani seznamy id\n"
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řil\n"
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áznam balíčku číslo: %u\n"
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 "řádek %d: Špatný formát BuildArchitecture: %s\n"
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"
diff --git a/po/da.po b/po/da.po
index 91f4beed0..85c82df62 100644
--- 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ćse hoved fra %s: %s\n"
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ćse pakkeindhold fra %s: %s\n"
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 "ĺbning af %s mislykkedes %s\n"
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ér PGP/GPG-signatur"
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řrgsel af %s mislykkedes\n"
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"
diff --git a/po/de.po b/po/de.po
index 51395a9df..6ff58d530 100644
--- 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öglich %s zu schreiben"
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 "öffnen von %s fehlgeschlagen: %s\n"
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ültige Paket-Nummer: %s\n"
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ür %s bei %s:%d"
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"
diff --git a/po/en_RN.po b/po/en_RN.po
index ff81a2611..21f7f9b40 100644
--- a/po/en_RN.po
+++ b/po/en_RN.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 ""
diff --git a/po/es.po b/po/es.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/eu_ES.po b/po/eu_ES.po
index ff81a2611..21f7f9b40 100644
--- a/po/eu_ES.po
+++ b/po/eu_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 ""
diff --git a/po/fi.po b/po/fi.po
index 2c2992da7..b5559b22d 100644
--- 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"
diff --git a/po/fr.po b/po/fr.po
index c582e93c8..457767c72 100644
--- 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"
diff --git a/po/gl.po b/po/gl.po
index f3ac50ac7..2eab44399 100644
--- 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 ""
diff --git a/po/hu.po b/po/hu.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/id.po b/po/id.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/is.po b/po/is.po
index 636d9b4ea..7213b7b70 100644
--- 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đ haus úr %s: %s\n"
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đ innihald %s: %s\n"
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úa til undirskrift"
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đvörun: "
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"
diff --git a/po/it.po b/po/it.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/ja.po b/po/ja.po
index f6d526955..c78b15279 100644
--- 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 "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s"
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 "Ľ˘Ľ¤ĽłĽó¤ňĆɤळ¤Č¤Ź¤Ç¤­¤Ţ¤ť¤ó: %s"
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 ĽľĽ¤Ľş¤ňĘÖ¤š¤Î¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż: %s"
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 ¤ÎĽŞĄźĽ×Ľó¤ËźşÇÔ: %s\n"
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 "ĽŃĽĂĽąĄźĽ¸¤ĎĽŐĽĄĽ¤Ľë˝ęÍ­źÔ¤ä id ĽęĽšĽČ¤ň¤É¤Á¤é¤âťý¤Ă¤Ć¤¤¤Ţ¤ť¤ó"
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 ¤Ř¤ÎĚ䤤šç¤ď¤ť¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤ż\n"
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 "ĽŃĽĂĽąĄźĽ¸ĽěĽłĄźĽÉČÖšć %d\n"
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 ÍѤμ˘ĄźĽ­ĽĆĽŻĽÁĽă¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó %s:%d"
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"
diff --git a/po/ko.po b/po/ko.po
index bac87a867..4843f2eb0 100644
--- 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 "ź­¸í(signature) Çě´ő¸Ś ´Ů˝Ă ŔĐžîżĂ źö žř˝Ŕ´Ď´Ů.\n"
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ŔÇ payload¸Ś ŔĐŔť źö žřŔ˝: %s\n"
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()żĄź­ ¸śżîĆŽÇŇ ÁöÁĄŔť šÝČŻÇĎ´ÂľĽ ˝ÇĆĐÇÔ: %s\n"
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 ¸ľĹŠ ÇŘÁŚżĄ ˝ÇĆĐÇÔ: %s\n"
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 "ĆĐĹ°ÁöżĄ ĆÄŔĎ źŇŔŻŔÚ śÇ´Â id ¸ńˇĎŔĚ žř˝Ŕ´Ď´Ů\n"
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(Ŕť)¸Ś ÁúŔÇÇĎ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů\n"
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 "ĆĐĹ°Áö ąâˇĎ(record) šřČŁ: %u\n"
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żĄ %1$s(Ŕť)¸Ś Ŕ§ÇŃ žĆĹ°ĹŘĂÄ°Ą žřŔ˝:%3$d\n"
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"
diff --git a/po/no.po b/po/no.po
index 33d17eea3..c42a4a596 100644
--- 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 ĺpne spec fil %s: %s\n"
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řrring pĺ %s feilet\n"
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"
diff --git a/po/pl.po b/po/pl.po
index af52a8627..5bdf75edd 100644
--- 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żna odczytać ikony: %s"
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żna odczytać ikony: %s"
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ło się\n"
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ę PGP/GPG"
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łaściciela pliku ani list id"
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ło się\n"
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żenie: "
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"
diff --git a/po/pt.po b/po/pt.po
index b7df83fad..00866ac50 100644
--- 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ăo consegui reler o cabeçalho do assinatura.\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ăo consegui ler o conteúdo de %s: %s\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úmero de pontos de montagem: %s\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úmero de registo do pacote: %u\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"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 2c88a5413..0f825b703 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -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"
diff --git a/po/ro.po b/po/ro.po
index 59c2f2b0e..3ec303b02 100644
--- 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 ""
diff --git a/po/rpm.pot b/po/rpm.pot
index 6a03fbad0..20d423fbb 100644
--- a/po/rpm.pot
+++ b/po/rpm.pot
@@ -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 ""
diff --git a/po/ru.po b/po/ru.po
index 64364102e..aefb16636 100644
--- 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 "îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÚÁÇŇŐÚÉÔŘ ÚÁÇĎĚĎ×ĎË ĐĎÄĐÉÓÉ.\n"
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 "îĹ×ĎÚÍĎÖÎĎ ĐŇĎŢÉÔÁÔŘ ÓĎÄĹŇÖÉÍĎĹ ÉÚ %s: %s\n"
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() ÎĹ ×ĎÚ×ŇÁÔÉĚ ÚÎÁŢĹÎÉĹ ŇÁÚÍĹŇÁ fugger: %s\n"
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 ÎĹ×ĎÚÍĎÖÎĎ ŐÄÁĚÉÔŘ %s: %s\n"
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 "ĐÁËĹÔ ÎĹ ÓĎÄĹŇÖÉÔ ÓĐÉÓËĎ× ÎÉ ČĎÚŃĹ× ĆÁĘĚĎ×, ÎÉ ÉČ ID\n"
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 "ĎŰÉÂËÁ ÚÁĐŇĎÓÁ %s\n"
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 "ÎĎÍĹŇ ÚÁĐÉÓÉ ĐÁËĹÔÁ: %u\n"
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 "ĎÔÓŐÔÓÔ×ŐĹÔ ÁŇČÉÔĹËÔŐŇÁ ÄĚŃ %s × %s:%d\n"
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"
diff --git a/po/sk.po b/po/sk.po
index 03dea3d27..94da12946 100644
--- 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žné prečítať ikonu: %s"
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žné prečítať ikonu: %s"
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átil veľkosť fuggeru: %s"
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ť PGP/GPG podpis"
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ík neobsahuje ani vlastníka súboru, ani zoznamy identifikácií"
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ázka na %s zlyhala\n"
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žaduje sa záznam číslo %d\n"
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ýbajúca architektúra pre %s na %s:%d"
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"
diff --git a/po/sl.po b/po/sl.po
index cd2d2c966..d82ec7a27 100644
--- 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žno prebrati: %s"
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žno prebrati: %s"
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šno vrnila velikosti fugger: %s"
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šno: %s\n"
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šna\n"
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 "številka zapisa paketa: %d\n"
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ča arhitektura za %s v %s:%d"
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"
diff --git a/po/sr.po b/po/sr.po
index 037d40785..06927ca38 100644
--- 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šem %s"
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šem %s"
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činu: %s"
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šan broj paketa: %s\n"
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"
diff --git a/po/sv.po b/po/sv.po
index 9630a97ff..0925f24da 100644
--- 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äsa om signaturhuvud.\n"
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äsa last frĺn %s: %s\n"
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ägare eller id-listor\n"
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ĺga av %s misslyckades\n"
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örbereder..."
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ör %s vid %s:%d\n"
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"
diff --git a/po/tr.po b/po/tr.po
index a0896da26..5eca9cf06 100644
--- 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ţlýk okunamadý: %s\n"
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ý: %s\n"
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çlanan hatalý bađlantý yerleri nedeniyle baţarýsýz: %s\n"
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đ kaldýrýlamadý: %s\n"
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 üretir"
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çeriyor\n"
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ý baţarýsýzlýkla sonuçlandý\n"
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ýt numarasý: %u\n"
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ýrlanýyor..."
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çin %s:%d'de eksik mimari\n"
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"
diff --git a/po/uk.po b/po/uk.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/wa.po b/po/wa.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/zh.po b/po/zh.po
index ff81a2611..21f7f9b40 100644
--- 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 ""
diff --git a/po/zh_CN.GB2312.po b/po/zh_CN.GB2312.po
index ff81a2611..21f7f9b40 100644
--- a/po/zh_CN.GB2312.po
+++ b/po/zh_CN.GB2312.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 ""
diff --git a/python/Makefile.in b/python/Makefile.in
index 426f2ddc6..088126ea7 100644
--- a/python/Makefile.in
+++ b/python/Makefile.in
@@ -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@
diff --git a/python/header-py.c b/python/header-py.c
index 74238c7de..4ecb4adbf 100644
--- a/python/header-py.c
+++ b/python/header-py.c
@@ -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");
}
diff --git a/rpm.spec.in b/rpm.spec.in
index 0f9075d0d..48e277652 100644
--- a/rpm.spec.in
+++ b/rpm.spec.in
@@ -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.
diff --git a/rpmdb/Makefile.am b/rpmdb/Makefile.am
index 50e579178..9e585219f 100644
--- a/rpmdb/Makefile.am
+++ b/rpmdb/Makefile.am
@@ -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)
diff --git a/rpmdb/legacy.c b/rpmdb/legacy.c
index d9e84e4d3..1607b452f 100644
--- a/rpmdb/legacy.c
+++ b/rpmdb/legacy.c
@@ -3,78 +3,211 @@
*/
#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);
diff --git a/rpmdb/legacy.h b/rpmdb/legacy.h
index d0c6ac9cc..fcf4e7c85 100644
--- a/rpmdb/legacy.h
+++ b/rpmdb/legacy.h
@@ -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.
diff --git a/rpmrc.in b/rpmrc.in
index 9550ae0b8..c7256d9fd 100644
--- 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
#*/
diff --git a/tools/Makefile.am b/tools/Makefile.am
index ad9ce9f1b..e681ac020 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -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 = \